Home
last modified time | relevance | path

Searched defs:low (Results 1 – 20 of 20) sorted by relevance

/art/compiler/utils/arm/
Dmanaged_register_arm.cc29 Register low = AsRegisterPairLow(); in Overlaps() local
37 SRegister low = AsOverlappingDRegisterLow(); in Overlaps() local
54 int low; in AllocIdLow() local
/art/compiler/utils/x86_64/
Dmanaged_register_x86_64.cc41 Register low; member
47 #define REGISTER_PAIR_ENUMERATION(low, high) { low##_##high, low, high }, argument
63 Register low = AsRegisterPairLow().AsRegister(); in Overlaps() local
/art/compiler/utils/x86/
Dmanaged_register_x86.cc42 Register low; member
48 #define REGISTER_PAIR_ENUMERATION(low, high) { low##_##high, low, high }, argument
68 Register low = AsRegisterPairLow(); in Overlaps() local
/art/tools/ahat/src/main/com/android/ahat/
DHtmlEscaper.java27 int low = 0; in escape() local
/art/compiler/utils/arm64/
Dmanaged_register_arm64.cc67 int low = RegNo(); in RegIdLow() local
/art/compiler/optimizing/
Dintrinsics.cc122 int32_t low = GetIntegerCacheField(cache_class, kLowFieldName); in CheckIntegerCache() local
196 int32_t low = GetIntegerCacheField(cache_class, kLowFieldName); in ComputeIntegerValueOfLocations() local
244 int32_t low = value_field->GetInt(low_integer); in ComputeIntegerValueOfLocations() local
Dcommon_arm.h211 inline Location LocationFrom(const vixl::aarch32::Register& low, in LocationFrom()
216 inline Location LocationFrom(const vixl::aarch32::SRegister& low, in LocationFrom()
Dlocations.h137 static Location RegisterPairLocation(int low, int high) { in RegisterPairLocation()
141 static Location FpuRegisterPairLocation(int low, int high) { in FpuRegisterPairLocation()
170 int low() const { in low() function
Dregister_allocator.cc223 LiveInterval* low = interval->GetLowInterval()->SplitAt(position); in Split() local
Dintrinsics.h116 int32_t low; member
Dcode_generator.cc1490 int low = location.low(); in EmitVRegInfo() local
1511 int low = location.low(); in EmitVRegInfo() local
Dregister_allocator_linear_scan.cc39 static bool IsLowOfUnalignedPairInterval(LiveInterval* low) { in IsLowOfUnalignedPairInterval()
Dssa_liveness_analysis.h840 void SetLowInterval(LiveInterval* low) { in SetLowInterval()
Dcode_generator_x86.cc3711 Immediate low(low_value); in VisitMul() local
4750 Register low = loc.AsRegisterPairLow<Register>(); in GenerateShlLong() local
4789 Register low = loc.AsRegisterPairLow<Register>(); in GenerateShrLong() local
4821 Register low = loc.AsRegisterPairLow<Register>(); in GenerateUShrLong() local
6855 Immediate low(low_value); in EmitMove() local
6870 Immediate low(low_value); in EmitMove() local
8148 Immediate low(low_value); in HandleBitwiseOperation() local
Dcode_generator_arm_vixl.cc4049 vixl32::Register low = LowRegisterFrom(in); in VisitTypeConversion() local
5314 vixl32::Register low = LowRegisterFrom(first); in HandleShift() local
/art/test/717-integer-value-of/src/
DMain.java95 int low = (int) lowField.get(integerCacheClass); in testValueOfConst() local
/art/tools/ahat/src/main/com/android/ahat/dominators/
DDominators.java208 public boolean hasIdInRange(long low, long high) { in hasIdInRange()
/art/runtime/native/
Djava_lang_Class.cc230 size_t low = 0; in FindFieldByName() local
/art/libdexfile/dex/
Ddex_file_verifier.cc49 constexpr bool IsValidOrNoTypeId(uint16_t low, uint16_t high) { in IsValidOrNoTypeId()
/art/test/530-checker-lse/src/
DMain.java1568 static int sumWithinRange(int[] array, final int low, final int high) { in sumWithinRange()