Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/
Dobject_factory.h630 … uint32_t inlinedProps = JSHClass::DEFAULT_CAPACITY_OF_IN_OBJECTS);
656 … uint32_t inlinedProps = JSHClass::DEFAULT_CAPACITY_OF_IN_OBJECTS);
661 … uint32_t inlinedProps = JSHClass::DEFAULT_CAPACITY_OF_IN_OBJECTS);
Djs_hclass.cpp128 void JSHClass::Initialize(const JSThread *thread, uint32_t size, JSType type, uint32_t inlinedProps, in Initialize() argument
134 SetObjectSize(size + inlinedProps * JSTaggedValue::TaggedTypeSize()); in Initialize()
Dobject_factory.cpp187 …> ObjectFactory::NewEcmaHClass(JSHClass *hclass, uint32_t size, JSType type, uint32_t inlinedProps) in NewEcmaHClass() argument
192 newClass->Initialize(thread_, size, type, inlinedProps); in NewEcmaHClass()
198 uint32_t inlinedProps) in NewEcmaReadOnlyHClass() argument
203 newClass->Initialize(thread_, size, type, inlinedProps); in NewEcmaReadOnlyHClass()
208 JSHandle<JSHClass> ObjectFactory::NewEcmaHClass(uint32_t size, JSType type, uint32_t inlinedProps) in NewEcmaHClass() argument
211 size, type, inlinedProps); in NewEcmaHClass()
Djs_hclass.h338 void Initialize(const JSThread *thread, uint32_t size, JSType type, uint32_t inlinedProps,
/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stubs.cpp324 JSTaggedValue inlinedProps = GetArg(argv, argc, 2); // 2: means the second parameter in DEF_RUNTIME_STUBS() local
326 size.GetInt(), JSType(type.GetInt()), inlinedProps.GetInt())).GetTaggedValue().GetRawData(); in DEF_RUNTIME_STUBS()