Searched refs:to_process (Results 1 – 9 of 9) sorted by relevance
/third_party/mindspore/mindspore/lite/tools/optimizer/common/ |
D | node_pass_extends.cc | 40 std::deque<AnfNodePtr> to_process{func_graph->output()}; in Run() local 42 while (!to_process.empty()) { in Run() 43 AnfNodePtr node = to_process.front(); in Run() 44 to_process.pop_front(); in Run() 63 to_process.push_back(const_func_graph->output()); in Run() 66 to_process.push_back(new_node); in Run() 74 (void)to_process.insert(to_process.end(), inputs.begin(), inputs.end()); in Run()
|
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/engine/datasetops/ |
D | filter_op.cc | 149 TensorRow to_process; in WorkerCompute() local 152 to_process = in_row; in WorkerCompute() 155 in_columns_.begin(), in_columns_.end(), std::back_inserter(to_process), in WorkerCompute() 158 RETURN_IF_NOT_OK(InvokePredicateFunc(to_process, out_predicate)); in WorkerCompute()
|
/third_party/mindspore/mindspore/lite/tools/converter/ |
D | anf_transform.cc | 350 std::deque<CNodePtr> to_process{}; in GetFuncGraphs() local 351 to_process.insert(to_process.end(), nodes.begin(), nodes.end()); in GetFuncGraphs() 352 while (!to_process.empty()) { in GetFuncGraphs() 353 auto &cur_cnode = to_process.front(); in GetFuncGraphs() 364 to_process.insert(to_process.end(), new_nodes.begin(), new_nodes.end()); in GetFuncGraphs() 366 to_process.pop_front(); in GetFuncGraphs()
|
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/engine/datasetops/map_op/ |
D | map_op.cc | 252 TensorRow to_process; in WorkerCompute() local 257 …::transform(to_process_indices_.begin(), to_process_indices_.end(), std::back_inserter(to_process), in WorkerCompute() 259 to_process.setId(in_row.getId()); in WorkerCompute() 265 to_process.setPath(to_process_path); in WorkerCompute() 267 job_input_table.push_back(std::move(to_process)); in WorkerCompute()
|
/third_party/gstreamer/gstplugins_bad/sys/d3d11/ |
D | gstd3d11deinterlace.cpp | 244 GstBuffer *to_process; member 643 gst_clear_buffer (&self->to_process); in gst_d3d11_deinterlace_reset_history() 1351 if (self->to_process) { in gst_d3d11_deinterlace_submit_future_frame() 1353 gst_clear_buffer (&self->to_process); in gst_d3d11_deinterlace_submit_future_frame() 1363 self->to_process = in gst_d3d11_deinterlace_submit_future_frame() 1370 if (GST_BUFFER_PTS_IS_VALID (self->to_process)) { in gst_d3d11_deinterlace_submit_future_frame() 1371 cur_timestmap = GST_BUFFER_PTS (self->to_process); in gst_d3d11_deinterlace_submit_future_frame() 1373 cur_timestmap = GST_BUFFER_DTS (self->to_process); in gst_d3d11_deinterlace_submit_future_frame() 1398 self->to_process = gst_buffer_make_writable (self->to_process); in gst_d3d11_deinterlace_submit_future_frame() 1400 GST_BUFFER_DURATION (self->to_process) = duration; in gst_d3d11_deinterlace_submit_future_frame() [all …]
|
/third_party/mindspore/mindspore/lite/tools/converter/legacy_optimizer/graph/ |
D | infershape_pass.cc | 411 std::deque<CNodeT *> to_process{}; in InferSwitchNode() local 420 to_process.push_back(node.get()); in InferSwitchNode() 431 to_process.push_back(node.get()); in InferSwitchNode() 437 while (!to_process.empty()) { in InferSwitchNode() 438 auto node = to_process.front(); in InferSwitchNode() 439 to_process.pop_front(); in InferSwitchNode()
|
/third_party/gn/src/gn/ |
D | visual_studio_writer.cc | 214 base::queue<const Target*> to_process; in FilterTargets() local 217 to_process.push(target); in FilterTargets() 220 while (!to_process.empty()) { in FilterTargets() 221 const Target* target = to_process.front(); in FilterTargets() 222 to_process.pop(); in FilterTargets() 226 to_process.push(pair.ptr); in FilterTargets()
|
/third_party/flatbuffers/src/ |
D | idl_parser.cpp | 3445 std::list<std::string> to_process; in GetIncludedFilesRecursive() local 3448 to_process.push_back(file_name); in GetIncludedFilesRecursive() 3450 while (!to_process.empty()) { in GetIncludedFilesRecursive() 3451 std::string current = to_process.front(); in GetIncludedFilesRecursive() 3452 to_process.pop_front(); in GetIncludedFilesRecursive() 3461 to_process.push_back(*it); in GetIncludedFilesRecursive()
|
/third_party/python/Modules/ |
D | _pickle.c | 841 size_t to_process; in _PyMemoTable_ResizeTable() local 870 to_process = self->mt_used; in _PyMemoTable_ResizeTable() 871 for (oldentry = oldtable; to_process > 0; oldentry++) { in _PyMemoTable_ResizeTable() 873 to_process--; in _PyMemoTable_ResizeTable()
|