/arkcompiler/runtime_core/static_core/runtime/ |
H A D | field.cpp | 50 case panda_file::Type::TypeId::U16: in ResolveTypeClass() 51 return ext->GetClassRoot(ClassRoot::U16); in ResolveTypeClass()
|
/arkcompiler/runtime_core/assembler/ |
H A D | annotation.h | 83 U16, member in panda::pandasm::Value::Type 119 case Type::U16: in GetTypeAsChar() 193 case Type::U16: in GetArrayTypeAsChar() 256 type = Type::U16; in GetCharAsType() 330 type = Type::U16; in GetCharAsArrayType() 422 std::conditional_t<value_type == Value::Type::U16, uint16_t,
|
H A D | annotation.cpp | 32 case Value::Type::U16: { in InitScalarValue() 34 std::make_unique<ScalarValue>(ScalarValue::Create<Value::Type::U16>(sc_val.GetValue<uint16_t>())); in InitScalarValue() 120 case Value::Type::U16: in making_value() 216 case Value::Type::U16: in TypeToString()
|
H A D | define.h | 30 _("u16", U16) \
|
H A D | assembly-type.h | 113 type_id_ == panda_file::Type::TypeId::I8 || type_id_ == panda_file::Type::TypeId::U16 || in IsIntegral() 122 type_id_ == panda_file::Type::TypeId::I8 || type_id_ == panda_file::Type::TypeId::U16 || in FitsInto32()
|
H A D | meta.cpp | 53 {"i16", VType::I16}, {"u16", VType::U16}, {"i32", VType::I32}, in GetType() 165 case Value::Type::U16: { 166 return CreatePrimitiveValue<Value::Type::U16>(value);
|
/arkcompiler/runtime_core/static_core/assembler/ |
H A D | annotation.h | 79 U16, member in ark::pandasm::Value::Type 115 case Type::U16: in GetTypeAsChar() 187 case Type::U16: in GetArrayTypeAsChar() 251 type = Type::U16; in GetCharAsType() 323 type = Type::U16; in GetCharAsArrayType() 412 std::conditional_t<VALUE_TYPE == Value::Type::U16, uint16_t,
|
H A D | annotation.cpp | 33 case Value::Type::U16: { in InitScalarValue() 34 copyVal = std::make_unique<ScalarValue>(ScalarValue::Create<Value::Type::U16>(scVal.GetValue<uint16_t>())); in InitScalarValue() 113 case Value::Type::U16: in MakingValue() 208 case Value::Type::U16: in TypeToString()
|
H A D | define.h | 32 _("u16", U16) \
|
H A D | assembly-type.h | 114 typeId_ == panda_file::Type::TypeId::I8 || typeId_ == panda_file::Type::TypeId::U16 || in IsIntegral() 123 typeId_ == panda_file::Type::TypeId::I8 || typeId_ == panda_file::Type::TypeId::U16 || in FitsInto32()
|
H A D | assembly-literals.h | 195 case panda_file::Type::TypeId::U16: in GetArrayTagFromComponentType() 223 case panda_file::Type::TypeId::U16: in GetLiteralTagFromComponentType()
|
/arkcompiler/runtime_core/static_core/runtime/core/ |
H A D | core_class_linker_extension.cpp | 66 InitializePrimitiveClassRoot(ClassRoot::U16, Type::TypeId::U16, "C"); in InitializeClassRoots() 79 InitializeArrayClassRoot(ClassRoot::ARRAY_U16, ClassRoot::U16, "[C"); in InitializeClassRoots() 163 case ClassRoot::U16: in GetClassVTableSize() 208 case ClassRoot::U16: in GetClassIMTSize() 253 case ClassRoot::U16: in GetClassSize()
|
/arkcompiler/runtime_core/static_core/runtime/include/ |
H A D | class_root.h | 26 U16, member in ark::ClassRoot
|
H A D | typed_value.h | 67 static TypedValue U16(uint16_t value) in U16() function in ark::TypedValue 152 return GetType() == panda_file::Type::TypeId::U16; in IsU16()
|
/arkcompiler/runtime_core/static_core/runtime/tooling/ |
H A D | default_inspector_extension.cpp | 41 case panda_file::Type::TypeId::U16: in GetArrayElementValueStatic() 42 return TypedValue::U16(array.GetPrimitive<uint16_t>(offset)); in GetArrayElementValueStatic() 80 case panda_file::Type::TypeId::U16: in GetFieldValueStatic() 81 return TypedValue::U16(object->template GetFieldPrimitive<uint16_t>(field.GetOffset())); in GetFieldValueStatic()
|
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/types/ |
H A D | ets_type.h | 51 case panda_file::Type::TypeId::U16: in ConvertPandaTypeToEtsType() 83 return panda_file::Type(panda_file::Type::TypeId::U16); in ConvertEtsTypeToPandaType()
|
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/ |
H A D | ets_class_linker_extension.cpp | 98 InitializePrimitiveClassRoot(ClassRoot::U16, panda_file::Type::TypeId::U16, "C"); in InitializeClassRoots() 111 InitializeArrayClassRoot(ClassRoot::ARRAY_U16, ClassRoot::U16, "[C"); in InitializeClassRoots() 228 case ClassRoot::U16: in GetClassVTableSize() 276 case ClassRoot::U16: in GetClassIMTSize() 323 case ClassRoot::U16: in GetClassSize()
|
H A D | ets_class_root.cpp | 30 case ClassRoot::U16: in ToEtsClassRoot()
|
H A D | ets_class_root.h | 28 CHAR = helpers::ToUnderlying(ClassRoot::U16),
|
/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/tests/ |
H A D | object_repository.cpp | 138 auto numObj = obj.CreateObject(TypedValue::U16(U16_VALUE)); in TEST_F() 159 locals.emplace("a", TypedValue::U16(56U)); in TEST_F() 192 locals.emplace("a", TypedValue::U16(56U)); in TEST_F()
|
/arkcompiler/runtime_core/static_core/runtime/tests/ |
H A D | invokation_helper.cpp | 34 case panda_file::Type::TypeId::U16: in CountMethodTypes()
|
/arkcompiler/runtime_core/static_core/verification/absint/tests/ |
H A D | reg_context_test.cpp | 45 auto u16 = Type {Builtin::U16}; in TEST_F()
|
/arkcompiler/runtime_core/static_core/verification/value/tests/ |
H A D | abstract_typed_value_test.cpp | 44 auto u16 = Type {Builtin::U16}; in TEST_F()
|
/arkcompiler/runtime_core/assembler/tests/ |
H A D | annotation_test.cpp | 90 type_u1 = Value::GetTypeAsChar(panda::pandasm::Value::Type::U16); in HWTEST_F() 178 type_u1 = Value::GetArrayTypeAsChar(panda::pandasm::Value::Type::U16); in HWTEST_F() 255 EXPECT_EQ(panda::pandasm::Value::Type::U16, type); in HWTEST_F() 318 EXPECT_EQ(panda::pandasm::Value::Type::U16, type); in HWTEST_F() 385 type_u1 = AnnotationElement::TypeToString(panda::pandasm::Value::Type::U16); in HWTEST_F() 457 ScalarValue insn_order_u16(ScalarValue::Create<panda::pandasm::Value::Type::U16>(1U)); in HWTEST_F()
|
/arkcompiler/runtime_core/static_core/verification/type/ |
H A D | type_type.cpp | 81 Bitmap({Builtin::U16, Builtin::I16, Builtin::INTEGRAL8}), /* u8 */ 105 Bitmap({Builtin::U1, Builtin::I8, Builtin::U8, Builtin::I16, Builtin::U16, Builtin::I32, Builtin::U32, Builtin::F32, 340 case Builtin::U16: in ToTypeId() 341 return TypeId::U16; in ToTypeId() 401 case TypeId::U16: in FromTypeId() 402 return Type {Builtin::U16}; in FromTypeId()
|