Home
last modified time | relevance | path

Searched refs:type (Results 476 – 500 of 521) sorted by relevance

1...<<1112131415161718192021

/art/test/913-heaps/
Dheaps.cc721 static constexpr const char* GetPrimitiveTypeName(jvmtiPrimitiveType type) { in GetPrimitiveTypeName() argument
722 switch (type) { in GetPrimitiveTypeName()
740 LOG(FATAL) << "Unknown type " << static_cast<size_t>(type); in GetPrimitiveTypeName()
/art/runtime/gc/collector/
Dconcurrent_copying.cc2788 space::RegionSpace::RegionType type = region_space_->GetRegionTypeUnsafe(ref); in AssertToSpaceInvariant() local
2789 if (type == RegionType::kRegionTypeToSpace) { in AssertToSpaceInvariant()
2792 } else if (type == RegionType::kRegionTypeUnevacFromSpace) { in AssertToSpaceInvariant()
2803 if (type == RegionType::kRegionTypeFromSpace) { in AssertToSpaceInvariant()
2806 LOG(FATAL_WITHOUT_ABORT) << "Found reference in region with type " << type << ":"; in AssertToSpaceInvariant()
2894 space::RegionSpace::RegionType type = region_space_->GetRegionTypeUnsafe(ref); in AssertToSpaceInvariant() local
2895 if (type == RegionType::kRegionTypeToSpace) { in AssertToSpaceInvariant()
2898 } else if (type == RegionType::kRegionTypeUnevacFromSpace) { in AssertToSpaceInvariant()
2908 if (type == RegionType::kRegionTypeFromSpace) { in AssertToSpaceInvariant()
2911 LOG(FATAL_WITHOUT_ABORT) << "Found reference in region with type " << type << ":"; in AssertToSpaceInvariant()
/art/runtime/
Doat_file.h280 OatClassType type,
Dtransaction.cc657 Primitive::Type type = array->GetClass()->GetComponentType()->GetPrimitiveType(); in Undo() local
659 UndoArrayWrite(array, type, it.first, it.second); in Undo()
Druntime.cc1622 CalleeSaveType type = CalleeSaveType(i); in Init() local
1623 if (!HasCalleeSaveMethod(type)) { in Init()
1624 SetCalleeSaveMethod(CreateCalleeSaveMethod(), type); in Init()
2393 void Runtime::SetCalleeSaveMethod(ArtMethod* method, CalleeSaveType type) { in SetCalleeSaveMethod() argument
2394 DCHECK_LT(static_cast<uint32_t>(type), kCalleeSaveSize); in SetCalleeSaveMethod()
2396 callee_save_methods_[static_cast<size_t>(type)] = reinterpret_cast<uintptr_t>(method); in SetCalleeSaveMethod()
Druntime_options.def31 // almost-always the value of the type as if it was memset to all 0.
Dhidden_api.cc392 ClassAccessor::Field, ClassAccessor::Method>::type; in GetDexFlags()
/art/runtime/interpreter/mterp/arm64ng/
Dmain.S248 .type \name, #function
266 .type \name, #function
2106 .type EndExecuteNterpImpl, #function
2125 .type artNterpAsmInstructionEnd, #function
2136 .type artNterpAsmInstructionStart, #function
/art/runtime/mirror/
Dclass-inl.h786 Primitive::Type type = static_cast<Primitive::Type>(v32 & kPrimitiveTypeMask); in GetPrimitiveType() local
788 Primitive::ComponentSizeShift(type)); in GetPrimitiveType()
789 return type; in GetPrimitiveType()
Dobject.h67 #define OFFSET_OF_OBJECT_MEMBER(type, field) \ argument
68 MemberOffset(OFFSETOF_MEMBER(type, field))
Dvar_handle.cc207 bool CheckElementIndex(Primitive::Type type, in CheckElementIndex() argument
212 int64_t max_index = limit - Primitive::ComponentSize(type); in CheckElementIndex()
220 bool CheckElementIndex(Primitive::Type type, int32_t index, int32_t range_limit) in CheckElementIndex() argument
222 return CheckElementIndex(type, index, 0, range_limit); in CheckElementIndex()
/art/runtime/arch/x86_64/
Dasm_support_x86_64.S67 #define FUNCTION_TYPE(name) .type name, @function
/art/runtime/arch/arm/
Dquick_entrypoints_arm.S786 cmp r3, ip @ value's type == array's component type - trivial assignability
2380 .type art_quick_read_barrier_mark_introspection_gc_roots\label_suffix, #function
2506 .type art_quick_read_barrier_mark_introspection_narrow, #function
2551 .type art_quick_read_barrier_mark_introspection_arrays, #function
2559 .type art_quick_read_barrier_mark_introspection_unsafe_cas, #function
/art/compiler/debug/
Delf_debug_writer.cc44 using ElfRuntimeTypes = std::conditional<sizeof(void*) == 4, ElfTypes32, ElfTypes64>::type;
/art/oatdump/
Doatdump.cc252 OatClassType type = oat_class.GetType(); in WalkOatDexFile() local
253 switch (type) { in WalkOatDexFile()
2049 ObjPtr<mirror::Class> type, in PrettyObjectValue() argument
2052 CHECK(type != nullptr); in PrettyObjectValue()
2054 os << StringPrintf("null %s\n", type->PrettyDescriptor().c_str()); in PrettyObjectValue()
2055 } else if (type->IsStringClass()) { in PrettyObjectValue()
2060 } else if (type->IsClassClass()) { in PrettyObjectValue()
2066 os << StringPrintf("%p %s\n", value.Ptr(), type->PrettyDescriptor().c_str()); in PrettyObjectValue()
/art/compiler/optimizing/
Dnodes.cc701 HConstant* HGraph::GetConstant(DataType::Type type, int64_t value, uint32_t dex_pc) { in GetConstant() argument
702 switch (type) { in GetConstant()
711 DCHECK(IsInt(DataType::Size(type) * kBitsPerByte, value)); in GetConstant()
1740 #define DECLARE_CASE(type, super) case HInstruction::k##type: os << #type; break; in operator <<() argument
Dregister_allocator_linear_scan.cc137 DataType::Type type = location.IsRegister() in BlockRegister() local
141 interval = LiveInterval::MakeFixedInterval(allocator_, reg, type); in BlockRegister()
Dregister_allocator_graph_color.cc62 return os << static_cast<typename std::underlying_type<CoalesceKind>::type>(kind); in operator <<()
114 return os << static_cast<typename std::underlying_type<CoalesceStage>::type>(stage); in operator <<()
159 return os << static_cast<typename std::underlying_type<NodeStage>::type>(stage); in operator <<()
Dinliner.cc1245 DataType::Type type = Is64BitInstructionSet(graph_->GetInstructionSet()) in TryInlinePolymorphicCallToSameTarget() local
1250 type, in TryInlinePolymorphicCallToSameTarget()
1257 if (type == DataType::Type::kInt64) { in TryInlinePolymorphicCallToSameTarget()
/art/build/
DAndroid.bp106 // Disable warning for use of offsetof on non-standard layout type.
/art/test/800-smali/smali/
Db_22881413.smali51 # Test an UnresolvedUninitializedReference type.
/art/test/
DREADME.md146 $ find out/host/ -type f -name art_runtime_tests # Find the path of the test.
/art/openjdkjvmti/
Dti_stack.cc1320 #define SIMPLE_VALID_RETURN_TYPE(type, ...) \ argument
1322 bool ValidReturnType<type>(art::Thread * self ATTRIBUTE_UNUSED, \
1324 type value ATTRIBUTE_UNUSED) { \
/art/runtime/jit/
Ddebugger_interface.cc653 using ElfRuntimeTypes = std::conditional<sizeof(void*) == 4, ElfTypes32, ElfTypes64>::type; in ForEachNativeDebugSymbol()
/art/test/115-native-bridge/
Dnativebridge.cc630 uint64_t type ATTRIBUTE_UNUSED, in native_bridge_createNamespace()

1...<<1112131415161718192021