Searched refs:kType (Results 1 – 11 of 11) sorted by relevance
/art/runtime/mirror/ |
D | object.h | 349 template<typename kType, bool kIsVolatile> 350 ALWAYS_INLINE void SetFieldPrimitive(MemberOffset field_offset, kType new_value) in SetFieldPrimitive() 353 kType* addr = reinterpret_cast<kType*>(raw_addr); in SetFieldPrimitive() 355 reinterpret_cast<Atomic<kType>*>(addr)->store(new_value, std::memory_order_seq_cst); in SetFieldPrimitive() 357 reinterpret_cast<Atomic<kType>*>(addr)->StoreJavaData(new_value); in SetFieldPrimitive() 361 template<typename kType, bool kIsVolatile> 362 ALWAYS_INLINE kType GetFieldPrimitive(MemberOffset field_offset) in GetFieldPrimitive() 365 const kType* addr = reinterpret_cast<const kType*>(raw_addr); in GetFieldPrimitive() 367 return reinterpret_cast<const Atomic<kType>*>(addr)->load(std::memory_order_seq_cst); in GetFieldPrimitive() 369 return reinterpret_cast<const Atomic<kType>*>(addr)->LoadJavaData(); in GetFieldPrimitive() [all …]
|
D | object-inl.h | 196 template<VerifyObjectFlags kVerifyFlags, Primitive::Type kType> 204 component_type->GetPrimitiveType<kNewFlags>() == kType; in IsSpecificPrimitiveArray()
|
/art/libdexfile/dex/ |
D | dex_file_verifier.h | 131 template <DexFile::MapItemType kType> 133 template <DexFile::MapItemType kType> 135 template <DexFile::MapItemType kType>
|
D | descriptors_names.cc | 293 template<ClassNameType kType, char kSeparator> 306 ClassNameType type = kType; in IsValidClassName()
|
D | dex_file_verifier.cc | 1045 case EncodedArrayValueIterator::ValueType::kType: in CheckStaticFieldTypes() 1735 template <DexFile::MapItemType kType> 1739 switch (kType) { in CheckIntraSectionIterate() 1757 if (!CheckPadding(offset, aligned_offset, kType)) { in CheckIntraSectionIterate() 1763 switch (kType) { in CheckIntraSectionIterate() 1892 ErrorStringPrintf("Unknown map item type %x", kType); in CheckIntraSectionIterate() 1896 if (IsDataSectionType(kType)) { in CheckIntraSectionIterate() 1902 offset_to_type_map_.insert(std::pair<uint32_t, uint16_t>(aligned_offset, kType)); in CheckIntraSectionIterate() 1917 template <DexFile::MapItemType kType> 1923 switch (kType) { in CheckIntraIdSection() [all …]
|
D | dex_file.cc | 646 case kType: in Next()
|
D | dex_file.h | 936 kType = 0x18, enumerator
|
/art/runtime/interpreter/ |
D | interpreter_common.cc | 944 case EncodedArrayValueIterator::ValueType::kType: in GetClassForBootstrapArgument() 1010 case EncodedArrayValueIterator::ValueType::kType: { in GetArgumentForBootstrapMethod() 1061 case EncodedArrayValueIterator::ValueType::kType: in PackArgumentForBootstrapMethod()
|
/art/dexdump/ |
D | dexdump.cc | 1757 case EncodedArrayValueIterator::ValueType::kType: { in dumpCallSite()
|
/art/runtime/dex/ |
D | dex_file_annotations.cc | 1802 case kType: { in ReadValueToField()
|
/art/compiler/optimizing/ |
D | instruction_builder.cc | 1177 case EncodedArrayValueIterator::ValueType::kType: in HasTrivialClinit()
|