Home
last modified time | relevance | path

Searched refs:fetch (Results 1 – 25 of 268) sorted by relevance

1234567891011

/external/e2fsprogs/tests/progs/test_data/
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 20000
[all …]
Dexpect.icount5 test_icount: fetch 0
6 fetch: Invalid argument passed to ext2 library while calling ext2fs_icount_fetch
13 test_icount: fetch 20001
14 fetch: Invalid argument passed to ext2 library while calling ext2fs_icount_fetch
21 test_icount: fetch 1
24 test_icount: fetch 1
27 test_icount: fetch 1
30 test_icount: fetch 1
33 test_icount: fetch 1
36 test_icount: fetch 1
[all …]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
Ddraw_pt_fetch.c60 draw_pt_fetch_prepare(struct pt_fetch *fetch, in draw_pt_fetch_prepare() argument
65 struct draw_context *draw = fetch->draw; in draw_pt_fetch_prepare()
72 fetch->vertex_size = vertex_size; in draw_pt_fetch_prepare()
140 if (!fetch->translate || in draw_pt_fetch_prepare()
141 translate_key_compare(&fetch->translate->key, &key) != 0) in draw_pt_fetch_prepare()
144 fetch->translate = translate_cache_find(fetch->cache, &key); in draw_pt_fetch_prepare()
150 draw_pt_fetch_run(struct pt_fetch *fetch, in draw_pt_fetch_run() argument
155 struct draw_context *draw = fetch->draw; in draw_pt_fetch_run()
156 struct translate *translate = fetch->translate; in draw_pt_fetch_run()
177 draw_pt_fetch_run_linear(struct pt_fetch *fetch, in draw_pt_fetch_run_linear() argument
[all …]
Ddraw_pt_vsplit.c86 vsplit_add_cache(struct vsplit_frontend *vsplit, unsigned fetch) in vsplit_add_cache() argument
91 fetch = MIN2(fetch, draw->pt.max_index); in vsplit_add_cache()
93 hash = fetch % MAP_SIZE; in vsplit_add_cache()
95 if (vsplit->cache.fetches[hash] != fetch) { in vsplit_add_cache()
97 vsplit->cache.fetches[hash] = fetch; in vsplit_add_cache()
102 vsplit->fetch_elts[vsplit->cache.num_fetch_elts++] = fetch; in vsplit_add_cache()
114 vsplit_add_cache_uint(struct vsplit_frontend *vsplit, unsigned fetch) in vsplit_add_cache_uint() argument
117 if (fetch == 0xffffffff && !vsplit->cache.has_max_fetch) { in vsplit_add_cache_uint()
118 unsigned hash = fetch % MAP_SIZE; in vsplit_add_cache_uint()
119 vsplit->cache.fetches[hash] = fetch - 1; /* force update */ in vsplit_add_cache_uint()
[all …]
Ddraw_vs_variant.c56 struct translate *fetch; member
74 vsvg->fetch->set_buffer(vsvg->fetch, in vsvg_set_buffer()
143 vsvg->fetch->run_elts( vsvg->fetch, in vsvg_run_elts()
209 vsvg->fetch->run( vsvg->fetch, in vsvg_run_linear()
273 struct translate_key fetch, emit; in draw_vs_create_variant_generic() local
293 fetch.nr_elements = key->nr_inputs; in draw_vs_create_variant_generic()
294 fetch.output_stride = vsvg->temp_vertex_stride; in draw_vs_create_variant_generic()
296 fetch.element[i].type = TRANSLATE_ELEMENT_NORMAL; in draw_vs_create_variant_generic()
297 fetch.element[i].input_format = key->element[i].in.format; in draw_vs_create_variant_generic()
298 fetch.element[i].input_buffer = key->element[i].in.buffer; in draw_vs_create_variant_generic()
[all …]
Ddraw_pt_fetch_shade_pipeline.c45 struct pt_fetch *fetch; member
95 draw_pt_fetch_prepare( fpme->fetch, in fetch_pipeline_prepare()
131 static void fetch( struct pt_fetch *fetch, in fetch() function
136 draw_pt_fetch_run_linear( fetch, in fetch()
142 draw_pt_fetch_run( fetch, in fetch()
228 fetch( fpme->fetch, fetch_info, (char *)fetched_vert_info.verts ); in fetch_pipeline_generic()
392 if (fpme->fetch) in fetch_pipeline_destroy()
393 draw_pt_fetch_destroy( fpme->fetch ); in fetch_pipeline_destroy()
423 fpme->fetch = draw_pt_fetch_create( draw ); in draw_pt_fetch_pipeline_or_emit()
424 if (!fpme->fetch) in draw_pt_fetch_pipeline_or_emit()
Ddraw_pt.h196 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,
211 void draw_pt_fetch_destroy( struct pt_fetch *fetch );
/external/mesa3d/src/gallium/auxiliary/draw/
Ddraw_pt_fetch.c60 draw_pt_fetch_prepare(struct pt_fetch *fetch, in draw_pt_fetch_prepare() argument
65 struct draw_context *draw = fetch->draw; in draw_pt_fetch_prepare()
72 fetch->vertex_size = vertex_size; in draw_pt_fetch_prepare()
140 if (!fetch->translate || in draw_pt_fetch_prepare()
141 translate_key_compare(&fetch->translate->key, &key) != 0) in draw_pt_fetch_prepare()
144 fetch->translate = translate_cache_find(fetch->cache, &key); in draw_pt_fetch_prepare()
150 draw_pt_fetch_run(struct pt_fetch *fetch, in draw_pt_fetch_run() argument
155 struct draw_context *draw = fetch->draw; in draw_pt_fetch_run()
156 struct translate *translate = fetch->translate; in draw_pt_fetch_run()
177 draw_pt_fetch_run_linear(struct pt_fetch *fetch, in draw_pt_fetch_run_linear() argument
[all …]
Ddraw_pt_vsplit.c86 vsplit_add_cache(struct vsplit_frontend *vsplit, unsigned fetch) in vsplit_add_cache() argument
91 fetch = MIN2(fetch, draw->pt.max_index); in vsplit_add_cache()
93 hash = fetch % MAP_SIZE; in vsplit_add_cache()
95 if (vsplit->cache.fetches[hash] != fetch) { in vsplit_add_cache()
97 vsplit->cache.fetches[hash] = fetch; in vsplit_add_cache()
102 vsplit->fetch_elts[vsplit->cache.num_fetch_elts++] = fetch; in vsplit_add_cache()
114 vsplit_add_cache_uint(struct vsplit_frontend *vsplit, unsigned fetch) in vsplit_add_cache_uint() argument
117 if (fetch == 0xffffffff && !vsplit->cache.has_max_fetch) { in vsplit_add_cache_uint()
118 unsigned hash = fetch % MAP_SIZE; in vsplit_add_cache_uint()
119 vsplit->cache.fetches[hash] = fetch - 1; /* force update */ in vsplit_add_cache_uint()
[all …]
Ddraw_vs_variant.c56 struct translate *fetch; member
74 vsvg->fetch->set_buffer(vsvg->fetch, in vsvg_set_buffer()
143 vsvg->fetch->run_elts( vsvg->fetch, in vsvg_run_elts()
209 vsvg->fetch->run( vsvg->fetch, in vsvg_run_linear()
273 struct translate_key fetch, emit; in draw_vs_create_variant_generic() local
293 fetch.nr_elements = key->nr_inputs; in draw_vs_create_variant_generic()
294 fetch.output_stride = vsvg->temp_vertex_stride; in draw_vs_create_variant_generic()
296 fetch.element[i].type = TRANSLATE_ELEMENT_NORMAL; in draw_vs_create_variant_generic()
297 fetch.element[i].input_format = key->element[i].in.format; in draw_vs_create_variant_generic()
298 fetch.element[i].input_buffer = key->element[i].in.buffer; in draw_vs_create_variant_generic()
[all …]
Ddraw_pt_fetch_shade_pipeline.c45 struct pt_fetch *fetch; member
95 draw_pt_fetch_prepare( fpme->fetch, in fetch_pipeline_prepare()
131 static void fetch( struct pt_fetch *fetch, in fetch() argument
136 draw_pt_fetch_run_linear( fetch, in fetch()
142 draw_pt_fetch_run( fetch, in fetch()
228 fetch( fpme->fetch, fetch_info, (char *)fetched_vert_info.verts ); in fetch_pipeline_generic()
392 if (fpme->fetch) in fetch_pipeline_destroy()
393 draw_pt_fetch_destroy( fpme->fetch ); in fetch_pipeline_destroy()
423 fpme->fetch = draw_pt_fetch_create( draw ); in draw_pt_fetch_pipeline_or_emit()
424 if (!fpme->fetch) in draw_pt_fetch_pipeline_or_emit()
Ddraw_pt.h196 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,
211 void draw_pt_fetch_destroy( struct pt_fetch *fetch );
/external/mesa3d/src/mesa/main/
Dtexcompress.c476 void (*fetch)(const struct swrast_texture_image *texImage, in _mesa_decompress_image() local
497 fetch = _mesa_fetch_texel_rgb_dxt1; in _mesa_decompress_image()
500 fetch = _mesa_fetch_texel_rgba_dxt1; in _mesa_decompress_image()
503 fetch = _mesa_fetch_texel_rgba_dxt3; in _mesa_decompress_image()
506 fetch = _mesa_fetch_texel_rgba_dxt5; in _mesa_decompress_image()
511 fetch = _mesa_fetch_texel_2d_f_rgb_fxt1; in _mesa_decompress_image()
514 fetch = _mesa_fetch_texel_2d_f_rgba_fxt1; in _mesa_decompress_image()
519 fetch = _mesa_fetch_texel_red_rgtc1; in _mesa_decompress_image()
522 fetch = _mesa_fetch_texel_signed_red_rgtc1; in _mesa_decompress_image()
525 fetch = _mesa_fetch_texel_rg_rgtc2; in _mesa_decompress_image()
[all …]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
Dtexcompress.c476 void (*fetch)(const struct swrast_texture_image *texImage, in _mesa_decompress_image() local
497 fetch = _mesa_fetch_texel_rgb_dxt1; in _mesa_decompress_image()
500 fetch = _mesa_fetch_texel_rgba_dxt1; in _mesa_decompress_image()
503 fetch = _mesa_fetch_texel_rgba_dxt3; in _mesa_decompress_image()
506 fetch = _mesa_fetch_texel_rgba_dxt5; in _mesa_decompress_image()
511 fetch = _mesa_fetch_texel_2d_f_rgb_fxt1; in _mesa_decompress_image()
514 fetch = _mesa_fetch_texel_2d_f_rgba_fxt1; in _mesa_decompress_image()
519 fetch = _mesa_fetch_texel_red_rgtc1; in _mesa_decompress_image()
522 fetch = _mesa_fetch_texel_signed_red_rgtc1; in _mesa_decompress_image()
525 fetch = _mesa_fetch_texel_rg_rgtc2; in _mesa_decompress_image()
[all …]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
Dmain.rb69 @no_output = options.fetch( :no_output, false )
70 @profile = options.fetch( :profile, false )
71 @debug_socket = options.fetch( :debug_socket, false )
72 @ruby_prof = options.fetch( :ruby_prof, false )
73 @encoding = options.fetch( :encoding, nil )
74 @interactive = options.fetch( :interactive, false )
75 @input = options.fetch( :input, $stdin )
125 @input = options.fetch( :input, $stdin )
126 @output = options.fetch( :output, $stdout )
127 @error = options.fetch( :error, $stderr )
[all …]
Dtemplate.rb39 templates = @templates || options.fetch( :templates ) do
53 @templates.fetch( name, values )
95 namespace = options.fetch( :namespace, ::Object )
108 namespace = options.fetch( :namespace, ::Object )
131 def fetch( name, values = {} ) method in ANTLR3.Template.Group
132 self::TEMPLATES.fetch( name.to_s ).new( values )
156 context = self::TEMPLATES.fetch( old_name.to_s ) do
317 param.splat = options.fetch( :splat, false )
318 param.block = options.fetch( :block, false )
Dstreams.rb400 @position = options.fetch :position, 0
401 @line = options.fetch :line, 1
402 @column = options.fetch :column, 0
435 @position = options.fetch :position, 0
436 @line = options.fetch :line, 1
437 @column = options.fetch :column, 0
787 @channel = options.fetch( :channel ) { stream.channel or DEFAULT_CHANNEL }
788 @source_name = options.fetch( :source_name ) { stream.source_name }
792 @channel = options.fetch( :channel, DEFAULT_CHANNEL )
793 @source_name = options.fetch( :source_name ) { @token_source.source_name rescue nil }
[all …]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
Dinteractive.rb27 @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/
Dfake_fetchers.py39 def fetch(self, url): member in _FakeOmahaProxy
44 def fetch(self, url): member in _FakeOmahaHistory
55 def fetch(self, url): member in _FakeSubversionServer
78 def fetch(self, url): member in _FakeViewvcServer
108 def fetch(self, url): member in _FakeGithubStat
113 def fetch(self, url): member in _FakeGithubZip
121 def fetch(self, url): member in _FakeRietveldAPI
130 def fetch(self, url): member in _FakeRietveldTarball
/external/ppp/pppd/plugins/pppoatm/
Dtext2qos.c19 #define fetch __atmlib_fetch macro
89 switch (fetch(text,"max_pcr=","pcr=","min_pcr=","max_sdu=","sdu=", in params()
135 item = fetch(&text,"!none","ubr","cbr","vbr","abr","aal0","aal5",NULL); in text2qos()
160 switch (fetch(&text,"tx","rx",NULL)) { in text2qos()
162 if (!fetch(&text,":none",NULL)) { in text2qos()
176 if (fetch(&text,"rx",NULL)) return -1; in text2qos()
177 if (!fetch(&text,":none",NULL) && qos) qos->rxtp.traffic_class = ATM_NONE; in text2qos()
/external/chromium_org/tools/
Dbisect-builds.py517 fetch = DownloadJob(context, 'initial_fetch', rev, zipfile)
518 fetch.Start()
519 fetch.WaitFor()
522 while fetch and fetch.zipfile and maxrev - minrev > 1:
558 fetch.zipfile,
573 fetch.Stop()
577 fetch = None
581 fetch = up_fetch
584 fetch.Stop()
588 fetch = None
[all …]
/external/smack/src/org/jivesoftware/smackx/packet/
DOfflineMessageRequest.java42 private boolean fetch = false; field in OfflineMessageRequest
92 return fetch; in isFetch()
100 public void setFetch(boolean fetch) { in setFetch() argument
101 this.fetch = fetch; in setFetch()
116 if (fetch) { in getChildElementXML()
/external/valgrind/main/coregrind/m_gdbserver/
Dregcache.c46 int fetch) in get_regcache() argument
56 if (fetch && regcache->registers_valid == 0) { in get_regcache()
203 unsigned char *register_data (int n, int fetch) in register_data() argument
206 = get_regcache (current_inferior, fetch)->registers; in register_data()
211 unsigned char *register_data_for_supply (int n, int fetch, Bool *mod) in register_data_for_supply() argument
214 = get_regcache (current_inferior, fetch); in register_data_for_supply()
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
Dlp_test_format.c134 LLVMValueRef fetch = NULL; in test_format_float() local
143 fetch = add_fetch_rgba_test(gallivm, verbose, desc, lp_float32_vec4_type()); in test_format_float()
147 fetch_ptr = (fetch_ptr_t) gallivm_jit_function(gallivm, fetch); in test_format_float()
202 gallivm_free_function(gallivm, fetch, fetch_ptr); in test_format_float()
219 LLVMValueRef fetch = NULL; in test_format_unorm8() local
228 fetch = add_fetch_rgba_test(gallivm, verbose, desc, lp_unorm8_vec4_type()); in test_format_unorm8()
232 fetch_ptr = (fetch_ptr_t) gallivm_jit_function(gallivm, fetch); in test_format_unorm8()
287 gallivm_free_function(gallivm, fetch, fetch_ptr); in test_format_unorm8()
/external/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_test_format.c134 LLVMValueRef fetch = NULL; in test_format_float() local
143 fetch = add_fetch_rgba_test(gallivm, verbose, desc, lp_float32_vec4_type()); in test_format_float()
147 fetch_ptr = (fetch_ptr_t) gallivm_jit_function(gallivm, fetch); in test_format_float()
202 gallivm_free_function(gallivm, fetch, fetch_ptr); in test_format_float()
219 LLVMValueRef fetch = NULL; in test_format_unorm8() local
228 fetch = add_fetch_rgba_test(gallivm, verbose, desc, lp_unorm8_vec4_type()); in test_format_unorm8()
232 fetch_ptr = (fetch_ptr_t) gallivm_jit_function(gallivm, fetch); in test_format_unorm8()
287 gallivm_free_function(gallivm, fetch, fetch_ptr); in test_format_unorm8()

1234567891011