Home
last modified time | relevance | path

Searched refs:curIndex (Results 1 - 11 of 11) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/tests/
H A Dglue_regs_test.cpp39 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 Dcontainers_deque_stub_builder.h47 GateRef curIndex = Int32Mod(Int32Add(first, index), capacity); in Get() local
48 return GetValueFromTaggedArray(elements, curIndex); in Get()
H A Dcontainers_queue_stub_builder.h68 GateRef curIndex = Int32Mod(Int32Add(front, index), capacity); in Get() local
69 return GetValueFromTaggedArray(elements, curIndex); in Get()
H A Dbuiltins_typedarray_stub_builder.cpp664 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 Djs_api_deque.cpp162 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 Djs_api_queue.cpp115 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 Dreg_alloc_graph_coloring.cpp184 unsigned curIndex = walked.back(); in WalkNodes() local
190 if (tryNode.HasBias() || !ig->HasAffinityEdge(curIndex, tryIndex)) { in WalkNodes()
/arkcompiler/ets_runtime/ecmascript/builtins/
H A Dbuiltins_shared_array.cpp1172 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 Dbuiltins_array.cpp1259 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 Dobject_factory.cpp4406 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 Dbytecode_circuit_builder.cpp359 auto curIndex = regionsInfo_.FindBBIndexByBcIndex(item.startBcIndex); in BuildRegions() local
360 auto &curBlock = GetBasicBlockById(curIndex); in BuildRegions()

Completed in 40 milliseconds