Searched defs:newLength (Results 1 – 13 of 13) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/ |
D | tagged_array.h | 81 static inline bool ShouldTrim(uint32_t oldLength, uint32_t newLength) in ShouldTrim()
|
D | vtable.cpp | 68 void VTable::Trim(const JSThread *thread, uint32_t newLength) in Trim()
|
D | weak_vector.cpp | 124 uint32_t newLength = VectorToArrayIndex(capacity); in Copy() local
|
D | tagged_array-inl.h | 242 void TaggedArray::Trim(const JSThread *thread, uint32_t newLength) in Trim()
|
D | object_factory.cpp | 413 uint32_t newLength = old->GetLength(); in CloneProperties() local 515 uint32_t newLength = old->GetLength(); in CloneProperties() local 2188 uint32_t newLength, in NewAndCopyTaggedArray() 2370 uint32_t newLength = end - start; in CopyPartArray() local 2392 … ObjectFactory::CopyArray(const JSHandle<TaggedArray> &old, uint32_t oldLength, uint32_t newLength, in CopyArray() 2455 uint32_t newLength = old->GetLength(); in CopyLayoutInfo() local 3644 JSHandle<TaggedArray> ObjectFactory::CopyDeque(const JSHandle<TaggedArray> &old, uint32_t newLength, in CopyDeque() 3682 JSHandle<TaggedArray> ObjectFactory::CopyQueue(const JSHandle<TaggedArray> &old, uint32_t newLength, in CopyQueue()
|
D | js_stable_array.cpp | 39 uint32_t newLength = argc + oldLength; in Push() local
|
D | ecma_string.cpp | 32 uint32_t newLength = leftLength + rightLength; in Concat() local
|
D | js_bigint.cpp | 374 uint32_t newLength = bigintLength; in BitwiseAddOne() local
|
/arkcompiler/ets_runtime/ecmascript/js_api/ |
D | js_api_vector.cpp | 227 int32_t newLength = length - (endIndex - fromIndex); in RemoveByRange() local 247 uint32_t newLength = static_cast<uint32_t>(toIndex - fromIndex); in SubVector() local
|
D | js_api_arraylist.cpp | 245 int32_t newLength = length - (endIndex - startIndex); in RemoveByRange() local 316 int newLength = toIndex == length ? length - fromIndex : endIndex - fromIndex; in SubArrayList() local
|
/arkcompiler/ets_runtime/ecmascript/base/ |
D | typed_array_helper.cpp | 327 uint64_t newLength = 0; in CreateFromArrayBuffer() local
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
D | js_api_arraylist_test.cpp | 537 int newLength = static_cast<int>(newSubArrayList->GetLength().GetArrayLength()); in HWTEST_F_L0() local
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
D | builtins_typedarray.cpp | 1504 uint32_t newLength = endIndex > beginIndex ? (endIndex - beginIndex) : 0; in Subarray() local
|