Searched refs:fetch (Results 1 - 25 of 139) sorted by relevance

123456

/external/e2fsprogs/tests/progs/test_data/
H A Dtest.icount12 fetch 0
16 fetch 20001
21 # OK, now let's test fetch and store. We also test the boundary cases
24 fetch 1
26 fetch 1
28 fetch 1
30 fetch 1
32 fetch 1
34 fetch 1
35 fetch 2000
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
H A Durlfetcher_mock.py37 def fetch(self, url): member in class:make_fetcher_cls.MockFetcher
42 f.write(self.fetch(url))
H A Durlfetcher.py35 """Class with restricted interface to fetch URLs (makes testing easier)"""
39 def fetch(self, url): member in class:UrlFetcher
52 contents = self.fetch(url)
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
H A Ddraw_pt_vsplit.c54 /* map a fetch element to a draw element */
83 * Add a fetch element and add it to the draw elements.
86 vsplit_add_cache(struct vsplit_frontend *vsplit, unsigned fetch) argument
91 fetch = MIN2(fetch, draw->pt.max_index);
93 hash = fetch % MAP_SIZE;
95 if (vsplit->cache.fetches[hash] != fetch) {
97 vsplit->cache.fetches[hash] = fetch;
100 /* add fetch */
102 vsplit->fetch_elts[vsplit->cache.num_fetch_elts++] = fetch;
114 vsplit_add_cache_uint(struct vsplit_frontend *vsplit, unsigned fetch) argument
[all...]
H A Ddraw_pt_fetch.c50 * Perform the fetch from API vertex elements & vertex buffers, to a
60 draw_pt_fetch_prepare(struct pt_fetch *fetch, argument
65 struct draw_context *draw = fetch->draw;
72 fetch->vertex_size = vertex_size;
140 if (!fetch->translate ||
141 translate_key_compare(&fetch->translate->key, &key) != 0)
144 fetch->translate = translate_cache_find(fetch->cache, &key);
150 draw_pt_fetch_run(struct pt_fetch *fetch, argument
155 struct draw_context *draw = fetch
177 draw_pt_fetch_run_linear(struct pt_fetch *fetch, unsigned start, unsigned count, char *verts) argument
206 struct pt_fetch *fetch = CALLOC_STRUCT(pt_fetch); local
222 draw_pt_fetch_destroy(struct pt_fetch *fetch) argument
[all...]
H A Ddraw_vs_variant.c42 /* A first pass at incorporating vertex fetch/emit functionality into
56 struct translate *fetch; member in struct:draw_vs_variant_generic
74 vsvg->fetch->set_buffer(vsvg->fetch,
143 vsvg->fetch->run_elts( vsvg->fetch,
209 vsvg->fetch->run( vsvg->fetch,
273 struct translate_key fetch, emit; local
291 /* Build free-standing fetch an
[all...]
H A Ddraw_pt_fetch_shade_pipeline.c45 struct pt_fetch *fetch; member in struct:fetch_pipeline_middle_end
95 draw_pt_fetch_prepare( fpme->fetch,
131 static void fetch( struct pt_fetch *fetch, argument
136 draw_pt_fetch_run_linear( fetch,
142 draw_pt_fetch_run( fetch,
228 fetch( fpme->fetch, fetch_info, (char *)fetched_vert_info.verts );
230 /* Finished with fetch:
392 if (fpme->fetch)
[all...]
H A Ddraw_pt.h50 /* The "front end" - prepare sets of fetch, draw elements for the
53 * The fetch elements are indices to the vertices. The draw elements are
55 * linear, middle->run_linear is called; When only the fetch elements are
60 * the draw elements (as well as the fetch elements) are splitted and the
87 * - fetch, vertex shade, cliptest, prim-pipeline
88 * - fetch, emit (ie passthrough)
192 * API vertex fetch:
196 void draw_pt_fetch_prepare( struct pt_fetch *fetch,
201 void draw_pt_fetch_run( struct pt_fetch *fetch,
206 void draw_pt_fetch_run_linear( struct pt_fetch *fetch,
[all...]
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pt_vsplit.c54 /* map a fetch element to a draw element */
83 * Add a fetch element and add it to the draw elements.
86 vsplit_add_cache(struct vsplit_frontend *vsplit, unsigned fetch) argument
91 fetch = MIN2(fetch, draw->pt.max_index);
93 hash = fetch % MAP_SIZE;
95 if (vsplit->cache.fetches[hash] != fetch) {
97 vsplit->cache.fetches[hash] = fetch;
100 /* add fetch */
102 vsplit->fetch_elts[vsplit->cache.num_fetch_elts++] = fetch;
114 vsplit_add_cache_uint(struct vsplit_frontend *vsplit, unsigned fetch) argument
[all...]
H A Ddraw_pt_fetch.c50 * Perform the fetch from API vertex elements & vertex buffers, to a
60 draw_pt_fetch_prepare(struct pt_fetch *fetch, argument
65 struct draw_context *draw = fetch->draw;
72 fetch->vertex_size = vertex_size;
140 if (!fetch->translate ||
141 translate_key_compare(&fetch->translate->key, &key) != 0)
144 fetch->translate = translate_cache_find(fetch->cache, &key);
150 draw_pt_fetch_run(struct pt_fetch *fetch, argument
155 struct draw_context *draw = fetch
177 draw_pt_fetch_run_linear(struct pt_fetch *fetch, unsigned start, unsigned count, char *verts) argument
206 struct pt_fetch *fetch = CALLOC_STRUCT(pt_fetch); local
222 draw_pt_fetch_destroy(struct pt_fetch *fetch) argument
[all...]
H A Ddraw_vs_variant.c42 /* A first pass at incorporating vertex fetch/emit functionality into
56 struct translate *fetch; member in struct:draw_vs_variant_generic
74 vsvg->fetch->set_buffer(vsvg->fetch,
143 vsvg->fetch->run_elts( vsvg->fetch,
209 vsvg->fetch->run( vsvg->fetch,
273 struct translate_key fetch, emit; local
291 /* Build free-standing fetch an
[all...]
H A Ddraw_pt_fetch_shade_pipeline.c45 struct pt_fetch *fetch; member in struct:fetch_pipeline_middle_end
95 draw_pt_fetch_prepare( fpme->fetch,
131 static void fetch( struct pt_fetch *fetch, argument
136 draw_pt_fetch_run_linear( fetch,
142 draw_pt_fetch_run( fetch,
228 fetch( fpme->fetch, fetch_info, (char *)fetched_vert_info.verts );
230 /* Finished with fetch:
392 if (fpme->fetch)
[all...]
H A Ddraw_pt.h50 /* The "front end" - prepare sets of fetch, draw elements for the
53 * The fetch elements are indices to the vertices. The draw elements are
55 * linear, middle->run_linear is called; When only the fetch elements are
60 * the draw elements (as well as the fetch elements) are splitted and the
87 * - fetch, vertex shade, cliptest, prim-pipeline
88 * - fetch, emit (ie passthrough)
192 * API vertex fetch:
196 void draw_pt_fetch_prepare( struct pt_fetch *fetch,
201 void draw_pt_fetch_run( struct pt_fetch *fetch,
206 void draw_pt_fetch_run_linear( struct pt_fetch *fetch,
[all...]
/external/llvm/utils/git-svn/
H A Dgit-svnup9 git fetch
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dtexcompress.c476 void (*fetch)(const struct swrast_texture_image *texImage,
497 fetch = _mesa_fetch_texel_rgb_dxt1;
500 fetch = _mesa_fetch_texel_rgba_dxt1;
503 fetch = _mesa_fetch_texel_rgba_dxt3;
506 fetch = _mesa_fetch_texel_rgba_dxt5;
511 fetch = _mesa_fetch_texel_2d_f_rgb_fxt1;
514 fetch = _mesa_fetch_texel_2d_f_rgba_fxt1;
519 fetch = _mesa_fetch_texel_red_rgtc1;
522 fetch = _mesa_fetch_texel_signed_red_rgtc1;
525 fetch
[all...]
/external/mesa3d/src/mesa/main/
H A Dtexcompress.c476 void (*fetch)(const struct swrast_texture_image *texImage,
497 fetch = _mesa_fetch_texel_rgb_dxt1;
500 fetch = _mesa_fetch_texel_rgba_dxt1;
503 fetch = _mesa_fetch_texel_rgba_dxt3;
506 fetch = _mesa_fetch_texel_rgba_dxt5;
511 fetch = _mesa_fetch_texel_2d_f_rgb_fxt1;
514 fetch = _mesa_fetch_texel_2d_f_rgba_fxt1;
519 fetch = _mesa_fetch_texel_red_rgtc1;
522 fetch = _mesa_fetch_texel_signed_red_rgtc1;
525 fetch
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
H A Dinteractive.rb9 uses Readline (if available) or standard IO#gets to fetch data on demand.
27 @position = options.fetch :position, 0
28 @line = options.fetch :line, 1
29 @column = options.fetch :column, 0
63 @position = options.fetch :position, 0
64 @line = options.fetch :line, 1
65 @column = options.fetch :column, 0
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dfake_fetchers.py39 def fetch(self, url): member in class:_FakeOmahaProxy
44 def fetch(self, url): member in class:_FakeOmahaHistory
55 def fetch(self, url): member in class:_FakeSubversionServer
78 def fetch(self, url): member in class:_FakeViewvcServer
108 def fetch(self, url): member in class:_FakeGithubStat
113 def fetch(self, url): member in class:_FakeGithubZip
121 def fetch(self, url): member in class:_FakeRietveldAPI
130 def fetch(self, url): member in class:_FakeRietveldTarball
/external/e2fsprogs/tests/progs/
H A Dtest_icount_cmds.ct17 fetch;
/external/ppp/pppd/plugins/pppoatm/
H A Dtext2qos.c19 #define fetch __atmlib_fetch macro
89 switch (fetch(text,"max_pcr=","pcr=","min_pcr=","max_sdu=","sdu=",
135 item = fetch(&text,"!none","ubr","cbr","vbr","abr","aal0","aal5",NULL);
160 switch (fetch(&text,"tx","rx",NULL)) {
162 if (!fetch(&text,":none",NULL)) {
176 if (fetch(&text,"rx",NULL)) return -1;
177 if (!fetch(&text,":none",NULL) && qos) qos->rxtp.traffic_class = ATM_NONE;
/external/smack/src/org/jivesoftware/smackx/packet/
H A DOfflineMessageRequest.java42 private boolean fetch = false; field in class:OfflineMessageRequest
92 return fetch;
98 * @param fetch true if all the offline messages of the user should be retrieved.
100 public void setFetch(boolean fetch) { argument
101 this.fetch = fetch;
116 if (fetch) {
117 buf.append("<fetch/>");
208 else if (parser.getName().equals("fetch")) {
/external/valgrind/main/coregrind/m_gdbserver/
H A Dregcache.c46 int fetch)
55 /* FIXME - fetch registers for INF */
56 if (fetch && regcache->registers_valid == 0) {
203 unsigned char *register_data (int n, int fetch) argument
206 = get_regcache (current_inferior, fetch)->registers;
211 unsigned char *register_data_for_supply (int n, int fetch, Bool *mod) argument
214 = get_regcache (current_inferior, fetch);
45 get_regcache(struct thread_info *inf, int fetch) argument
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
H A DServiceWorkerGlobalScope.h55 DEFINE_ATTRIBUTE_EVENT_LISTENER(fetch);
/external/oprofile/daemon/
H A Dopd_ibs.h32 struct ibs_fetch_sample * fetch; member in struct:ibs_sample
37 * This struct represents the hardware-level IBS fetch information.
85 * Handle an IBS fetch sample escape code sequence. An IBS fetch sample
90 * entries are needed in order to process a complete IBS fetch sample.
98 * IBS fetch IBS op
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
H A Dparameter.rb40 param.splat = options.fetch( :splat, false )
41 param.block = options.fetch( :block, false )

Completed in 573 milliseconds

123456