/third_party/spirv-tools/source/opt/ |
D | fold_spec_constant_op_and_composite_pass.cpp | 187 Instruction* insert_pos = (*inst_iter_ptr)->PreviousNode(); in FoldWithInstructionFolder() local 188 assert(insert_pos != nullptr && in FoldWithInstructionFolder() 196 i->InsertAfter(insert_pos); in FoldWithInstructionFolder() 197 insert_pos = insert_pos->NextNode(); in FoldWithInstructionFolder() 203 new_const_inst->InsertAfter(insert_pos); in FoldWithInstructionFolder()
|
D | merge_return_pass.cpp | 345 Instruction* insert_pos = &*merge_block->begin(); in CreatePhiNodesForInst() local 346 while (insert_pos->opcode() == SpvOpPhi) { in CreatePhiNodesForInst() 347 insert_pos = insert_pos->NextNode(); in CreatePhiNodesForInst() 349 new_phi = insert_pos->InsertBefore(std::move(regen_inst)); in CreatePhiNodesForInst()
|
D | debug_info_manager.h | 151 Instruction* insert_pos);
|
D | debug_info_manager.cpp | 563 Instruction* insert_pos) { in AddDebugValueForVariable() argument 573 Instruction* insert_before = insert_pos->NextNode(); in AddDebugValueForVariable()
|
/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
D | fold_spec_constant_op_and_composite_pass.cpp | 195 Instruction* insert_pos = (*inst_iter_ptr)->PreviousNode(); in FoldWithInstructionFolder() local 196 assert(insert_pos != nullptr && in FoldWithInstructionFolder() 204 i->InsertAfter(insert_pos); in FoldWithInstructionFolder() 205 insert_pos = insert_pos->NextNode(); in FoldWithInstructionFolder() 211 new_const_inst->InsertAfter(insert_pos); in FoldWithInstructionFolder()
|
D | merge_return_pass.cpp | 345 Instruction* insert_pos = &*merge_block->begin(); in CreatePhiNodesForInst() local 346 while (insert_pos->opcode() == SpvOpPhi) { in CreatePhiNodesForInst() 347 insert_pos = insert_pos->NextNode(); in CreatePhiNodesForInst() 349 new_phi = insert_pos->InsertBefore(std::move(regen_inst)); in CreatePhiNodesForInst()
|
D | debug_info_manager.h | 151 Instruction* insert_pos,
|
D | debug_info_manager.cpp | 551 Instruction* insert_pos, in AddDebugValueIfVarDeclIsVisible() argument 567 Instruction* insert_before = insert_pos->NextNode(); in AddDebugValueIfVarDeclIsVisible()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
D | fold_spec_constant_op_and_composite_pass.cpp | 195 Instruction* insert_pos = (*inst_iter_ptr)->PreviousNode(); in FoldWithInstructionFolder() local 196 assert(insert_pos != nullptr && in FoldWithInstructionFolder() 204 i->InsertAfter(insert_pos); in FoldWithInstructionFolder() 205 insert_pos = insert_pos->NextNode(); in FoldWithInstructionFolder() 211 new_const_inst->InsertAfter(insert_pos); in FoldWithInstructionFolder()
|
D | merge_return_pass.cpp | 345 Instruction* insert_pos = &*merge_block->begin(); in CreatePhiNodesForInst() local 346 while (insert_pos->opcode() == SpvOpPhi) { in CreatePhiNodesForInst() 347 insert_pos = insert_pos->NextNode(); in CreatePhiNodesForInst() 349 new_phi = insert_pos->InsertBefore(std::move(regen_inst)); in CreatePhiNodesForInst()
|
D | debug_info_manager.h | 151 Instruction* insert_pos,
|
D | debug_info_manager.cpp | 551 Instruction* insert_pos, in AddDebugValueIfVarDeclIsVisible() argument 567 Instruction* insert_before = insert_pos->NextNode(); in AddDebugValueIfVarDeclIsVisible()
|
/third_party/mesa3d/src/gallium/drivers/lima/ir/pp/ |
D | scheduler.c | 97 struct list_head *insert_pos = ready_list; in ppir_insert_ready_list() local 105 insert_pos = &instr->list; in ppir_insert_ready_list() 111 list_addtail(&insert_instr->list, insert_pos); in ppir_insert_ready_list()
|
/third_party/mesa3d/src/gallium/drivers/lima/ir/gp/ |
D | reduce_scheduler.c | 106 struct list_head *insert_pos = ready_list; in schedule_insert_ready_list() local 119 insert_pos = &node->list; in schedule_insert_ready_list() 127 list_addtail(&insert_node->list, insert_pos); in schedule_insert_ready_list()
|
D | scheduler.c | 450 struct list_head *insert_pos = &ctx->ready_list; in schedule_insert_ready_list() local 455 insert_pos = &node->list; in schedule_insert_ready_list() 460 list_addtail(&insert_node->list, insert_pos); in schedule_insert_ready_list()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/ |
D | iterator_test.cpp | 176 const int insert_pos = 42; in TEST() local 177 expected.insert(expected.begin() + insert_pos, -100); in TEST() 178 expected.insert(expected.begin() + insert_pos, -42); in TEST() 181 for (int i = 0; i < insert_pos; ++i) ++it; in TEST()
|
/third_party/spirv-tools/test/opt/ |
D | iterator_test.cpp | 176 const int insert_pos = 42; in TEST() local 177 expected.insert(expected.begin() + insert_pos, -100); in TEST() 178 expected.insert(expected.begin() + insert_pos, -42); in TEST() 181 for (int i = 0; i < insert_pos; ++i) ++it; in TEST()
|
/third_party/skia/third_party/externals/spirv-tools/test/opt/ |
D | iterator_test.cpp | 176 const int insert_pos = 42; in TEST() local 177 expected.insert(expected.begin() + insert_pos, -100); in TEST() 178 expected.insert(expected.begin() + insert_pos, -42); in TEST() 181 for (int i = 0; i < insert_pos; ++i) ++it; in TEST()
|
/third_party/python/Lib/lib2to3/ |
D | fixer_util.py | 329 insert_pos = offset = 0 336 insert_pos = idx + offset 341 if insert_pos == 0: 345 insert_pos = idx + 1 357 root.insert_child(insert_pos, Node(syms.simple_stmt, children))
|
/third_party/mesa3d/src/compiler/glsl/ |
D | lower_named_interface_blocks.cpp | 151 exec_node *insert_pos = var; in run() local 208 insert_pos->insert_after(new_var); in run() 209 insert_pos = new_var; in run()
|
/third_party/node/deps/v8/src/wasm/ |
D | wasm-debug.cc | 1106 int insert_pos = in AddBreakpointToInfo() local 1111 if (insert_pos < breakpoint_infos->length() && in AddBreakpointToInfo() 1112 GetBreakpointPos(isolate, breakpoint_infos->get(insert_pos)) == in AddBreakpointToInfo() 1115 BreakPointInfo::cast(breakpoint_infos->get(insert_pos)), isolate); in AddBreakpointToInfo() 1129 for (int i = 0; i < insert_pos; ++i) in AddBreakpointToInfo() 1134 for (int i = breakpoint_infos->length() - 1; i >= insert_pos; --i) { in AddBreakpointToInfo() 1146 new_breakpoint_infos->set(insert_pos, *breakpoint_info); in AddBreakpointToInfo() 1249 int insert_pos = in CheckBreakPoints() local 1251 if (insert_pos >= breakpoint_infos->length()) return {}; in CheckBreakPoints() 1253 Handle<Object> maybe_breakpoint_info(breakpoint_infos->get(insert_pos), in CheckBreakPoints()
|
D | wasm-code-manager.cc | 81 auto insert_pos = regions_.erase(above); in Merge() local 82 regions_.insert(insert_pos, merged_region); in Merge() 131 auto insert_pos = regions_.erase(it); in AllocateInRegion() local 136 regions_.insert(insert_pos, {old.begin() + size, old.size() - size}); in AllocateInRegion() 139 regions_.insert(insert_pos, {old.begin(), old.size() - size}); in AllocateInRegion() 143 regions_.insert(insert_pos, {old.begin(), ret.begin() - old.begin()}); in AllocateInRegion() 144 regions_.insert(insert_pos, {ret.end(), old.end() - ret.end()}); in AllocateInRegion() 892 auto make_writable = [&](decltype(writable_memory_)::iterator insert_pos, in InsertIntoWritableRegions() 908 if (insert_pos != writable_memory_.begin()) { in InsertIntoWritableRegions() 909 auto previous = insert_pos; in InsertIntoWritableRegions() [all …]
|
/third_party/gstreamer/gstreamer/libs/gst/base/ |
D | gsttypefindhelper.c | 87 GSList *insert_pos = NULL; local 138 insert_pos = walk; 199 if (insert_pos) { 200 helper->buffers = g_slist_insert_before (helper->buffers, insert_pos, bmap);
|
/third_party/mesa3d/src/gallium/drivers/r300/compiler/ |
D | radeon_compiler.c | 146 struct rc_instruction * insert_pos = c->Program.Instructions.Prev; in rc_copy_output() local 163 insert_pos = inst; in rc_copy_output() 172 insert_pos = inst; in rc_copy_output() 195 inst = rc_insert_new_instruction(c, insert_pos); in rc_copy_output()
|
/third_party/json/include/nlohmann/ |
D | json.hpp | 3263 auto insert_pos = std::distance(m_value.array->begin(), pos.m_it.array_iterator); in insert_iterator() local 3265 result.m_it.array_iterator = m_value.array->begin() + insert_pos; in insert_iterator()
|