Home
last modified time | relevance | path

Searched refs:arraySize (Results 1 – 6 of 6) sorted by relevance

/arkcompiler/ets_runtime/test/aottest/early_elimination/
DMayAccessOneMemory.ts1 let arraySize: number = 3 variable
5 res[i % arraySize] = arr[i % 3];
6 res[i % arraySize] = arr[i % 3];
11 res[i % arraySize] = arr2[i % 3];
12 res[i % arraySize] = arr2[i % 3];
/arkcompiler/ets_runtime/ecmascript/tests/
Dglobal_dictionary_test.cpp237 int arraySize = numberofElements + static_cast<int>(offset); in HWTEST_F_L0() local
238 JSHandle<TaggedArray> keyArray = factory->NewTaggedArray(arraySize); in HWTEST_F_L0()
246 JSHandle<EcmaString> resultLastKey(thread, keyArray->Get(arraySize - 1)); in HWTEST_F_L0()
285 uint32_t arraySize = static_cast<uint32_t>(numberofElements) + offset; in HWTEST_F_L0() local
286 JSHandle<TaggedArray> keyArray = factory->NewTaggedArray(arraySize); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dntype_mcr_lowering.cpp130 size_t arraySize = arrayHC->GetObjectSize(); in NewJSArrayLiteral() local
142 …for (size_t offset = JSArray::SIZE; offset < arraySize; offset += JSTaggedValue::TaggedTypeSize())… in NewJSArrayLiteral()
Dntype_hcr_lowering.cpp196 uint32_t arraySize = acc_.GetArraySize(receiver); in LowerNTypedStownByIndex() local
197 acc_.SetArraySize(receiver, std::max(arraySize, indexValue + 1)); in LowerNTypedStownByIndex()
Dcircuit_builder.cpp1544 GateRef CircuitBuilder::CreateArray(size_t arraySize) in CreateArray() argument
1549 GateRef newGate = GetCircuit()->NewGate(circuit_->CreateArray(arraySize), MachineType::I64, in CreateArray()
1556 GateRef CircuitBuilder::CreateArrayWithBuffer(size_t arraySize, GateRef constPoolIndex, in CreateArrayWithBuffer() argument
1563 GateRef newGate = GetCircuit()->NewGate(circuit_->CreateArrayWithBuffer(arraySize), in CreateArrayWithBuffer()
Dcircuit_builder.h623 GateRef CreateArray(size_t arraySize);
624 GateRef CreateArrayWithBuffer(size_t arraySize, GateRef constPoolIndex, GateRef elementIndex);