/external/e2fsprogs/tests/progs/test_data/ |
D | 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 20000 [all …]
|
D | expect.icount | 5 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/ |
D | 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, 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 …]
|
D | draw_pt_vsplit.c | 56 /* 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 …]
|
D | draw_vs_variant.c | 42 /* 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 …]
|
/external/tensorflow/tensorflow/python/client/ |
D | session.py | 91 # `fetch_fn` describes how to expand fetch into its 109 lambda fetch: ( 110 [fetch.indices, fetch.values, fetch.dense_shape], 118 lambda fetch: ( 119 [fetch.values, fetch.indices] if fetch.dense_shape is None 120 else [fetch.values, fetch.indices, fetch.dense_shape], 127 lambda fetch: ([fetch], lambda fetched_vals: fetched_vals[0]), 144 """Register fetch and feed conversion functions for `tf.Session.run()`. 171 fetch_function describes how to expand fetch into its component Tensors 206 """Definition of the interface provided by fetch mappers. [all …]
|
/external/tensorflow/tensorflow/compiler/tf2xla/ |
D | tf2xla_util_test.cc | 56 tf2xla::Fetch* fetch = config.add_fetch(); in TEST() local 57 fetch->mutable_id()->set_node_name("baz"); in TEST() 58 fetch->mutable_id()->set_output_index(456); in TEST() 59 fetch->set_name("baz_debug"); in TEST() 60 fetch = config.add_fetch(); in TEST() 61 fetch->mutable_id()->set_node_name("banana"); in TEST() 62 fetch->mutable_id()->set_output_index(0); in TEST() 104 tf2xla::Fetch* fetch = config.add_fetch(); in TEST() local 105 fetch->mutable_id()->set_node_name("bar"); in TEST() 106 fetch->mutable_id()->set_output_index(-1); in TEST() [all …]
|
/external/tensorflow/tensorflow/core/grappler/optimizers/ |
D | remapper_test.cc | 54 item.fetch = {"batch_norm"}; in TEST_F() 56 auto tensors_expected = EvaluateNodes(item.graph, item.fetch); in TEST_F() 63 auto tensors = EvaluateNodes(output, item.fetch); in TEST_F() 88 item.fetch = {"batch_norm"}; in TEST_F() 96 auto tensors_expected = EvaluateNodes(item.graph, item.fetch); in TEST_F() 98 auto tensors = EvaluateNodes(output, item.fetch); in TEST_F() 122 auto fetch = ops::Identity(s.WithOpName("fetch"), bias_add); in TEST_F() local 129 item.fetch = {"fetch"}; in TEST_F() 160 auto tensors_expected = EvaluateNodes(item.graph, item.fetch, item.feed); in TEST_F() 161 auto tensors = EvaluateNodes(output, item.fetch, item.feed); in TEST_F() [all …]
|
D | arithmetic_optimizer_test.cc | 110 item.fetch = {"div"}; in TEST_F() 112 auto tensors_expected = EvaluateNodes(item.graph, item.fetch); in TEST_F() 129 auto tensors = EvaluateNodes(output, item.fetch); in TEST_F() 147 item.fetch = {"div"}; in TEST_F() 151 EvaluateNodes(item.graph, item.fetch, {{"Placeholder", bool_t}}); in TEST_F() 169 auto tensors = EvaluateNodes(output, item.fetch, {{"Placeholder", bool_t}}); in TEST_F() 183 item.fetch = {"div1"}; in TEST_F() 184 auto tensors_expected = EvaluateNodes(item.graph, item.fetch); in TEST_F() 208 auto tensors = EvaluateNodes(output, item.fetch); in TEST_F() 221 item.fetch = {"id"}; in TEST_F() [all …]
|
D | auto_parallel.cc | 82 if (item.fetch.empty()) { in Initialize() 83 return Status(error::INVALID_ARGUMENT, "No fetch nodes provided."); in Initialize() 94 for (const auto& fetch : item.fetch) { in Initialize() local 95 VLOG(1) << "Fetch node: " << fetch; in Initialize() 150 auto train_nodes = ComputeTransitiveFanin(graph_, item.fetch); in Initialize() 244 for (size_t i = 0; i < item_->fetch.size(); i++) { in BuildGraph() 247 string fetch = AddPrefixToNodeName(item_->fetch[i], prefix); in BuildGraph() local 248 fetches.insert(fetch); in BuildGraph() 252 strings::StrCat(kAutoParallelPrefix, "-Control-", "Fetch"); in BuildGraph() 255 for (const auto& fetch : item_->fetch) { in BuildGraph() local [all …]
|
D | model_pruner_test.cc | 94 std::vector<string> fetch = {"e"}; in TEST_F() local 95 auto expected_tensors = EvaluateNodes(item.graph, fetch); in TEST_F() 96 auto actual_tensors = EvaluateNodes(output, fetch); in TEST_F() 139 std::vector<string> fetch = {"e"}; in TEST_F() local 140 auto expected_tensors = EvaluateNodes(item.graph, fetch); in TEST_F() 141 auto actual_tensors = EvaluateNodes(output, fetch); in TEST_F() 163 item.fetch = {"g", "h"}; in TEST_F() 198 auto expected_tensors = EvaluateNodes(item.graph, item.fetch); in TEST_F() 199 auto actual_tensors = EvaluateNodes(output, item.fetch); in TEST_F() 222 item.fetch = {"g"}; in TEST_F() [all …]
|
D | constant_folding_test.cc | 77 item.fetch = {"mul1", "mul2", "add1", "add2"}; in SimpleNeutralElementTest() 114 EvaluateNodes(item.graph, item.fetch, {{"x", x_t}}); in SimpleNeutralElementTest() 115 auto tensors = EvaluateNodes(output, item.fetch, {{"x", x_t}}); in SimpleNeutralElementTest() 118 for (int i = 0; i < item.fetch.size(); ++i) { in SimpleNeutralElementTest() 208 std::vector<string> fetch = {"mul"}; in MulConvPushDownTest() local 213 auto actual = EvaluateNodes(output, fetch, {{"x", value}}); in MulConvPushDownTest() 214 auto expected = EvaluateNodes(item.graph, fetch, {{"x", value}}); in MulConvPushDownTest() 229 item.fetch.push_back("d"); in TEST_F() 243 std::vector<string> fetch = {"d"}; in TEST_F() local 244 auto tensors_expected = EvaluateNodes(item.graph, fetch); in TEST_F() [all …]
|
D | dependency_optimizer_test.cc | 79 item.fetch.push_back("id1"); in TEST_F() 80 item.fetch.push_back("id2"); in TEST_F() 114 item.fetch.push_back("id1"); in TEST_F() 115 item.fetch.push_back("id2"); in TEST_F() 157 item.fetch = {"id1"}; in TEST_F() 213 item.fetch.push_back("c1"); in TEST_F() 214 item.fetch.push_back("c2"); in TEST_F() 215 item.fetch.push_back("neg1"); in TEST_F() 216 item.fetch.push_back("neg2"); in TEST_F() 270 item.fetch.push_back("Identity"); in TEST_F() [all …]
|
/external/mesa3d/src/gallium/drivers/freedreno/a2xx/ |
D | fd2_program.c | 99 * 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 …]
|
D | ir-a2xx.h | 71 /* 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 …]
|
D | ir-a2xx.c | 168 /* 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/brotli/fetch-spec/ |
D | shared-brotli-fetch-spec.txt | 5 This document is a draft proposal for Shard Brotli dictionaries in the fetch spec 6 (https://fetch.spec.whatwg.org/). 21 Below are changes and additions to add Shared Brotli dictionaries to the fetch spec 22 at https://fetch.spec.whatwg.org/: 24 Additions to `4.5. HTTP-network-or-cache fetch` 33 Additions to `4.6. HTTP-network fetch` 35 Add after point `10. Run these steps, but abort if the ongoing fetch is terminated`: 48 Shared-Brotli-dictionary fetch given dictionaryId and request. 75 New section `4.10. Shared-Brotli-dictionary fetch` 77 …To perform a Shared-Brotli-dictionary fetch using dictionaryId, and parentRequest, perform these s… [all …]
|
/external/autotest/client/cros/cellular/mbim_compliance/ |
D | mbim_descriptor_cache.py | 40 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/jemalloc_new/test/unit/ |
D | atomic.c | 89 /* Fetch-add. */ \ 93 "Fetch-add should return previous value"); \ 96 "Fetch-add should update atomic"); \ 98 /* Fetch-sub. */ \ 102 "Fetch-sub should return previous value"); \ 105 "Fetch-sub should update atomic"); \ 107 /* Fetch-and. */ \ 111 "Fetch-and should return previous value"); \ 114 "Fetch-and should update atomic"); \ 116 /* Fetch-or. */ \ [all …]
|
/external/swiftshader/third_party/LLVM/lib/Target/MBlaze/ |
D | MBlazeSchedule3.td | 22 [ 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 …]
|
D | MBlazeSchedule5.td | 22 [ 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/google-api-python-client/docs/dyn/ |
D | content_v2.datafeeds.html | 125 …fetch schedule, day_of_month and hour are required. For a weekly fetch schedule, weekday and hour … 180 …fetch schedule, day_of_month and hour are required. For a weekly fetch schedule, weekday and hour … 235 …fetch schedule, day_of_month and hour are required. For a weekly fetch schedule, weekday and hour … 274 …fetch schedule, day_of_month and hour are required. For a weekly fetch schedule, weekday and hour … 308 …fetch schedule, day_of_month and hour are required. For a weekly fetch schedule, weekday and hour … 354 …fetch schedule, day_of_month and hour are required. For a weekly fetch schedule, weekday and hour … 410 …fetch schedule, day_of_month and hour are required. For a weekly fetch schedule, weekday and hour … 444 …fetch schedule, day_of_month and hour are required. For a weekly fetch schedule, weekday and hour … 484 …fetch schedule, day_of_month and hour are required. For a weekly fetch schedule, weekday and hour … 518 …fetch schedule, day_of_month and hour are required. For a weekly fetch schedule, weekday and hour …
|
/external/python/apitools/apitools/scripts/ |
D | oauth2l.py | 22 $ oauth2l fetch userinfo.email bigquery compute 46 $ oauth2l fetch -f json_compact userinfo.email 48 $ oauth2l fetch -f bare drive 89 """Fetch client info from args.""" 171 """Fetch a credential for the given client_info and scopes.""" 202 """Fetch a valid access token and display it.""" 208 """Fetch an access token and display it formatted as an HTTP header.""" 271 # fetch 272 fetch = subparsers.add_parser('fetch', help=_Fetch.__doc__, 274 fetch.set_defaults(func=_Fetch) [all …]
|
/external/python/cpython2/Lib/idlelib/ |
D | IdleHistory.py | 9 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/python/cpython3/Lib/idlelib/ |
D | history.py | 10 fetch - Fetch stored statement matching prefix already entered. 32 "Fetch later statement; start with ealiest if cyclic." 33 self.fetch(reverse=False) 37 "Fetch earlier statement; start with most recent." 38 self.fetch(reverse=True) 41 def fetch(self, reverse): member in History 42 '''Fetch statememt and replace current line in text widget.
|