/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/core/grappler/optimizers/ |
D | remapper_test.cc | 59 item.fetch = {"batch_norm"}; in TEST_F() 61 auto tensors_expected = EvaluateNodes(item.graph, item.fetch); in TEST_F() 68 auto tensors = EvaluateNodes(output, item.fetch); in TEST_F() 96 item.fetch = {"batch_norm"}; in TEST_F() 105 auto tensors_expected = EvaluateNodes(item.graph, item.fetch); in TEST_F() 107 auto tensors = EvaluateNodes(output, item.fetch); in TEST_F() 156 auto fetch = ops::Identity(s.WithOpName("fetch"), relu); in TEST_F() local 167 item.fetch = {"fetch"}; in TEST_F() 210 auto tensors_expected = EvaluateNodes(item.graph, item.fetch, item.feed); in TEST_F() 212 auto tensors = EvaluateNodes(output, item.fetch, item.feed); in TEST_F() [all …]
|
D | auto_mixed_precision_test.cc | 177 item.fetch = {"fetch1"}; in TestSimpleUnaryInferOp() 182 auto tensors_expected = EvaluateNodes(item.graph, item.fetch, feed); in TestSimpleUnaryInferOp() 197 auto tensors = EvaluateNodes(output, item.fetch, feed); in TestSimpleUnaryInferOp() 199 EXPECT_EQ(tensors.size(), item.fetch.size()); in TestSimpleUnaryInferOp() 200 for (int i = 0; i < item.fetch.size(); ++i) { in TestSimpleUnaryInferOp() 216 Output fetch = ops::Identity(s.WithOpName("fetch"), clr2); in TEST_F() local 219 item.fetch = {"fetch"}; in TEST_F() 221 auto tensors_expected = EvaluateNodes(item.graph, item.fetch); in TEST_F() 238 auto tensors = EvaluateNodes(output, item.fetch); in TEST_F() 240 EXPECT_EQ(tensors.size(), item.fetch.size()); in TEST_F() [all …]
|
D | mkl_remapper_test.cc | 78 auto fetch = s.WithOpName("fetch"); in FuseConv2DWithBiasAndAddNOrAdd() local 80 ops::Identity(fetch, ops::Relu(activate, addop)); in FuseConv2DWithBiasAndAddNOrAdd() 82 ops::Identity(fetch, ops::Relu6(activate, addop)); in FuseConv2DWithBiasAndAddNOrAdd() 84 ops::Identity(fetch, ops::Elu(activate, addop)); in FuseConv2DWithBiasAndAddNOrAdd() 86 ops::Identity(fetch, ops::internal::LeakyRelu(activate, addop)); in FuseConv2DWithBiasAndAddNOrAdd() 89 ops::Identity(fetch, addop); in FuseConv2DWithBiasAndAddNOrAdd() 114 item.fetch = {"fetch"}; in FuseConv2DWithBiasAndAddNOrAdd() 174 auto tensors_expected = EvaluateNodes(item.graph, item.fetch, item.feed); in FuseConv2DWithBiasAndAddNOrAdd() 175 auto tensors = EvaluateNodes(output, item.fetch, item.feed); in FuseConv2DWithBiasAndAddNOrAdd() 239 ops::Identity fetch = [&]() -> ops::Identity { \ [all …]
|
D | arithmetic_optimizer_test.cc | 119 item.fetch = {"id", "id2"}; in TEST_F() 121 auto tensors_expected = EvaluateNodes(item.graph, item.fetch); in TEST_F() 148 auto tensors = EvaluateNodes(output, item.fetch); in TEST_F() 164 item.fetch = {"id"}; in TEST_F() 166 auto tensors_expected = EvaluateNodes(item.graph, item.fetch); in TEST_F() 180 auto tensors = EvaluateNodes(output, item.fetch); in TEST_F() 195 std::vector<string> fetch = {"id2"}; in TEST_F() local 198 item.fetch = fetch; in TEST_F() 200 auto tensors_expected = EvaluateNodes(item.graph, fetch); in TEST_F() 226 auto tensors = EvaluateNodes(output, fetch); in TEST_F() [all …]
|
D | model_pruner_test.cc | 87 std::vector<string> fetch = {"e"}; in TEST_F() local 88 auto expected_tensors = EvaluateNodes(item.graph, fetch); in TEST_F() 89 auto actual_tensors = EvaluateNodes(output, fetch); in TEST_F() 109 item.fetch.push_back("e"); in TEST_F() 128 auto actual_tensors = EvaluateNodes(output, item.fetch); in TEST_F() 130 auto expected_tensors = EvaluateNodes(item.graph, item.fetch); in TEST_F() 155 item.fetch = {"g", "h"}; in TEST_F() 176 auto actual_tensors = EvaluateNodes(output, item.fetch); in TEST_F() 178 auto expected_tensors = EvaluateNodes(item.graph, item.fetch); in TEST_F() 203 item.fetch = {"g"}; in TEST_F() [all …]
|
/external/tensorflow/tensorflow/python/client/ |
D | session.py | 101 # `fetch_fn` describes how to expand fetch into its 118 (sparse_tensor.SparseTensor, lambda fetch: ([ 119 fetch.indices, fetch.values, fetch.dense_shape 127 lambda fetch: ([fetch.values, fetch.indices] if fetch.dense_shape is None 128 else [fetch.values, fetch.indices, fetch.dense_shape 134 (object, lambda fetch: ([fetch], lambda fetched_vals: fetched_vals[0]), 151 """Register fetch and feed conversion functions for `tf.Session.run()`. 178 fetch_function describes how to expand fetch into its component Tensors 213 """Definition of the interface provided by fetch mappers. 215 Fetch mappers are utility classes used by the _FetchHandler to handle [all …]
|
/external/angle/src/libANGLE/renderer/metal/ |
D | mtl_command_buffer.mm | 92 id<MTLRenderPipelineState> state = stream->fetch<id<MTLRenderPipelineState>>(); 99 MTLTriangleFillMode mode = stream->fetch<MTLTriangleFillMode>(); 106 MTLWinding winding = stream->fetch<MTLWinding>(); 112 MTLCullMode mode = stream->fetch<MTLCullMode>(); 118 id<MTLDepthStencilState> state = stream->fetch<id<MTLDepthStencilState>>(); 125 float depthBias = stream->fetch<float>(); 126 float slopeScale = stream->fetch<float>(); 127 float clamp = stream->fetch<float>(); 134 uint32_t frontRef = stream->fetch<uint32_t>(); 135 uint32_t backRef = stream->fetch<uint32_t>(); [all …]
|
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/tests/ |
D | tf_executor_ops_invalid.mlir | 43 tf_executor.fetch %val : tensor<*xf32> 61 // Check that a tf_executor.fetch is terminating a tf_executor.graph (custom parser) 64 // expected-error@-1 {{custom op 'tf_executor.graph' expects a tf_executor.fetch terminator}} 72 // Check that a tf_executor.fetch parent is a graph. 75 tf_executor.fetch 76 // expected-error@-1 {{'tf_executor.fetch' op expects parent op 'tf_executor.graph'}} 83 // Check that a tf_executor.fetch is terminating a tf_executor.graph (verifier) 85 // expected-error@+2 {{'tf_executor.graph' op expects regions to end with 'tf_executor.fetch', foun… 86 …xpected-note@+1 {{in custom textual format, the absence of terminator implies 'tf_executor.fetch'}} 95 // Check that a tf_executor.fetch is terminating a tf_executor.graph. [all …]
|
D | tf_executor_ops.mlir | 16 // CHECK-NEXT: tf_executor.fetch 24 tf_executor.fetch %0 : tensor<*xf32> 32 … tf_executor.fetch %arg0 : tensor<*xf32> {attr3 = 32 : i64, tf_executor.attr_fetch = "some_value"} 36 // CHECK-NEXT: tf_executor.fetch %{{.*}} : tensor<*xf32> {attr3 = 32 : i64, tf_executor.attr_fet… 47 tf_executor.fetch %1#0 : tensor<*xf32> 51 // CHECK: tf_executor.fetch {{.*}} : tensor<*xf32> 66 tf_executor.fetch %1#0 : tensor<*xf32> 83 tf_executor.fetch %3#0 : tensor<*xf32> 90 // CHECK: tf_executor.fetch %[[ISLAND2]] : tensor<*xf32> 102 // CHECK: tf_executor.fetch %{{.*}}, %{{.*}} : tensor<*xf32>, !tf_executor.control [all …]
|
D | replicate_to_island.mlir | 16 tf_executor.fetch 41 tf_executor.fetch 66 tf_executor.fetch 91 tf_executor.fetch 113 tf_executor.fetch %1 : !tf_executor.control 121 // CHECK: tf_executor.fetch %[[SINK]] 124 // Tests unused replica are pinned to the graph fetch. 134 tf_executor.fetch %1#1 : tensor<i1> 141 // CHECK: tf_executor.fetch [[REPLICA_1_OUTPUT]], [[REPLICA_0_CONTROL]] 156 tf_executor.fetch %1#0, %1#1, %1#2, %1#3 : tensor<f32>, tensor<f32>, tensor<i32>, tensor<i32> [all …]
|
D | graph_pruning.mlir | 16 tf_executor.fetch %2#0 : i32 21 // Check that an unused island that doesn't contribute to the fetch is removed. 36 tf_executor.fetch %1#0 : i32 51 tf_executor.fetch %1#0 : i32 66 tf_executor.fetch %arg0 : i32 76 // CHECK-NEXT: tf_executor.fetch 91 tf_executor.fetch %arg0 : i32 113 // CHECK: tf_executor.fetch %[[EXIT]] 128 tf_executor.fetch %8#0 : tensor<*xi32> 133 // Check that ops leading to a fetch via a control are not removed. [all …]
|
D | executor_island_coarsening.mlir | 17 tf_executor.fetch %2#0 : tensor<f32> 26 // CHECK: tf_executor.fetch %[[ISLAND]] : tensor<f32> 42 tf_executor.fetch %2#0 : tensor<i1> 51 // CHECK: tf_executor.fetch %[[ISLAND]] : tensor<i1> 84 tf_executor.fetch %8#0, %8#1 : tensor<i1>, tensor<i1> 91 // CHECK: tf_executor.fetch %[[ISLAND]]#0, %[[ISLAND]]#1 : tensor<i1>, tensor<i1> 101 tf_executor.fetch %1#0, %2#0 : tensor<i1>, tensor<i1> 110 // CHECK: tf_executor.fetch %[[ISLAND]]#0, %[[ISLAND]]#1 : tensor<i1>, tensor<i1> 128 tf_executor.fetch %4#0 : tensor<i32> 139 // CHECK: tf_executor.fetch %[[ISLAND]] : tensor<i32> [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/tensorflow/tensorflow/compiler/tf2xla/ |
D | tf2xla_util_test.cc | 58 tf2xla::Fetch* fetch = config.add_fetch(); in TEST() local 59 fetch->mutable_id()->set_node_name("baz"); in TEST() 60 fetch->mutable_id()->set_output_index(456); in TEST() 61 fetch->set_name("baz_debug"); in TEST() 62 fetch = config.add_fetch(); in TEST() 63 fetch->mutable_id()->set_node_name("banana"); in TEST() 64 fetch->mutable_id()->set_output_index(0); in TEST() 106 tf2xla::Fetch* fetch = config.add_fetch(); in TEST() local 107 fetch->mutable_id()->set_node_name("bar"); in TEST() 108 fetch->mutable_id()->set_output_index(-1); in TEST() [all …]
|
/external/rust/crates/structopt/tests/ |
D | subcommands.rs | 16 /// Fetch stuff from GitHub 17 Fetch { enumerator 37 Opt::Fetch { in test_fetch() 42 Opt::from_clap(&Opt::clap().get_matches_from(&["test", "fetch", "--all", "origin"])) in test_fetch() 45 Opt::Fetch { in test_fetch() 50 Opt::from_clap(&Opt::clap().get_matches_from(&["test", "fetch", "-f", "origin"])) in test_fetch() 105 Fetch, enumerator 119 Opt3::Fetch, in test_null_commands() 120 Opt3::from_clap(&Opt3::clap().get_matches_from(&["test", "fetch"])) in test_null_commands() 131 struct Fetch { struct [all …]
|
/external/python/google-api-python-client/docs/dyn/ |
D | content_v2_1.datafeeds.html | 85 <p class="firstline">Invokes a fetch for the datafeed in your Merchant Center account.</p> 114 "datafeedId": "A String", # The ID of the data feed to get, delete or fetch. 124 …fetch schedule, day_of_month and hour are required. For a weekly fetch schedule, weekday and hour … 128 "paused": True or False, # Whether the scheduled fetch is paused or not. 186 …fetch schedule, day_of_month and hour are required. For a weekly fetch schedule, weekday and hour … 190 "paused": True or False, # Whether the scheduled fetch is paused or not. 230 <pre>Invokes a fetch for the datafeed in your Merchant Center account. 264 …fetch schedule, day_of_month and hour are required. For a weekly fetch schedule, weekday and hour … 268 "paused": True or False, # Whether the scheduled fetch is paused or not. 311 …fetch schedule, day_of_month and hour are required. For a weekly fetch schedule, weekday and hour … [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/mesa3d/src/gallium/drivers/freedreno/a2xx/ |
D | ir2_assemble.c | 115 /* fetch instructions can swizzle dest, but src swizzle needs conversion */ 176 bc->fetch.opc = instr->fetch.opc; in fill_instr() 177 bc->fetch.pred_select = !!instr->pred; in fill_instr() 178 bc->fetch.pred_condition = instr->pred & 1; in fill_instr() 182 if (instr->fetch.opc == VTX_FETCH) { in fill_instr() 183 instr_fetch_vtx_t *vtx = &bc->fetch.vtx; in fill_instr() 185 assert(instr->fetch.vtx.const_idx <= 0x1f); in fill_instr() 186 assert(instr->fetch.vtx.const_idx_sel <= 0x3); in fill_instr() 194 vtx->const_index = instr->fetch.vtx.const_idx; in fill_instr() 195 vtx->const_index_sel = instr->fetch.vtx.const_idx_sel; in fill_instr() [all …]
|
/external/perfetto/ui/src/service_worker/ |
D | service_worker.ts | 28 // will try to fetch resources from /v2/frontend_bundle.ts. 30 // a network fetch(), returning the fresh /v2/ content. 34 // 5. In the "install" step, the service_worker.js script will fetch the newer 49 // If the fetch() for the / doesn't respond within 3s, return a cached version. 83 // version number and pre-fetch all the contents for the version. 97 // activate() would just cause cache-misses, hence fetch from the network, 115 self.addEventListener('fetch', event => { 117 // network-based fetch. 147 // reload button*, the browser requests the "/" index with a 'no-cache' fetch. 149 // 'default' fetch (this is just how Chrome works, it's not us). If we bypass [all …]
|