/external/angle/third_party/spirv-tools/src/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()
|
/external/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()
|
/external/deqp-deps/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()
|
/external/mesa3d/src/gallium/drivers/lima/ir/pp/ |
D | scheduler.c | 101 struct list_head *insert_pos = ready_list; in ppir_insert_ready_list() local 109 insert_pos = &instr->list; in ppir_insert_ready_list() 115 list_addtail(&insert_instr->list, insert_pos); in ppir_insert_ready_list()
|
/external/mesa3d/src/gallium/drivers/lima/ir/gp/ |
D | reduce_scheduler.c | 107 struct list_head *insert_pos = ready_list; in schedule_insert_ready_list() local 120 insert_pos = &node->list; in schedule_insert_ready_list() 128 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()
|
/external/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()
|
/external/deqp-deps/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()
|
/external/angle/third_party/spirv-tools/src/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()
|
/external/python/cpython2/Lib/lib2to3/ |
D | fixer_util.py | 308 insert_pos = offset = 0 315 insert_pos = idx + offset 320 if insert_pos == 0: 324 insert_pos = idx + 1 336 root.insert_child(insert_pos, Node(syms.simple_stmt, children))
|
/external/python/cpython3/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))
|
/external/mesa3d/src/compiler/glsl/ |
D | lower_named_interface_blocks.cpp | 151 exec_node *insert_pos = var; in run() local 203 insert_pos->insert_after(new_var); in run() 204 insert_pos = new_var; in run()
|
/external/v8/src/wasm/ |
D | wasm-debug.cc | 1116 int insert_pos = in AddBreakpointToInfo() local 1121 if (insert_pos < breakpoint_infos->length() && in AddBreakpointToInfo() 1122 GetBreakpointPos(isolate, breakpoint_infos->get(insert_pos)) == in AddBreakpointToInfo() 1125 BreakPointInfo::cast(breakpoint_infos->get(insert_pos)), isolate); in AddBreakpointToInfo() 1139 for (int i = 0; i < insert_pos; ++i) in AddBreakpointToInfo() 1144 for (int i = breakpoint_infos->length() - 1; i >= insert_pos; --i) { in AddBreakpointToInfo() 1156 new_breakpoint_infos->set(insert_pos, *breakpoint_info); in AddBreakpointToInfo() 1235 int insert_pos = in CheckBreakPoints() local 1237 if (insert_pos >= breakpoint_infos->length()) return {}; in CheckBreakPoints() 1239 Handle<Object> maybe_breakpoint_info(breakpoint_infos->get(insert_pos), in CheckBreakPoints()
|
D | wasm-code-manager.cc | 79 auto insert_pos = regions_.erase(above); in Merge() local 80 regions_.insert(insert_pos, merged_region); in Merge() 129 auto insert_pos = regions_.erase(it); in AllocateInRegion() local 134 regions_.insert(insert_pos, {old.begin() + size, old.size() - size}); in AllocateInRegion() 137 regions_.insert(insert_pos, {old.begin(), old.size() - size}); in AllocateInRegion() 141 regions_.insert(insert_pos, {old.begin(), ret.begin() - old.begin()}); in AllocateInRegion() 142 regions_.insert(insert_pos, {ret.end(), old.end() - ret.end()}); in AllocateInRegion()
|