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

12345

/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/wpa_supplicant_8/hs20/server/www/
H A Dadd-free.php17 $row = $db->query("SELECT rowid,* FROM sessions WHERE id='$id'")->fetch();
26 $row = $db->query("SELECT value FROM osu_config WHERE realm='$realm' AND field='free_account'")->fetch();
33 $row = $db->query("SELECT password FROM users WHERE identity='$user' AND realm='$realm'")->fetch();
H A Dadd-mo.php28 $row = $db->query("SELECT rowid,* FROM sessions WHERE id='$id'")->fetch();
34 $userrow = $db->query("SELECT identity FROM users WHERE identity='$user' AND realm='$realm'")->fetch();
H A Dredirect.php15 $row = $db->query("SELECT rowid,* FROM sessions WHERE id='$id'")->fetch();
H A Dsignup.php18 $row = $db->query("SELECT realm FROM sessions WHERE id='$id'")->fetch();
26 $row = $db->query("SELECT value FROM osu_config WHERE realm='$realm' AND field='free_account'")->fetch();
H A Dcert-enroll.php17 $row = $db->query("SELECT rowid,* FROM sessions WHERE id='$id'")->fetch();
/external/mesa3d/src/gallium/auxiliary/draw/
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;
138 if (!fetch->translate ||
139 translate_key_compare(&fetch->translate->key, &key) != 0)
142 fetch->translate = translate_cache_find(fetch->cache, &key);
148 draw_pt_fetch_run(struct pt_fetch *fetch, argument
153 struct draw_context *draw = fetch
176 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_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) argument
92 hash = fetch % MAP_SIZE;
96 if (vsplit->cache.fetches[hash] != fetch) {
98 vsplit->cache.fetches[hash] = fetch;
101 /* add fetch */
103 vsplit->fetch_elts[vsplit->cache.num_fetch_elts++] = fetch;
114 vsplit_get_base_idx(unsigned start, unsigned fetch) argument
116 return draw_overflow_uadd(start, fetch, MAX_ELT_ID
129 vsplit_add_cache_ubyte(struct vsplit_frontend *vsplit, const ubyte *elts, unsigned start, unsigned fetch, int elt_bias) argument
144 vsplit_add_cache_ushort(struct vsplit_frontend *vsplit, const ushort *elts, unsigned start, unsigned fetch, int elt_bias) argument
164 vsplit_add_cache_uint(struct vsplit_frontend *vsplit, const uint *elts, unsigned start, unsigned fetch, int elt_bias) 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,
168 vsvg->fetch->run_elts( vsvg->fetch,
236 vsvg->fetch->run( vsvg->fetch,
302 struct translate_key fetch, emit; local
320 /* Build free-standing fetch an
[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)
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...]
/external/mesa3d/src/gallium/drivers/freedreno/a2xx/
H A Dir-a2xx.h75 /* texture fetch specific: */
77 /* vertex fetch specific: */
84 } fetch; member in union:ir2_instruction::__anon14914
162 instr->fetch.opc = VTX_FETCH;
163 instr->fetch.const_idx = ci;
164 instr->fetch.const_idx_sel = cis;
165 instr->fetch.fmt = fmt;
166 instr->fetch.is_signed = is_signed;
167 instr->fetch.stride = stride;
174 instr->fetch
[all...]
H A Dfd2_program.c99 * type information for vertex fetch yet.. so those need to be
172 /* update vtx fetch instructions: */
189 instr->fetch.const_idx = 20 + (i / 3);
190 instr->fetch.const_idx_sel = i % 3;
192 instr->fetch.fmt = fd2_pipe2surface(format);
193 instr->fetch.is_normalized = desc->channel[j].normalized;
194 instr->fetch.is_signed =
196 instr->fetch.stride = vb->stride ? : 1;
197 instr->fetch.offset = elem->src_offset;
202 assert(instr->fetch
[all...]
H A Dir-a2xx.c281 instr_fetch_t *fetch = (instr_fetch_t *)dwords; local
286 memset(fetch, 0, sizeof(*fetch));
291 fetch->opc = instr->fetch.opc;
293 if (instr->fetch.opc == VTX_FETCH) {
294 instr_fetch_vtx_t *vtx = &fetch->vtx;
296 assert(instr->fetch.stride <= 0xff);
297 assert(instr->fetch.fmt <= 0x3f);
298 assert(instr->fetch
[all...]
/external/llvm/utils/git-svn/
H A Dgit-svnup9 git fetch
/external/swiftshader/third_party/subzero/crosstest/
H A Dtest_sync_atomic.h19 type test_alloca_##inst(bool fetch, volatile type *ptr, type a); \
20 type test_const_##inst(bool fetch, volatile type *ptr, type ignored);
H A Dtest_sync_atomic.cpp30 type test_alloca_##inst(bool fetch, volatile type *ptr, type a) { \
34 if (fetch) { \
46 type test_const_##inst(bool fetch, volatile type *ptr, type ign) { \
47 if (fetch) { \
/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/e2fsprogs/tests/progs/
H A Dtest_icount_cmds.ct17 fetch;
/external/autotest/client/site_tests/security_OpenSSLBlacklist/
H A Dsecurity_OpenSSLBlacklist.py22 def fetch(self, blacklist='/dev/null'): member in class:security_OpenSSLBlacklist
46 # Fire up an openssl s_server and have curl fetch from it
53 self.fetch,
56 if self.fetch(b):
/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/valgrind/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/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 )
/external/skia/bin/
H A Dfetch-clang-format17 def fetch(target): function
44 fetch('clang-format')
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A 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 class:ANTLR3.Template
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 )
H A 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(
[all...]

Completed in 746 milliseconds

12345