/external/curl/tests/unit/ |
D | unit1300.c | 61 struct curl_llist_element *to_remove; variable 176 to_remove = llist.head->next; 177 abort_unless(to_remove, "to_remove is NULL"); 178 element_next = to_remove->next; 179 element_prev = to_remove->prev; 180 Curl_llist_remove(&llist, to_remove, NULL); 197 to_remove = llist.tail; 198 element_prev = to_remove->prev; 199 Curl_llist_remove(&llist, to_remove, NULL); 212 to_remove = llist.head; [all …]
|
/external/adhd/cras/src/server/ |
D | stream_list.c | 99 struct cras_rstream *to_remove; in stream_list_rm() local 101 DL_SEARCH_SCALAR(list->streams, to_remove, stream_id, id); in stream_list_rm() 102 if (!to_remove) in stream_list_rm() 104 DL_DELETE(list->streams, to_remove); in stream_list_rm() 105 DL_APPEND(list->streams_to_delete, to_remove); in stream_list_rm() 118 struct cras_rstream *to_remove; in stream_list_rm_all_client_streams() local 121 DL_FOREACH(list->streams, to_remove) { in stream_list_rm_all_client_streams() 122 if (to_remove->client == rclient) { in stream_list_rm_all_client_streams() 123 DL_DELETE(list->streams, to_remove); in stream_list_rm_all_client_streams() 124 DL_APPEND(list->streams_to_delete, to_remove); in stream_list_rm_all_client_streams()
|
/external/swiftshader/third_party/SPIRV-Tools/source/opt/ |
D | strip_reflect_info_pass.cpp | 29 std::vector<Instruction*> to_remove; in Process() local 36 to_remove.push_back(&inst); in Process() 44 to_remove.push_back(&inst); in Process() 53 to_remove.push_back(&inst); in Process() 66 to_remove.push_back(&inst); in Process() 69 to_remove.push_back(&inst); in Process() 73 for (auto* inst : to_remove) { in Process()
|
/external/deqp-deps/SPIRV-Tools/source/opt/ |
D | strip_reflect_info_pass.cpp | 29 std::vector<Instruction*> to_remove; in Process() local 36 to_remove.push_back(&inst); in Process() 44 to_remove.push_back(&inst); in Process() 53 to_remove.push_back(&inst); in Process() 66 to_remove.push_back(&inst); in Process() 69 to_remove.push_back(&inst); in Process() 73 for (auto* inst : to_remove) { in Process()
|
/external/grpc-grpc/src/core/lib/channel/ |
D | channel_args.cc | 62 const grpc_channel_args* src, const char** to_remove, in grpc_channel_args_copy_and_remove() argument 64 return grpc_channel_args_copy_and_add_and_remove(src, to_remove, in grpc_channel_args_copy_and_remove() 68 static bool should_remove_arg(const grpc_arg* arg, const char** to_remove, in should_remove_arg() argument 71 if (strcmp(arg->key, to_remove[i]) == 0) return true; in should_remove_arg() 77 const grpc_channel_args* src, const char** to_remove, size_t num_to_remove, in grpc_channel_args_copy_and_add_and_remove() argument 83 if (!should_remove_arg(&src->args[i], to_remove, num_to_remove)) { in grpc_channel_args_copy_and_add_and_remove() 102 if (!should_remove_arg(&src->args[i], to_remove, num_to_remove)) { in grpc_channel_args_copy_and_add_and_remove()
|
D | channel_args.h | 45 const grpc_channel_args* src, const char** to_remove, size_t num_to_remove); 50 const grpc_channel_args* src, const char** to_remove, size_t num_to_remove,
|
/external/mesa3d/src/gallium/auxiliary/cso_cache/ |
D | cso_cache.c | 172 int to_remove = (max_size < max_entries) * max_entries/4; in sanitize_cb() local 174 to_remove += hash_size - max_size; in sanitize_cb() 175 while (to_remove) { in sanitize_cb() 181 --to_remove; in sanitize_cb()
|
D | cso_context.c | 230 int to_remove = (max_size < max_entries) * max_entries/4; in sanitize_hash() local 236 to_remove += hash_size - max_size; in sanitize_hash() 238 if (to_remove == 0) in sanitize_hash() 261 while (to_remove) { in sanitize_hash() 271 --to_remove; in sanitize_hash()
|
/external/virglrenderer/src/gallium/auxiliary/cso_cache/ |
D | cso_cache.c | 172 int to_remove = (max_size < max_entries) * max_entries/4; in sanitize_cb() local 174 to_remove += hash_size - max_size; in sanitize_cb() 175 while (to_remove) { in sanitize_cb() 181 --to_remove; in sanitize_cb()
|
/external/grpc-grpc/src/core/ext/transport/chttp2/client/insecure/ |
D | channel_create.cc | 66 const char* to_remove[] = {GRPC_ARG_SERVER_URI}; in client_channel_factory_create_channel() local 68 grpc_channel_args_copy_and_add_and_remove(args, to_remove, 1, &arg, 1); in client_channel_factory_create_channel()
|
/external/v8/ |
D | merge.py | 29 to_remove = [f for f in current_files if f in new_files] variable 31 for file in to_remove:
|
/external/tensorflow/tensorflow/core/framework/ |
D | graph_def_util.cc | 95 std::vector<string> to_remove; in RemoveNewDefaultAttrsFromNodeDef() local 112 to_remove.emplace_back(attr.first); in RemoveNewDefaultAttrsFromNodeDef() 119 for (const string& attr_name : to_remove) { in RemoveNewDefaultAttrsFromNodeDef()
|
/external/autotest/server/hosts/ |
D | gce_host.py | 76 def _modify_ssh_keys(self, to_add, to_remove): argument 86 new_key_set = (key_set | set(to_add)) - set(to_remove)
|
/external/tensorflow/tensorflow/core/graph/ |
D | subgraph.cc | 91 std::vector<const Edge*> to_remove; in FeedInputs() local 94 to_remove.emplace_back(e); in FeedInputs() 103 to_remove.emplace_back(e); in FeedInputs() 107 for (const Edge* e : to_remove) { in FeedInputs()
|
/external/grpc-grpc/src/core/ext/transport/chttp2/client/secure/ |
D | secure_channel_create.cc | 179 const char* to_remove[] = {GRPC_ARG_SERVER_URI}; in client_channel_factory_create_channel() local 181 grpc_channel_args_copy_and_add_and_remove(args, to_remove, 1, &arg, 1); in client_channel_factory_create_channel()
|
/external/v8/src/compiler/ |
D | live-range-separator.cc | 171 int to_remove = range->vreg(); in Merge() local 173 data()->live_ranges()[to_remove] = nullptr; in Merge()
|
D | store-store-elimination.cc | 157 ZoneSet<Node*>& to_remove() { return to_remove_; } in to_remove() function in v8::internal::compiler::__anon35baa2500311::RedundantStoreFinder 270 to_remove().insert(node); in RecomputeSet()
|
/external/jemalloc_new/include/jemalloc/internal/ |
D | extent_inlines.h | 364 extent_list_replace(extent_list_t *list, extent_t *to_remove, in extent_list_replace() argument 366 ql_after_insert(to_remove, to_insert, ql_link); in extent_list_replace() 367 ql_remove(list, to_remove, ql_link); in extent_list_replace()
|
/external/autotest/site_utils/ |
D | backup_mysql_db.py | 299 to_remove = ordered_listing[:-self._number_to_keep] 301 for artifact in to_remove:
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | hlo_module.cc | 109 Status HloModule::RemoveEmbeddedComputation(HloComputation* to_remove) { in RemoveEmbeddedComputation() argument 111 computations_, [&to_remove](const std::unique_ptr<HloComputation>& comp) { in RemoveEmbeddedComputation() 112 return comp.get() == to_remove; in RemoveEmbeddedComputation() 114 TF_RET_CHECK(it->get() == to_remove); in RemoveEmbeddedComputation()
|
D | hlo_module.h | 80 Status RemoveEmbeddedComputation(HloComputation* to_remove);
|
D | hlo_instruction.cc | 1687 for (int to_remove : ascending_indices) { in RemoveOperandsAtAscendingIndices() local 1688 while (next_index < to_remove) { in RemoveOperandsAtAscendingIndices() 1692 CHECK_LT(to_remove, operands_.size()); in RemoveOperandsAtAscendingIndices()
|
/external/u-boot/tools/buildman/ |
D | builder.py | 1515 to_remove = [] 1518 to_remove.append(dirname) 1519 if to_remove: 1520 Print('Removing %d old build directories' % len(to_remove), 1522 for dirname in to_remove:
|
/external/tensorflow/tensorflow/contrib/tensor_forest/kernels/v4/ |
D | grow_stats.cc | 223 const int to_remove = num_splits() * prune_fraction_; in CheckPrune() local 224 if (to_remove <= 0) { in CheckPrune() 241 if (worst.size() < to_remove) { in CheckPrune()
|
/external/webrtc/talk/app/webrtc/ |
D | peerconnection_unittest.cc | 264 auto to_remove = it++; in OnChanged() local 265 removed_fake_video_renderers_.push_back(std::move(to_remove->second)); in OnChanged() 266 fake_video_renderers_.erase(to_remove); in OnChanged()
|