Home
last modified time | relevance | path

Searched refs:initValue (Results 1 – 5 of 5) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/aot_file/
Daot_file_manager.h64 …inline void InitializeWithSpecialValue(JSTaggedValue initValue, uint32_t capacity, uint32_t extraL…
66 TaggedArray::InitializeWithSpecialValue(initValue, capacity + RESERVED_LENGTH, extraLength);
/arkcompiler/ets_runtime/ecmascript/
Dtagged_array-inl.h140 void TaggedArray::InitializeWithSpecialValue(JSTaggedValue initValue, uint32_t length, uint32_t ext… in InitializeWithSpecialValue() argument
142 ASSERT(initValue.IsSpecial()); in InitializeWithSpecialValue()
147 Barriers::SetPrimitive<JSTaggedType>(GetData(), offset, initValue.GetRawData()); in InitializeWithSpecialValue()
Dtagged_array.h79 …inline void InitializeWithSpecialValue(JSTaggedValue initValue, uint32_t length, uint32_t extraLen…
/arkcompiler/ets_runtime/ecmascript/jspandafile/
Dprogram_object.h143 …inline void InitializeWithSpecialValue(JSTaggedValue initValue, uint32_t capacity, uint32_t extraL…
145 ASSERT(initValue.IsSpecial());
150 Barriers::SetPrimitive<JSTaggedType>(GetData(), offset, initValue.GetRawData());
/arkcompiler/ets_runtime/ecmascript/compiler/
Dnew_object_stub_builder.cpp94 DEFVARIABLE(initValue, VariableType::JS_ANY(), Undefined()); in NewJSObject()
102 initValue = Hole(); in NewJSObject()
108 result->ReadVariable(), *initValue, Int32(JSObject::SIZE), ChangeIntPtrToInt32(size_)); in NewJSObject()