Home
last modified time | relevance | path

Searched refs:to_remove (Results 1 – 25 of 25) sorted by relevance

/external/curl/tests/unit/
Dunit1300.c61 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/
Dstream_list.c99 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/
Dstrip_reflect_info_pass.cpp29 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/
Dstrip_reflect_info_pass.cpp29 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/
Dchannel_args.cc62 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()
Dchannel_args.h45 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/
Dcso_cache.c172 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()
Dcso_context.c230 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/
Dcso_cache.c172 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/
Dchannel_create.cc66 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/
Dmerge.py29 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/
Dgraph_def_util.cc95 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/
Dgce_host.py76 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/
Dsubgraph.cc91 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/
Dsecure_channel_create.cc179 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/
Dlive-range-separator.cc171 int to_remove = range->vreg(); in Merge() local
173 data()->live_ranges()[to_remove] = nullptr; in Merge()
Dstore-store-elimination.cc157 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/
Dextent_inlines.h364 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/
Dbackup_mysql_db.py299 to_remove = ordered_listing[:-self._number_to_keep]
301 for artifact in to_remove:
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_module.cc109 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()
Dhlo_module.h80 Status RemoveEmbeddedComputation(HloComputation* to_remove);
Dhlo_instruction.cc1687 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/
Dbuilder.py1515 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/
Dgrow_stats.cc223 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/
Dpeerconnection_unittest.cc264 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()