Searched refs:inlinedProps (Results 1 – 5 of 5) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/ |
D | object_factory.h | 630 … 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);
|
D | js_hclass.cpp | 128 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()
|
D | object_factory.cpp | 187 …> 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()
|
D | js_hclass.h | 338 void Initialize(const JSThread *thread, uint32_t size, JSType type, uint32_t inlinedProps,
|
/arkcompiler/ets_runtime/ecmascript/stubs/ |
D | runtime_stubs.cpp | 324 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()
|