/third_party/spirv-tools/source/opt/ |
H A D | fold_spec_constant_op_and_composite_pass.cpp | 185 Instruction* insert_pos = (*inst_iter_ptr)->PreviousNode(); in FoldWithInstructionFolder() 186 assert(insert_pos != nullptr && in FoldWithInstructionFolder() 194 i->InsertAfter(insert_pos); in FoldWithInstructionFolder() 195 insert_pos = insert_pos->NextNode(); in FoldWithInstructionFolder() 201 new_const_inst->InsertAfter(insert_pos); in FoldWithInstructionFolder()
|
H A D | merge_return_pass.cpp | 350 Instruction* insert_pos = &*merge_block->begin(); in CreatePhiNodesForInst() local 351 while (insert_pos->opcode() == spv::Op::OpPhi) { in CreatePhiNodesForInst() 352 insert_pos = insert_pos->NextNode(); in CreatePhiNodesForInst() 354 new_phi = insert_pos->InsertBefore(std::move(regen_inst)); in CreatePhiNodesForInst()
|
H A D | debug_info_manager.h | 147 // |variable_id| and inserts it after the instruction |insert_pos|. 151 Instruction* insert_pos);
|
H A D | debug_info_manager.cpp | 564 Instruction* insert_pos) { in AddDebugValueForVariable() 574 Instruction* insert_before = insert_pos->NextNode(); in AddDebugValueForVariable() 561 AddDebugValueForVariable(Instruction* scope_and_line, uint32_t variable_id, uint32_t value_id, Instruction* insert_pos) AddDebugValueForVariable() argument
|
/third_party/mesa3d/src/gallium/drivers/lima/ir/pp/ |
H A 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/skia/third_party/externals/spirv-tools/source/opt/ |
H A 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()
|
H A 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()
|
H A D | debug_info_manager.h | 146 // |variable_id| and inserts it after the instruction |insert_pos|. 151 Instruction* insert_pos,
|
H A D | debug_info_manager.cpp | 551 Instruction* insert_pos, in AddDebugValueIfVarDeclIsVisible() 567 Instruction* insert_before = insert_pos->NextNode(); in AddDebugValueIfVarDeclIsVisible() 549 AddDebugValueIfVarDeclIsVisible( Instruction* scope_and_line, uint32_t variable_id, uint32_t value_id, Instruction* insert_pos, std::unordered_set<Instruction*>* invisible_decls) AddDebugValueIfVarDeclIsVisible() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
H A 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()
|
H A 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()
|
H A D | debug_info_manager.h | 146 // |variable_id| and inserts it after the instruction |insert_pos|. 151 Instruction* insert_pos,
|
H A D | debug_info_manager.cpp | 551 Instruction* insert_pos, in AddDebugValueIfVarDeclIsVisible() 567 Instruction* insert_before = insert_pos->NextNode(); in AddDebugValueIfVarDeclIsVisible() 549 AddDebugValueIfVarDeclIsVisible( Instruction* scope_and_line, uint32_t variable_id, uint32_t value_id, Instruction* insert_pos, std::unordered_set<Instruction*>* invisible_decls) AddDebugValueIfVarDeclIsVisible() argument
|
/third_party/skia/third_party/externals/spirv-tools/test/opt/ |
H A D | iterator_test.cpp | 176 const int insert_pos = 42; 177 expected.insert(expected.begin() + insert_pos, -100); 178 expected.insert(expected.begin() + insert_pos, -42); 181 for (int i = 0; i < insert_pos; ++i) ++it;
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/ |
H A D | iterator_test.cpp | 176 const int insert_pos = 42; 177 expected.insert(expected.begin() + insert_pos, -100); 178 expected.insert(expected.begin() + insert_pos, -42); 181 for (int i = 0; i < insert_pos; ++i) ++it;
|
/third_party/spirv-tools/test/opt/ |
H A D | iterator_test.cpp | 176 const int insert_pos = 42; 177 expected.insert(expected.begin() + insert_pos, -100); 178 expected.insert(expected.begin() + insert_pos, -42); 181 for (int i = 0; i < insert_pos; ++i) ++it;
|
/third_party/mesa3d/src/gallium/drivers/lima/ir/gp/ |
H A 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()
|
H A 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/python/Lib/lib2to3/ |
H A 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/ |
H A 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/ |
H A 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() 906 // Insert {region} into {writable_memory_} before {insert_pos}, potentially in InsertIntoWritableRegions() 908 if (insert_pos ! in InsertIntoWritableRegions() [all...] |
H A 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() 1128 // Copy over the entries [0, insert_pos). in AddBreakpointToInfo() 1129 for (int i = 0; i < insert_pos; ++i) in AddBreakpointToInfo() 1133 // Move elements [insert_pos, ...] up by one. in AddBreakpointToInfo() 1134 for (int i = breakpoint_infos->length() - 1; i >= insert_pos; --i) { in AddBreakpointToInfo() 1145 // Now insert new position at insert_pos. in AddBreakpointToInfo() 1146 new_breakpoint_infos->set(insert_pos, *breakpoint_inf in AddBreakpointToInfo() 1249 int insert_pos = CheckBreakPoints() local [all...] |
/third_party/mesa3d/src/gallium/drivers/r300/compiler/ |
H A 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/ |
H A 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()
|
/third_party/json/tests/abi/include/nlohmann/ |
H A D | json_v3_10_5.hpp | 20169 auto insert_pos = std::distance(m_value.array->begin(), pos.m_it.array_iterator); 20171 result.m_it.array_iterator = m_value.array->begin() + insert_pos;
|