| /arkcompiler/ets_runtime/ecmascript/base/ |
| D | sort_helper.cpp | 337 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 …]
|
| D | sort_helper.h | 61 void CopyArray(JSHandle<TaggedArray> &src, int srcPos,
|
| /arkcompiler/ets_runtime/ecmascript/ |
| D | weak_vector.cpp | 61 …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()
|
| D | tagged_array.cpp | 152 JSHandle<TaggedArray> newArray = factory->CopyArray(array, oldLength, capa); in SetCapacity() 162 factory->CopyArray(array, oldLength, capa, JSTaggedValue::Hole(), MemSpaceType::OLD_SPACE); in SetCapacityInOldSpace()
|
| D | vtable.cpp | 104 …JSHandle<TaggedArray> copyVtable = factory->CopyArray(JSHandle<TaggedArray>(vtable), length, lengt… in Copy()
|
| D | tagged_list.h | 42 void CopyArray(const JSThread *thread, JSHandle<Derived> &taggedList);
|
| D | js_array.cpp | 720 auto newArray = factory->CopyArray(arr, arr->GetLength(), arr->GetLength(), in CheckAndCopyArray() 726 auto newProps = factory->CopyArray(prop, prop->GetLength(), prop->GetLength(), in CheckAndCopyArray()
|
| D | js_typed_array.cpp | 337 return factory->CopyArray(nameList, length, copyLength); in OwnPropertyKeys() 373 return factory->CopyArray(nameList, length, copyLength); in OwnEnumPropertyKeys()
|
| D | tagged_list.cpp | 44 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/ |
| D | js_api_lightweightset.cpp | 51 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()
|
| D | js_api_stack.cpp | 91 thread->GetEcmaVM()->GetFactory()->CopyArray(oldElements, oldLength, newCapacity); in GrowCapacity()
|
| D | js_api_vector.cpp | 91 thread->GetEcmaVM()->GetFactory()->CopyArray(elementData, oldCapacity, tempCapacity); in IncreaseCapacityTo() 367 thread->GetEcmaVM()->GetFactory()->CopyArray(elementData, oldCapacity, newCapacity); in GrowCapacity()
|
| D | js_api_plain_array.cpp | 49 thread->GetEcmaVM()->GetFactory()->CopyArray(keyArray, capacity, newCapacity); in Add() 51 thread->GetEcmaVM()->GetFactory()->CopyArray(valueArray, capacity, newCapacity); in Add()
|
| D | js_api_queue.cpp | 50 … newElements = thread->GetEcmaVM()->GetFactory()->CopyArray(oldElements, oldLength, newCapacity); in GrowCapacity()
|
| D | js_api_lightweightmap.cpp | 417 JSHandle<TaggedArray> newArray = factory->CopyArray(oldArray, oldLength, newCapacity); in GrowCapacity()
|
| D | js_api_arraylist.cpp | 387 thread->GetEcmaVM()->GetFactory()->CopyArray(oldElements, oldCapacity, newCapacity); in GrowCapacity()
|
| /arkcompiler/runtime_core/compiler/tests/ |
| D | vixl_exec_module.h | 144 void CopyArray(void *arr_data, T *array) in CopyArray() function
|
| /arkcompiler/ets_runtime/ecmascript/shared_objects/ |
| D | js_shared_array.cpp | 543 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/ |
| D | vixl_exec_module.h | 153 void CopyArray(void *arrData, T *array) in CopyArray() function
|
| /arkcompiler/ets_runtime/ecmascript/compiler/ |
| D | new_object_stub_builder.h | 72 GateRef CopyArray(GateRef glue, GateRef elements, GateRef oldLen, GateRef newLen);
|
| /arkcompiler/runtime_core/static_core/compiler/tests/codegen/ |
| D | codegen_test_1.cpp | 176 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/ |
| D | pgo_type_manager.cpp | 157 auto cloneResult = factory->CopyArray(array, array->GetLength(), array->GetLength()); in GenHClassInfo()
|
| /arkcompiler/ets_runtime/ecmascript/stubs/ |
| D | runtime_stub_list.h | 220 V(CopyArray) \
|
| /arkcompiler/ets_runtime/ |
| D | libark_jsruntime.map | 276 panda::ecmascript::ObjectFactory::CopyArray*;
|
| /arkcompiler/ets_runtime/ecmascript/containers/ |
| D | containers_lightweightset.cpp | 537 auto newElements = factory->CopyArray(srcArray, srcArray->GetLength(), srcArray->GetLength(), in ToArray()
|