Searched refs:curIndex (Results 1 - 11 of 11) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/tests/ |
H A D | glue_regs_test.cpp | 39 size_t curIndex = static_cast<size_t>(ConstantIndex::CONSTANT_BEGIN); in HWTEST_F_L0() local 42 if (curIndex != holeIndex) { in HWTEST_F_L0() 46 curIndex += 1; in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/ |
H A D | containers_deque_stub_builder.h | 47 GateRef curIndex = Int32Mod(Int32Add(first, index), capacity);
in Get() local 48 return GetValueFromTaggedArray(elements, curIndex);
in Get()
|
H A D | containers_queue_stub_builder.h | 68 GateRef curIndex = Int32Mod(Int32Add(front, index), capacity);
in Get() local 69 return GetValueFromTaggedArray(elements, curIndex);
in Get()
|
H A D | builtins_typedarray_stub_builder.cpp | 664 DEFVARIABLE(curIndex, VariableType::INT64(), *fromIndex);
in IndexOf() 666 BRANCH(Int64GreaterThanOrEqual(*curIndex, *thisArrLen), exit, &lessThanLength);
in IndexOf() 676 BRANCH(Int64LessThan(*curIndex, *thisArrLen), &loopNext, &loopExit);
in IndexOf() 680 TruncInt64ToInt32(*curIndex), GetObjectType(LoadHClass(thisValue)));
in IndexOf() 695 result->WriteVariable(IntToTaggedPtr(*curIndex));
in IndexOf() 702 curIndex = Int64Add(*curIndex, Int64(1));
in IndexOf()
|
/arkcompiler/ets_runtime/ecmascript/js_api/ |
H A D | js_api_deque.cpp | 162 uint32_t curIndex = (first + index) % capacity; in Get() local 163 return elements->Get(curIndex); in Get() 176 uint32_t curIndex = (first + index) % capacity; in Set() local 177 elements->Set(thread, curIndex, value); in Set()
|
H A D | js_api_queue.cpp | 115 uint32_t curIndex = (front + index) % capacity; in Get() local 116 return elements->Get(curIndex); in Get()
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/regalloc/ |
H A D | reg_alloc_graph_coloring.cpp | 184 unsigned curIndex = walked.back(); in WalkNodes() local 190 if (tryNode.HasBias() || !ig->HasAffinityEdge(curIndex, tryIndex)) { in WalkNodes()
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
H A D | builtins_shared_array.cpp | 1172 for (int64_t curIndex = fromIndex; curIndex < length; ++curIndex) { in IndexOfSlowPath() 1173 keyHandle.Update(JSTaggedValue(curIndex)); in IndexOfSlowPath() 1177 return JSTaggedValue(curIndex); in IndexOfSlowPath() 2552 for (int64_t curIndex = fromIndex; curIndex >= 0; --curIndex) { in LastIndexOfSlowPath() 2553 keyHandle.Update(JSTaggedValue(curIndex)); in LastIndexOfSlowPath() 2557 return JSTaggedValue(curIndex); in LastIndexOfSlowPath() [all...] |
H A D | builtins_array.cpp | 1259 for (int64_t curIndex = fromIndex; curIndex < length; ++curIndex) { in IndexOfSlowPath() 1260 keyHandle.Update(JSTaggedValue(curIndex)); in IndexOfSlowPath() 1264 return JSTaggedValue(curIndex); in IndexOfSlowPath() 1466 for (int64_t curIndex = fromIndex; curIndex >= 0; --curIndex) { in LastIndexOfSlowPath() 1467 keyHandle.Update(JSTaggedValue(curIndex)); in LastIndexOfSlowPath() 1471 return JSTaggedValue(curIndex); in LastIndexOfSlowPath() [all...] |
/arkcompiler/ets_runtime/ecmascript/ |
H A D | object_factory.cpp | 4406 uint32_t curIndex = first; in CopyDeque() local 4410 while (curIndex != last) { in CopyDeque() 4411 JSTaggedValue value = old->Get(curIndex); in CopyDeque() 4414 curIndex = (curIndex + 1) % oldCapacity; in CopyDeque() 4444 uint32_t curIndex = front; in CopyQueue() local 4448 while (curIndex != tail) { in CopyQueue() 4449 JSTaggedValue value = old->Get(curIndex); in CopyQueue() 4452 curIndex = (curIndex in CopyQueue() [all...] |
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | bytecode_circuit_builder.cpp | 359 auto curIndex = regionsInfo_.FindBBIndexByBcIndex(item.startBcIndex); in BuildRegions() local 360 auto &curBlock = GetBasicBlockById(curIndex); in BuildRegions()
|
Completed in 40 milliseconds