Home
last modified time | relevance | path

Searched full:fetch (Results 1 – 25 of 1484) sorted by relevance

12345678910>>...60

/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/mesa3d/src/gallium/auxiliary/draw/
Ddraw_pt_vsplit.c56 /* map a fetch element to a draw element */
85 * Add a fetch element and add it to the draw elements.
88 vsplit_add_cache(struct vsplit_frontend *vsplit, unsigned fetch) in vsplit_add_cache() argument
92 hash = fetch % MAP_SIZE; in vsplit_add_cache()
96 if (vsplit->cache.fetches[hash] != fetch) { in vsplit_add_cache()
98 vsplit->cache.fetches[hash] = fetch; in vsplit_add_cache()
101 /* add fetch */ in vsplit_add_cache()
103 vsplit->fetch_elts[vsplit->cache.num_fetch_elts++] = fetch; in vsplit_add_cache()
114 vsplit_get_base_idx(unsigned start, unsigned fetch) in vsplit_get_base_idx() argument
116 return draw_overflow_uadd(start, fetch, MAX_ELT_IDX); in vsplit_get_base_idx()
[all …]
Ddraw_pt_fetch.c50 * Perform the fetch from API vertex elements & vertex buffers, to a
60 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()
138 if (!fetch->translate || in draw_pt_fetch_prepare()
139 translate_key_compare(&fetch->translate->key, &key) != 0) in draw_pt_fetch_prepare()
142 fetch->translate = translate_cache_find(fetch->cache, &key); in draw_pt_fetch_prepare()
148 draw_pt_fetch_run(struct pt_fetch *fetch, in draw_pt_fetch_run() argument
153 struct draw_context *draw = fetch->draw; in draw_pt_fetch_run()
154 struct translate *translate = fetch->translate; in draw_pt_fetch_run()
[all …]
Ddraw_vs_variant.c42 /* A first pass at incorporating vertex fetch/emit functionality into
56 struct translate *fetch; member
74 vsvg->fetch->set_buffer(vsvg->fetch, in vsvg_set_buffer()
168 vsvg->fetch->run_elts( vsvg->fetch, in vsvg_run_elts()
236 vsvg->fetch->run( vsvg->fetch, in vsvg_run_linear()
302 struct translate_key fetch, emit; in draw_vs_create_variant_generic() local
320 /* Build free-standing fetch and emit functions: in draw_vs_create_variant_generic()
322 fetch.nr_elements = key->nr_inputs; in draw_vs_create_variant_generic()
323 fetch.output_stride = vsvg->temp_vertex_stride; in draw_vs_create_variant_generic()
325 fetch.element[i].type = TRANSLATE_ELEMENT_NORMAL; in draw_vs_create_variant_generic()
[all …]
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)
199 * API vertex fetch:
203 void draw_pt_fetch_prepare( struct pt_fetch *fetch,
208 void draw_pt_fetch_run( struct pt_fetch *fetch,
213 void draw_pt_fetch_run_linear( struct pt_fetch *fetch,
[all …]
Ddraw_pt_fetch_shade_pipeline.c46 struct pt_fetch *fetch; member
110 draw_pt_fetch_prepare( fpme->fetch, in fetch_pipeline_prepare()
156 static void fetch( struct pt_fetch *fetch, in fetch() argument
161 draw_pt_fetch_run_linear( fetch, in fetch()
167 draw_pt_fetch_run( fetch, in fetch()
266 /* Fetch into our vertex buffer. in fetch_pipeline_generic()
268 fetch( fpme->fetch, fetch_info, (char *)fetched_vert_info.verts ); in fetch_pipeline_generic()
270 /* Finished with fetch: in fetch_pipeline_generic()
475 if (fpme->fetch) in fetch_pipeline_destroy()
476 draw_pt_fetch_destroy( fpme->fetch ); in fetch_pipeline_destroy()
[all …]
/external/mesa3d/src/gallium/drivers/freedreno/a2xx/
Dfd2_program.c99 * type information for vertex fetch yet.. so those need to be in compile()
172 /* update vtx fetch instructions: */ in patch_vtx_fetches()
189 instr->fetch.const_idx = 20 + (i / 3); in patch_vtx_fetches()
190 instr->fetch.const_idx_sel = i % 3; in patch_vtx_fetches()
192 instr->fetch.fmt = fd2_pipe2surface(format); in patch_vtx_fetches()
193 instr->fetch.is_normalized = desc->channel[j].normalized; in patch_vtx_fetches()
194 instr->fetch.is_signed = in patch_vtx_fetches()
196 instr->fetch.stride = vb->stride ? : 1; in patch_vtx_fetches()
197 instr->fetch.offset = elem->src_offset; in patch_vtx_fetches()
202 assert(instr->fetch.fmt != ~0); in patch_vtx_fetches()
[all …]
Dir-a2xx.h71 /* FETCH specific: */
75 /* texture fetch specific: */
77 /* vertex fetch specific: */
84 } fetch; member
162 instr->fetch.opc = VTX_FETCH; in ir2_instr_create_vtx_fetch()
163 instr->fetch.const_idx = ci; in ir2_instr_create_vtx_fetch()
164 instr->fetch.const_idx_sel = cis; in ir2_instr_create_vtx_fetch()
165 instr->fetch.fmt = fmt; in ir2_instr_create_vtx_fetch()
166 instr->fetch.is_signed = is_signed; in ir2_instr_create_vtx_fetch()
167 instr->fetch.stride = stride; in ir2_instr_create_vtx_fetch()
[all …]
Dir-a2xx.c168 /* third pass, emit ALU/FETCH: */ in ir2_shader_assemble()
274 * FETCH instructions:
281 instr_fetch_t *fetch = (instr_fetch_t *)dwords; in instr_emit_fetch() local
286 memset(fetch, 0, sizeof(*fetch)); in instr_emit_fetch()
291 fetch->opc = instr->fetch.opc; in instr_emit_fetch()
293 if (instr->fetch.opc == VTX_FETCH) { in instr_emit_fetch()
294 instr_fetch_vtx_t *vtx = &fetch->vtx; in instr_emit_fetch()
296 assert(instr->fetch.stride <= 0xff); in instr_emit_fetch()
297 assert(instr->fetch.fmt <= 0x3f); in instr_emit_fetch()
298 assert(instr->fetch.const_idx <= 0x1f); in instr_emit_fetch()
[all …]
/external/autotest/client/cros/cellular/mbim_compliance/
Dmbim_descriptor_cache.py40 also fetch the MBIM funnction descriptor, interrrupt endpoint
57 # Fetch the MBIM function descriptor
69 # Fetch the MBIM interrupt enpoint
78 # Fetch the MBIM bulk-in/out endpoints
114 # Fetch the MBIM communication interface
126 # Fetch the MBIM no_data data interface
135 # Fetch the MBIM data interface
161 # Fetch the NCM communication interface
169 # Fetch the MBIM communication interface
179 # Fetch the NCM + MBIM no_data data interface
[all …]
/external/swiftshader/third_party/LLVM/lib/Target/MBlaze/
DMBlazeSchedule3.td22 [ InstrStage<1,[IF]> // one cycle in fetch stage
36 [ InstrStage<1,[IF]> // one cycle in fetch stage
49 [ InstrStage<1,[IF]> // one cycle in fetch stage
63 [ InstrStage<1,[IF]> // one cycle in fetch stage
74 [ InstrStage<1,[IF]> // one cycle in fetch stage
83 [ InstrStage<1,[IF]> // one cycle in fetch stage
94 [ InstrStage<1,[IF]> // one cycle in fetch stage
105 [ InstrStage<1,[IF]> // one cycle in fetch stage
117 [ InstrStage<1,[IF]> // one cycle in fetch stage
130 [ InstrStage<1,[IF]> // one cycle in fetch stage
[all …]
DMBlazeSchedule5.td22 [ InstrStage<1,[IF]> // one cycle in fetch stage
37 [ InstrStage<1,[IF]> // one cycle in fetch stage
52 [ InstrStage<1,[IF]> // one cycle in fetch stage
67 [ InstrStage<1,[IF]> // one cycle in fetch stage
80 [ InstrStage<1,[IF]> // one cycle in fetch stage
91 [ InstrStage<1,[IF]> // one cycle in fetch stage
104 [ InstrStage<1,[IF]> // one cycle in fetch stage
117 [ InstrStage<1,[IF]> // one cycle in fetch stage
131 [ InstrStage<1,[IF]> // one cycle in fetch stage
146 [ InstrStage<1,[IF]> // one cycle in fetch stage
[all …]
/external/python/cpython2/Lib/idlelib/
DIdleHistory.py9 fetch - Fetch stored statement matching prefix already entered.
31 "Fetch later statement; start with ealiest if cyclic."
32 self.fetch(reverse=False)
36 "Fetch earlier statement; start with most recent."
37 self.fetch(reverse=True)
40 def fetch(self, reverse): member in History
41 '''Fetch statememt and replace current line in text widget.
/external/syslinux/gpxe/src/core/
Dsettings.c157 * Fetch value of generic setting
160 * @v setting Setting to fetch
205 .fetch = generic_settings_fetch,
528 * Fetch value of setting
531 * @v setting Setting to fetch
552 if ( ! settings->op->fetch ) in fetch_setting()
556 if ( ( ret = settings->op->fetch ( settings, setting, in fetch_setting()
571 * Fetch length of setting
574 * @v setting Setting to fetch
585 * Fetch value of string setting
[all …]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
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/mesa3d/src/mesa/swrast/
Ds_texfetch_tmp.h29 * Texel fetch functions template.
31 * This template file is used by texfetch.c to generate texel fetch functions
49 #define FETCH(x) fetch_texel_1d_##x macro
58 #define FETCH(x) fetch_texel_2d_##x macro
66 #define FETCH(x) fetch_texel_3d_##x macro
74 FETCH(x) (const struct swrast_texture_image *texImage, \
83 FETCH(x) (const struct swrast_texture_image *texImage, \
187 FETCH_RGBA(YCBCR, GLushort, 1) /* Fetch texel from 1D, 2D or 3D ycbcr texture, returning RGBA. */
188 FETCH_RGBA(YCBCR_REV, GLushort, 1) /* Fetch texel from 1D, 2D or 3D ycbcr texture, returning RGBA. …
194 #undef FETCH
/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 )
/external/python/cpython2/Lib/idlelib/idle_test/
Dtest_idlehistory.py65 '''Test History.fetch with wrapped tk.Text.
87 # Perform one fetch as invoked by Alt-N or Alt-P
89 # The last two are diagnostic of fetch internals.
91 History.fetch(reverse)
147 # Move cursor after fetch
148 self.history.fetch(reverse=True) # initialization
153 # Edit after fetch
154 self.history.fetch(reverse=True) # initialization
/external/e2fsprogs/lib/et/test_cases/
Dheimdal2.et16 ec KADM_NO_REALM, "Cannot fetch local realm"
17 ec KADM_NO_CRED, "Unable to fetch credentials"
32 ec KADM_NO_HERE, "Could not fetch local socket address"
33 ec KADM_NO_MAST, "Could not fetch master key"
46 ec KADM_NO_HOSTNAME, "Could not fetch system hostname"
/external/autotest/client/site_tests/security_OpenSSLBlacklist/
Dsecurity_OpenSSLBlacklist.py22 def fetch(self, blacklist='/dev/null'): member in security_OpenSSLBlacklist
46 # Fire up an openssl s_server and have curl fetch from it
53 self.fetch,
54 error.TestFail('Fetch without blacklist fails.'))
56 if self.fetch(b):
/external/curl/tests/data/
Dtest8416 FETCH
22 * 123 FETCH (BODY[1] {70}
36 imap://%HOSTIP:%IMAPPORT/841/ -u user:secret -X 'FETCH 123 BODY[1]'
47 A004 FETCH 123 BODY[1]
/external/libtextclassifier/util/hash/
Dfarmhash.cc356 #undef Fetch
357 #define Fetch Fetch64 macro
386 uint64_t a = Fetch(s) + k2; in HashLen0to16()
387 uint64_t b = Fetch(s + len - 8); in HashLen0to16()
412 uint64_t a = Fetch(s) * k1; in HashLen17to32()
413 uint64_t b = Fetch(s + 8); in HashLen17to32()
414 uint64_t c = Fetch(s + len - 8) * mul; in HashLen17to32()
415 uint64_t d = Fetch(s + len - 16) * k2; in HashLen17to32()
436 return WeakHashLen32WithSeeds(Fetch(s), in WeakHashLen32WithSeeds()
437 Fetch(s + 8), in WeakHashLen32WithSeeds()
[all …]
/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()

12345678910>>...60