HomeSort by relevance Sort by last modified time
    Searched refs:fetch (Results 1 - 25 of 235) sorted by null

1 2 3 4 5 6 7 8 910

  /external/e2fsprogs/tests/progs/test_data/
test.icount 12 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/mesa/src/src/gallium/auxiliary/draw/
draw_pt_vsplit.c 54 /* 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)
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;
    [all...]
draw_pt_fetch.c 50 * Perform the fetch from API vertex elements & vertex buffers, to a
60 draw_pt_fetch_prepare(struct pt_fetch *fetch,
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,
155 struct draw_context *draw = fetch->draw
206 struct pt_fetch *fetch = CALLOC_STRUCT(pt_fetch); local
    [all...]
draw_vs_variant.c 42 /* 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 and emit functions
    [all...]
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pt_vsplit.c 54 /* 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)
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;
    [all...]
draw_pt_fetch.c 50 * Perform the fetch from API vertex elements & vertex buffers, to a
60 draw_pt_fetch_prepare(struct pt_fetch *fetch,
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,
155 struct draw_context *draw = fetch->draw
206 struct pt_fetch *fetch = CALLOC_STRUCT(pt_fetch); local
    [all...]
draw_vs_variant.c 42 /* 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 and emit functions
    [all...]
  /external/wpa_supplicant_8/hs20/server/www/
add-free.php 17 $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();
redirect.php 15 $row = $db->query("SELECT rowid,* FROM sessions WHERE id='$id'")->fetch();
add-mo.php 28 $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();
signup.php 18 $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();
cert-enroll.php 17 $row = $db->query("SELECT rowid,* FROM sessions WHERE id='$id'")->fetch();
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
urlfetcher_mock.py 37 def fetch(self, url): member in class:make_fetcher_cls.MockFetcher
42 f.write(self.fetch(url))
urlfetcher.py 35 """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/WebKit/Source/modules/serviceworkers/polyfills/
fetchPolyfill.js 5 // A simple, incomplete implementation of Fetch, intended to facilitate end
8 // See http://fetch.spec.whatwg.org/#fetch-method
20 // FIXME: Support init argument to fetch.
21 var fetch = function(request) { function
50 global.fetch = global.fetch || fetch;
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
ServiceWorkerGlobalScope.h 58 ScriptPromise fetch(ScriptState*, Request*);
59 ScriptPromise fetch(ScriptState*, const String&);
66 DEFINE_ATTRIBUTE_EVENT_LISTENER(fetch);
FetchManager.h 22 ScriptPromise fetch(ScriptState*, PassOwnPtr<ResourceRequest>);
ServiceWorkerGlobalScope.idl 41 [CallWith=ScriptState] Promise fetch(ScalarValueString request);
42 [CallWith=ScriptState] Promise fetch(Request request);
ServiceWorkerGlobalScope.cpp 88 ScriptPromise ServiceWorkerGlobalScope::fetch(ScriptState* scriptState, Request* request) function in class:WebCore::ServiceWorkerGlobalScope
91 return m_fetchManager->fetch(scriptState, resourceRequest.release());
94 ScriptPromise ServiceWorkerGlobalScope::fetch(ScriptState* scriptState, const String& urlstring) function in class:WebCore::ServiceWorkerGlobalScope
101 return m_fetchManager->fetch(scriptState, resourceRequest.release());
  /external/llvm/utils/git-svn/
git-svnup 9 git fetch
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
texcompress.c 476 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 = _mesa_fetch_texel_rg_rgtc2
    [all...]
  /external/mesa3d/src/mesa/main/
texcompress.c 476 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 = _mesa_fetch_texel_rg_rgtc2
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
interactive.rb 9 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/
fake_fetchers.py 40 def fetch(self, url): member in class:_FakeOmahaProxy
45 def fetch(self, url): member in class:_FakeOmahaHistory
56 def fetch(self, url): member in class:_FakeSubversionServer
79 def fetch(self, url): member in class:_FakeViewvcServer
109 def fetch(self, url): member in class:_FakeGithubStat
114 def fetch(self, url): member in class:_FakeGithubZip
122 def fetch(self, url): member in class:_FakeRietveldAPI
131 def fetch(self, url): member in class:_FakeRietveldTarball
  /external/e2fsprogs/tests/progs/
test_icount_cmds.ct 16 request do_fetch, "Fetch an icount entry",
17 fetch;

Completed in 449 milliseconds

1 2 3 4 5 6 7 8 910