Home
last modified time | relevance | path

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

1234567

/third_party/mesa3d/src/gallium/drivers/r600/sfn/tests/
H A Dsfn_instr_test.cpp604 FetchInstr fetch(vc_fetch, in TEST_F()
618 EXPECT_EQ(fetch.opcode(), vc_fetch); in TEST_F()
619 EXPECT_EQ(fetch.dst(), RegisterVec4(200)); in TEST_F()
620 EXPECT_EQ(fetch.dest_swizzle(0), 0); in TEST_F()
621 EXPECT_EQ(fetch.dest_swizzle(1), 2); in TEST_F()
622 EXPECT_EQ(fetch.dest_swizzle(2), 1); in TEST_F()
623 EXPECT_EQ(fetch.dest_swizzle(3), 3); in TEST_F()
625 EXPECT_EQ(fetch.src(), Register(201, 2, pin_none)); in TEST_F()
626 EXPECT_EQ(fetch.src_offset(), 0); in TEST_F()
628 EXPECT_EQ(fetch in TEST_F()
[all...]
/third_party/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pt_fetch.c50 * Perform the fetch from API vertex elements & vertex buffers, to a
55 draw_pt_fetch_prepare(struct pt_fetch *fetch, in draw_pt_fetch_prepare() argument
60 struct draw_context *draw = fetch->draw; in draw_pt_fetch_prepare()
67 fetch->vertex_size = vertex_size; in draw_pt_fetch_prepare()
133 if (!fetch->translate || in draw_pt_fetch_prepare()
134 translate_key_compare(&fetch->translate->key, &key) != 0) in draw_pt_fetch_prepare()
137 fetch->translate = translate_cache_find(fetch->cache, &key); in draw_pt_fetch_prepare()
143 draw_pt_fetch_run(struct pt_fetch *fetch, in draw_pt_fetch_run() argument
148 struct draw_context *draw = fetch in draw_pt_fetch_run()
171 draw_pt_fetch_run_linear(struct pt_fetch *fetch, unsigned start, unsigned count, char *verts) draw_pt_fetch_run_linear() argument
201 struct pt_fetch *fetch = CALLOC_STRUCT(pt_fetch); draw_pt_fetch_create() local
217 draw_pt_fetch_destroy(struct pt_fetch *fetch) draw_pt_fetch_destroy() argument
[all...]
H A Ddraw_pt_vsplit.c56 /* map a fetch element to a draw element */
87 * Add a fetch element and add it to the draw elements.
90 vsplit_add_cache(struct vsplit_frontend *vsplit, unsigned fetch) in vsplit_add_cache() argument
94 hash = fetch % MAP_SIZE; in vsplit_add_cache()
98 if (vsplit->cache.fetches[hash] != fetch) { in vsplit_add_cache()
100 vsplit->cache.fetches[hash] = fetch; in vsplit_add_cache()
103 /* add fetch */ in vsplit_add_cache()
105 vsplit->fetch_elts[vsplit->cache.num_fetch_elts++] = fetch; in vsplit_add_cache()
117 vsplit_get_base_idx(unsigned start, unsigned fetch) in vsplit_get_base_idx() argument
119 return draw_overflow_uadd(start, fetch, MAX_ELT_ID in vsplit_get_base_idx()
124 vsplit_add_cache_ubyte(struct vsplit_frontend *vsplit, const ubyte *elts, unsigned start, unsigned fetch, int elt_bias) vsplit_add_cache_ubyte() argument
142 vsplit_add_cache_ushort(struct vsplit_frontend *vsplit, const ushort *elts, unsigned start, unsigned fetch, int elt_bias) vsplit_add_cache_ushort() argument
164 vsplit_add_cache_uint(struct vsplit_frontend *vsplit, const uint *elts, unsigned start, unsigned fetch, int elt_bias) vsplit_add_cache_uint() argument
[all...]
H A 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()
169 vsvg->fetch->run_elts( vsvg->fetch, in vsvg_run_elts()
238 vsvg->fetch->run( vsvg->fetch, in vsvg_run_linear()
304 struct translate_key fetch, emit; in draw_vs_create_variant_generic() local
322 /* Build free-standing fetch an in draw_vs_create_variant_generic()
[all...]
H A Ddraw_pt_fetch_shade_pipeline.c46 struct pt_fetch *fetch; member
109 draw_pt_fetch_prepare(fpme->fetch, in fetch_pipeline_prepare()
154 fetch(struct pt_fetch *fetch, in fetch() argument
159 draw_pt_fetch_run_linear(fetch, fetch_info->start, in fetch()
163 draw_pt_fetch_run(fetch, fetch_info->elts, fetch_info->count, output); in fetch()
263 fetch(fpme->fetch, fetch_info, (char *)fetched_vert_info.verts); in fetch_pipeline_generic()
269 * Need fetch info to get vertex id correct. in fetch_pipeline_generic()
283 /* Finished with fetch in fetch_pipeline_generic()
[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)
206 * API vertex fetch:
212 draw_pt_fetch_prepare(struct pt_fetch *fetch,
218 draw_pt_fetch_run(struct pt_fetch *fetch,
224 draw_pt_fetch_run_linear(struct pt_fetch *fetch,
[all...]
/third_party/libinput/tools/
H A Dlibinput-replay.py58 def fetch(yaml, key): function
72 yaml_udev_section = fetch(yaml_data, "udev")
73 yaml_udev_props = fetch(yaml_udev_section, "properties")
113 evdev = fetch(device, "evdev")
116 d.name = fetch(evdev, "name")
118 ids = fetch(evdev, "id")
123 codes = fetch(evdev, "codes")
128 values = fetch(evdev, "absinfo")[code]
144 properties = fetch(evdev, "properties")
193 events = fetch(devic
[all...]
/third_party/typescript/tests/baselines/reference/convertToAsyncFunction/
H A DconvertToAsyncFunction_Conditionals.js4 return fetch("https://typescriptlang.org").then(res => {
6 return fetch("https://microsoft.com");
13 return fetch("https://github.com");
22 const res = await fetch("https://typescriptlang.org");
24 return fetch("https://microsoft.com");
31 return fetch("https://github.com");
H A DconvertToAsyncFunction_PromiseAllAndThen1.js5 return Promise.all([fetch("https://typescriptlang.org"), fetch("https://microsoft.com"), Promise.resolve().then(function () {
6 return fetch("https://github.com");
15 return await Promise.all([fetch("https://typescriptlang.org"), fetch("https://microsoft.com"), Promise.resolve().then(function() {
16 return fetch("https://github.com");
H A DconvertToAsyncFunction_PromiseAllAndThen2.js5 return Promise.all([fetch("https://typescriptlang.org"), fetch("https://microsoft.com"), Promise.resolve().then(function () {
6 return fetch("https://github.com");
15 const res = await Promise.all([fetch("https://typescriptlang.org"), fetch("https://microsoft.com"), Promise.resolve().then(function() {
16 return fetch("https://github.com");
H A DconvertToAsyncFunction_PromiseAllAndThen3.js5 Promise.all([fetch("https://typescriptlang.org"), fetch("https://microsoft.com"), Promise.resolve().then(function () {
6 return fetch("https://github.com");
14 return await Promise.all([fetch("https://typescriptlang.org"), fetch("https://microsoft.com"), Promise.resolve().then(function() {
15 return fetch("https://github.com");
H A DconvertToAsyncFunction_PromiseAllAndThen4.js5 Promise.all([fetch("https://typescriptlang.org"), fetch("https://microsoft.com"), Promise.resolve().then(function () {
6 return fetch("https://github.com");
14 const res = await Promise.all([fetch("https://typescriptlang.org"), fetch("https://microsoft.com"), Promise.resolve().then(function() {
15 return fetch("https://github.com");
H A DconvertToAsyncFunction_OutermostOnlySuccess.js4 return fetch('a').then(() => {
5 return fetch('b').then(() => 'c');
12 await fetch('a');
13 await fetch('b');
H A DconvertToAsyncFunction_Conditional2.js6 return fetch("https://typescriptlang.org").then(res => console.log(res));
9 return fetch("https://typescriptlang.org").then(res_func);
22 const res_1 = await fetch("https://typescriptlang.org");
26 const result = await fetch("https://typescriptlang.org");
/third_party/mesa3d/src/gallium/drivers/freedreno/a2xx/
H A Dir2_assemble.c116 /* fetch instructions can swizzle dest, but src swizzle needs conversion */
179 bc->fetch.opc = instr->fetch.opc; in fill_instr()
180 bc->fetch.pred_select = !!instr->pred; in fill_instr()
181 bc->fetch.pred_condition = instr->pred & 1; in fill_instr()
185 if (instr->fetch.opc == VTX_FETCH) { in fill_instr()
186 instr_fetch_vtx_t *vtx = &bc->fetch.vtx; in fill_instr()
188 assert(instr->fetch.vtx.const_idx <= 0x1f); in fill_instr()
189 assert(instr->fetch.vtx.const_idx_sel <= 0x3); in fill_instr()
197 vtx->const_index = instr->fetch in fill_instr()
[all...]
/third_party/node/deps/npm/node_modules/npm-profile/lib/
H A Dindex.js3 const fetch = require('npm-registry-fetch')
4 const { HttpErrorBase } = require('npm-registry-fetch/lib/errors')
60 return fetch(target, {
107 return fetch(doneUrl, opts).then(res => {
146 return fetch.json(target, {
172 return fetch.json(target, {
184 return fetch.json(target, {
194 return fetch.json(`${target}/-rev/${body._rev}`, {
211 const get = (opts = {}) => fetch
[all...]
/third_party/typescript/tests/baselines/reference/
H A DstackDepthLimitCastingType.js8 fetch(options?: any): JQueryXHR;
28 fetch(options?: any): JQueryXHR;
36 import * as BackboneFetchCache from "backbone-fetch-cache";
40 hoge.fetch(null as any);
47 hoge.fetch(null);
H A DintraExpressionInferences.js155 fetch: (params: TParams, foo: number) => TDone,
161 const data = options.fetch(params, 123)
172 fetch: (params: Params) => 123,
177 fetch: (params: Params, foo: number) => 123,
182 fetch: (params: Params, foo) => 123,
296 var data = options.fetch(params, 123);
301 fetch: function (params) { return 123; },
305 fetch: function (params, foo) { return 123; },
309 fetch: function (params, foo) { return 123; },
372 fetch
[all...]
/third_party/node/deps/npm/node_modules/@sigstore/sign/dist/external/
H A Drekor.js22 const make_fetch_happen_1 = __importDefault(require("make-fetch-happen"));
30 this.fetch = make_fetch_happen_1.default.defaults({
47 const response = await this.fetch(url, {
63 const response = await this.fetch(url);
75 const response = await this.fetch(url, {
91 const response = await this.fetch(url, {
/third_party/mesa3d/src/gallium/drivers/r600/sfn/
H A Dsfn_instr_mem.cpp633 auto fetch = new FetchInstr(vc_fetch, in emit_ssbo_atomic_op() local
643 fetch->set_mfc(15); in emit_ssbo_atomic_op()
644 fetch->set_fetch_flag(FetchInstr::srf_mode); in emit_ssbo_atomic_op()
645 fetch->set_fetch_flag(FetchInstr::use_tc); in emit_ssbo_atomic_op()
646 fetch->set_fetch_flag(FetchInstr::vpm); in emit_ssbo_atomic_op()
647 fetch->set_fetch_flag(FetchInstr::wait_ack); in emit_ssbo_atomic_op()
648 fetch->add_required_instr(atomic); in emit_ssbo_atomic_op()
649 shader.chain_ssbo_read(fetch); in emit_ssbo_atomic_op()
650 shader.emit_instruction(fetch); in emit_ssbo_atomic_op()
761 auto fetch in emit_image_load_or_atomic() local
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/crosstest/
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) { \
/third_party/backends/tools/
H A Dupdate-upstreams.sh7 fetch () { function
20 fetch $CONFIG_BASE_URL/$file
24 fetch $GNULIB_BASE_URL/build-aux/git-version-gen
/third_party/openssl/test/
H A Dprovider_status_test.c149 EVP_MD *fetch = NULL; in test_provider_status() local
162 if (!TEST_ptr(fetch = EVP_MD_fetch(libctx, "SHA256", NULL))) in test_provider_status()
164 EVP_MD_free(fetch); in test_provider_status()
165 fetch = NULL; in test_provider_status()
181 if (!TEST_ptr_null(fetch = EVP_MD_fetch(libctx, "SHA256", NULL))) in test_provider_status()
186 EVP_MD_free(fetch); in test_provider_status()
/third_party/node/test/fixtures/wpt/FileAPI/url/
H A Durl-with-fetch.any.js1 // META: script=resources/fetch-tests.js
4 return fetch(request).then(response => response.text());
8 return promise_rejects_js(test, TypeError, fetch(url, {method: method}));
11 fetch_tests('fetch', fetch_should_succeed, fetch_should_fail);
19 return fetch(url).then(response => {
22 }, 'fetch should return Content-Type from Blob');
32 // revoke the URL before calling fetch().
38 }, 'Revoke blob URL after creating Request, will fetch');
49 // Revoke the object URL. fetch should have already resolved the blob URL.
53 }, 'Revoke blob URL after calling fetch, fetc
[all...]
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_test_format.c144 LLVMValueRef fetch = NULL; in test_format_float() local
158 fetch = add_fetch_rgba_test(gallivm, verbose, desc, in test_format_float()
163 fetch_ptr = (fetch_ptr_t) gallivm_jit_function(gallivm, fetch); in test_format_float()
248 LLVMValueRef fetch = NULL; in test_format_unorm8() local
262 fetch = add_fetch_rgba_test(gallivm, verbose, desc, in test_format_unorm8()
267 fetch_ptr = (fetch_ptr_t) gallivm_jit_function(gallivm, fetch); in test_format_unorm8()
390 /* The codegen sometimes falls back to calling the precompiled fetch in test_all()
393 * precompiled fetch func for any format before we write LLVM code to in test_all()
394 * fetch from it. in test_all()

Completed in 9 milliseconds

1234567