Home
last modified time | relevance | path

Searched refs:CopyArray (Results 1 – 25 of 36) sorted by relevance

12

/arkcompiler/ets_runtime/ecmascript/base/
Dsort_helper.cpp337 this->CopyArray(workArray, base1, tmpArray, 0, len1); in MergeLo()
346 this->CopyArray(workArray, base1, tmpArray, cursor1, len1); in MergeLo()
352 this->CopyArray(tmpArray, cursor1, workArray, dest, len1); in MergeLo()
356 this->CopyArray(workArray, cursor2, workArray, dest, len2); in MergeLo()
394 this->CopyArray(tmpArray, cursor1, workArray, dest, count1); in MergeLo()
410 this->CopyArray(workArray, cursor2, workArray, dest, count2); in MergeLo()
437 this->CopyArray(workArray, cursor2, workArray, dest, len2); in MergeLo()
443 this->CopyArray(tmpArray, cursor1, workArray, dest, len1); in MergeLo()
456 this->CopyArray(workArray, base2, tmpArray, 0, len2); in MergeHi()
465 this->CopyArray(tmpArray, 0, workArray, dest - (len2 - 1), len2); in MergeHi()
[all …]
Dsort_helper.h61 void CopyArray(JSHandle<TaggedArray> &src, int srcPos,
/arkcompiler/ets_runtime/ecmascript/
Dweak_vector.cpp61 …JSHandle<TaggedArray> newVec = factory->CopyArray(JSHandle<TaggedArray>(old), VectorToArrayIndex(o… in Grow()
132 …JSHandle<TaggedArray> newVec = factory->CopyArray(JSHandle<TaggedArray>(vec), oldLength, newLength… in Copy()
Dtagged_array.cpp152 JSHandle<TaggedArray> newArray = factory->CopyArray(array, oldLength, capa); in SetCapacity()
162 factory->CopyArray(array, oldLength, capa, JSTaggedValue::Hole(), MemSpaceType::OLD_SPACE); in SetCapacityInOldSpace()
Dvtable.cpp104 …JSHandle<TaggedArray> copyVtable = factory->CopyArray(JSHandle<TaggedArray>(vtable), length, lengt… in Copy()
Dtagged_list.h42 void CopyArray(const JSThread *thread, JSHandle<Derived> &taggedList);
Djs_array.cpp720 auto newArray = factory->CopyArray(arr, arr->GetLength(), arr->GetLength(), in CheckAndCopyArray()
726 auto newProps = factory->CopyArray(prop, prop->GetLength(), prop->GetLength(), in CheckAndCopyArray()
Djs_typed_array.cpp337 return factory->CopyArray(nameList, length, copyLength); in OwnPropertyKeys()
373 return factory->CopyArray(nameList, length, copyLength); in OwnEnumPropertyKeys()
Dtagged_list.cpp44 void TaggedList<Derived>::CopyArray(const JSThread *thread, JSHandle<Derived> &taggedList) in CopyArray() function in panda::ecmascript::TaggedList
99 taggedList->CopyArray(thread, list); in GrowCapacity()
/arkcompiler/ets_runtime/ecmascript/js_api/
Djs_api_lightweightset.cpp51 hashArray = thread->GetEcmaVM()->GetFactory()->CopyArray(hashArray, capacity, newCapacity); in Add()
52 … valueArray = thread->GetEcmaVM()->GetFactory()->CopyArray(valueArray, capacity, newCapacity); in Add()
166 hashArray = thread->GetEcmaVM()->GetFactory()->CopyArray(hashArray, capacity, newCapacity); in SizeCopy()
167 valueArray = thread->GetEcmaVM()->GetFactory()->CopyArray(valueArray, capacity, newCapacity); in SizeCopy()
489 auto newArray = factory->CopyArray(values, values->GetLength(), values->GetLength(), in CheckAndCopyValues()
Djs_api_stack.cpp91 thread->GetEcmaVM()->GetFactory()->CopyArray(oldElements, oldLength, newCapacity); in GrowCapacity()
Djs_api_vector.cpp91 thread->GetEcmaVM()->GetFactory()->CopyArray(elementData, oldCapacity, tempCapacity); in IncreaseCapacityTo()
367 thread->GetEcmaVM()->GetFactory()->CopyArray(elementData, oldCapacity, newCapacity); in GrowCapacity()
Djs_api_plain_array.cpp49 thread->GetEcmaVM()->GetFactory()->CopyArray(keyArray, capacity, newCapacity); in Add()
51 thread->GetEcmaVM()->GetFactory()->CopyArray(valueArray, capacity, newCapacity); in Add()
Djs_api_queue.cpp50 … newElements = thread->GetEcmaVM()->GetFactory()->CopyArray(oldElements, oldLength, newCapacity); in GrowCapacity()
Djs_api_lightweightmap.cpp417 JSHandle<TaggedArray> newArray = factory->CopyArray(oldArray, oldLength, newCapacity); in GrowCapacity()
Djs_api_arraylist.cpp387 thread->GetEcmaVM()->GetFactory()->CopyArray(oldElements, oldCapacity, newCapacity); in GrowCapacity()
/arkcompiler/runtime_core/compiler/tests/
Dvixl_exec_module.h144 void CopyArray(void *arr_data, T *array) in CopyArray() function
/arkcompiler/ets_runtime/ecmascript/shared_objects/
Djs_shared_array.cpp543 auto newArray = factory->CopyArray(arr, arr->GetLength(), arr->GetLength(), in CheckAndCopyArray()
549 auto newProps = factory->CopyArray(prop, prop->GetLength(), prop->GetLength(), in CheckAndCopyArray()
/arkcompiler/runtime_core/static_core/compiler/tests/
Dvixl_exec_module.h153 void CopyArray(void *arrData, T *array) in CopyArray() function
/arkcompiler/ets_runtime/ecmascript/compiler/
Dnew_object_stub_builder.h72 GateRef CopyArray(GateRef glue, GateRef elements, GateRef oldLen, GateRef newLen);
/arkcompiler/runtime_core/static_core/compiler/tests/codegen/
Dcodegen_test_1.cpp176 GetExecModule().CopyArray(param1, arrayData); in CheckStoreArray()
249 GetExecModule().CopyArray(param1, arrayData); in CheckLoadArray()
331 GetExecModule().CopyArray(param1, arrayData); in CheckStoreArrayPair()
663 GetExecModule().CopyArray(param1, array); in TEST_F()
1430 GetExecModule().CopyArray(param1, array); in TEST_F()
/arkcompiler/ets_runtime/ecmascript/compiler/pgo_type/
Dpgo_type_manager.cpp157 auto cloneResult = factory->CopyArray(array, array->GetLength(), array->GetLength()); in GenHClassInfo()
/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stub_list.h220 V(CopyArray) \
/arkcompiler/ets_runtime/
Dlibark_jsruntime.map276 panda::ecmascript::ObjectFactory::CopyArray*;
/arkcompiler/ets_runtime/ecmascript/containers/
Dcontainers_lightweightset.cpp537 auto newElements = factory->CopyArray(srcArray, srcArray->GetLength(), srcArray->GetLength(), in ToArray()

12