Searched refs:copyLength (Results 1 - 8 of 8) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/ |
H A D | tagged_array.cpp | 81 const JSHandle<TaggedArray> &second, uint32_t copyLength) in AppendSkipHole() 85 ASSERT(firstLength + secondLength >= copyLength); in AppendSkipHole() 88 JSHandle<TaggedArray> argument = factory->NewTaggedArray(copyLength); in AppendSkipHole() 96 ASSERT(copyLength >= index); in AppendSkipHole() 104 ASSERT(copyLength >= index); in AppendSkipHole() 80 AppendSkipHole(const JSThread *thread, const JSHandle<TaggedArray> &first, const JSHandle<TaggedArray> &second, uint32_t copyLength) AppendSkipHole() argument
|
H A D | js_typed_array.cpp | 305 uint32_t copyLength = 0; in OwnPropertyKeys() local 311 nameList->Set(thread, copyLength, sKey.GetTaggedValue()); in OwnPropertyKeys() 312 copyLength++; in OwnPropertyKeys() 321 nameList->Set(thread, copyLength, key); in OwnPropertyKeys() 322 copyLength++; in OwnPropertyKeys() 331 nameList->Set(thread, copyLength, key); in OwnPropertyKeys() 332 copyLength++; in OwnPropertyKeys() 337 return factory->CopyArray(nameList, length, copyLength); in OwnPropertyKeys() 356 uint32_t copyLength = 0; in OwnEnumPropertyKeys() local 359 nameList->Set(thread, copyLength, ke in OwnEnumPropertyKeys() [all...] |
H A D | tagged_array.h | 55 const JSHandle<TaggedArray> &second, uint32_t copyLength);
|
H A D | tagged_hash_table.h | 72 int copyLength = Derived::GetEntryIndex(table->Size()); in GrowHashTable() local 74 JSHandle<Derived>(thread->GetEcmaVM()->GetFactory()->NewSDictionaryArray(copyLength)) : in GrowHashTable() 75 JSHandle<Derived>(thread->GetEcmaVM()->GetFactory()->NewDictionaryArray(copyLength)); in GrowHashTable()
|
H A D | js_object.cpp | 1982 uint32_t copyLength = 0; in EnumerableOwnNames() local 1998 names->Set(thread, copyLength, keyHandle); in EnumerableOwnNames() 1999 copyLength++; in EnumerableOwnNames() 2004 return factory->CopyArray(names, length, copyLength); in EnumerableOwnNames()
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
H A D | builtins_object.cpp | 465 uint32_t copyLength = 0; in GetOwnPropertyKeys() local 471 nameList->Set(thread, copyLength, key); in GetOwnPropertyKeys() 472 copyLength++; in GetOwnPropertyKeys() 481 nameList->Set(thread, copyLength, key); in GetOwnPropertyKeys() 482 copyLength++; in GetOwnPropertyKeys() 492 JSHandle<TaggedArray> resultList = factory->CopyArray(nameList, length, copyLength); in GetOwnPropertyKeys()
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | stub_builder.h | 992 GateRef AppendSkipHole(GateRef glue, GateRef first, GateRef second, GateRef copyLength);
|
H A D | stub_builder.cpp | 9209 GateRef StubBuilder::AppendSkipHole(GateRef glue, GateRef first, GateRef second, GateRef copyLength) in AppendSkipHole() argument 9222 GateRef array = newBuilder.NewTaggedArray(glue, copyLength); in AppendSkipHole()
|
Completed in 29 milliseconds