Home
last modified time | relevance | path

Searched refs:insertion_pos (Results 1 – 7 of 7) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
Dif_conversion.cpp250 Instruction* insertion_pos = target_block->terminator(); in HoistInstruction() local
251 if ((insertion_pos)->PreviousNode()->opcode() == SpvOpSelectionMerge) { in HoistInstruction()
252 insertion_pos = insertion_pos->PreviousNode(); in HoistInstruction()
255 insertion_pos->InsertBefore(std::unique_ptr<Instruction>(inst)); in HoistInstruction()
Dcopy_prop_arrays.h156 Instruction* insertion_pos);
/third_party/skia/third_party/externals/spirv-tools/source/opt/
Dif_conversion.cpp250 Instruction* insertion_pos = target_block->terminator(); in HoistInstruction() local
251 if ((insertion_pos)->PreviousNode()->opcode() == SpvOpSelectionMerge) { in HoistInstruction()
252 insertion_pos = insertion_pos->PreviousNode(); in HoistInstruction()
255 insertion_pos->InsertBefore(std::unique_ptr<Instruction>(inst)); in HoistInstruction()
Dcopy_prop_arrays.h156 Instruction* insertion_pos);
/third_party/spirv-tools/source/opt/
Dif_conversion.cpp257 Instruction* insertion_pos = target_block->terminator(); in HoistInstruction() local
258 if ((insertion_pos)->PreviousNode()->opcode() == SpvOpSelectionMerge) { in HoistInstruction()
259 insertion_pos = insertion_pos->PreviousNode(); in HoistInstruction()
262 insertion_pos->InsertBefore(std::unique_ptr<Instruction>(inst)); in HoistInstruction()
Dcopy_prop_arrays.h178 Instruction* insertion_pos);
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-objects.c2486 uint32_t insertion_pos = 0; in ecma_op_object_get_property_names() local
2487 while (insertion_pos < array_index_name_pos in ecma_op_object_get_property_names()
2488 && index > ecma_string_get_array_index (names_p[insertion_pos])) in ecma_op_object_get_property_names()
2490 insertion_pos++; in ecma_op_object_get_property_names()
2493 if (insertion_pos == array_index_name_pos) in ecma_op_object_get_property_names()
2499 JERRY_ASSERT (insertion_pos < array_index_name_pos); in ecma_op_object_get_property_names()
2500 JERRY_ASSERT (index <= ecma_string_get_array_index (names_p[insertion_pos])); in ecma_op_object_get_property_names()
2504 while (move_pos > insertion_pos) in ecma_op_object_get_property_names()
2511 names_p[insertion_pos] = name_p; in ecma_op_object_get_property_names()