Home
last modified time | relevance | path

Searched refs:kType (Results 1 – 11 of 11) sorted by relevance

/art/runtime/mirror/
Dobject.h349 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 …]
Dobject-inl.h196 template<VerifyObjectFlags kVerifyFlags, Primitive::Type kType>
204 component_type->GetPrimitiveType<kNewFlags>() == kType; in IsSpecificPrimitiveArray()
/art/libdexfile/dex/
Ddex_file_verifier.h131 template <DexFile::MapItemType kType>
133 template <DexFile::MapItemType kType>
135 template <DexFile::MapItemType kType>
Ddescriptors_names.cc293 template<ClassNameType kType, char kSeparator>
306 ClassNameType type = kType; in IsValidClassName()
Ddex_file_verifier.cc1045 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 …]
Ddex_file.cc646 case kType: in Next()
Ddex_file.h936 kType = 0x18, enumerator
/art/runtime/interpreter/
Dinterpreter_common.cc944 case EncodedArrayValueIterator::ValueType::kType: in GetClassForBootstrapArgument()
1010 case EncodedArrayValueIterator::ValueType::kType: { in GetArgumentForBootstrapMethod()
1061 case EncodedArrayValueIterator::ValueType::kType: in PackArgumentForBootstrapMethod()
/art/dexdump/
Ddexdump.cc1757 case EncodedArrayValueIterator::ValueType::kType: { in dumpCallSite()
/art/runtime/dex/
Ddex_file_annotations.cc1802 case kType: { in ReadValueToField()
/art/compiler/optimizing/
Dinstruction_builder.cc1177 case EncodedArrayValueIterator::ValueType::kType: in HasTrivialClinit()