/art/test/530-checker-loops2/src/ |
D | Main.java | 333 private static void hiddenOOB2(int hi) { in hiddenOOB2() argument 335 for (int i = 0; i < hi; i++) { in hiddenOOB2() 509 private static int linearDynamicBCE1(int[] x, int lo, int hi) { in linearDynamicBCE1() argument 511 for (int i = lo; i < hi; i++) { in linearDynamicBCE1() 531 private static int linearDynamicBCE2(int[] x, int lo, int hi, int offset) { in linearDynamicBCE2() argument 533 for (int i = lo; i < hi; i++) { in linearDynamicBCE2() 601 static int dynamicBCEPossiblyInfiniteLoop(int[] x, int lo, int hi) { in dynamicBCEPossiblyInfiniteLoop() argument 605 for (int i = lo; i <= hi; i++) { in dynamicBCEPossiblyInfiniteLoop() 621 static int noDynamicBCEPossiblyInfiniteLoop(int[] x, int lo, int hi) { in noDynamicBCEPossiblyInfiniteLoop() argument 625 for (int k = 0, i = lo; i <= hi; i++) { in noDynamicBCEPossiblyInfiniteLoop() [all …]
|
/art/test/975-iface-private/ |
D | expected.txt | 1 Saying hi from class 3 Saying hi from interface
|
/art/runtime/arch/ |
D | instruction_set.h | 238 static inline TwoWordReturn GetTwoWordSuccessValue(uintptr_t hi, uintptr_t lo) { in GetTwoWordSuccessValue() argument 241 uint64_t hi64 = static_cast<uint64_t>(hi); in GetTwoWordSuccessValue() 248 uintptr_t hi; member 259 static inline TwoWordReturn GetTwoWordSuccessValue(uintptr_t hi, uintptr_t lo) { in GetTwoWordSuccessValue() argument 262 ret.hi = hi; in GetTwoWordSuccessValue()
|
/art/runtime/interpreter/mterp/mips/ |
D | op_cmp_long.S | 23 slt t0, a1, a3 # compare hi 27 # at this point x.hi==y.hi
|
D | op_goto_32.S | 13 FETCH(a1, 2) # a1 <- AAAA (hi) 32 FETCH(a1, 2) # a1 <- AAAA (hi)
|
D | op_packed_switch.S | 14 FETCH(a1, 2) # a1 <- BBBB (hi) 35 FETCH(a1, 2) # a1 <- BBBB (hi)
|
D | op_fill_array_data.S | 4 FETCH(a1, 2) # a1 <- BBBB (hi)
|
D | op_mul_long_2addr.S | 24 addu v1, v1, t1 # v1= a3a0 + hi(a2a0)
|
D | op_mul_long.S | 32 addu v1, v1, t1 # v1+= hi(a2a0)
|
/art/test/975-iface-private/smali/ |
D | Main.smali | 24 # System.out.println("Saying hi from class"); 28 # System.out.println("Saying hi from interface"); 56 const-string v1, "Saying hi from class" 66 const-string v1, "Saying hi from interface"
|
/art/test/004-JniTest/ |
D | expected.txt | 58 hi-lambda: λ 59 hi-default δλ 60 hi-default δλ
|
/art/runtime/interpreter/mterp/arm/ |
D | op_goto_32.S | 14 FETCH r3, 2 @ r1<- AAAA (hi)
|
D | op_packed_switch.S | 13 FETCH r1, 2 @ r1<- BBBB (hi)
|
D | op_fill_array_data.S | 4 FETCH r1, 2 @ r1<- BBBB (hi)
|
/art/runtime/ |
D | dex_file.cc | 558 int32_t hi = NumFieldIds() - 1; in FindFieldId() local 559 while (hi >= lo) { in FindFieldId() 560 int32_t mid = (hi + lo) / 2; in FindFieldId() 565 hi = mid - 1; in FindFieldId() 570 hi = mid - 1; in FindFieldId() 575 hi = mid - 1; in FindFieldId() 593 int32_t hi = NumMethodIds() - 1; in FindMethodId() local 594 while (hi >= lo) { in FindMethodId() 595 int32_t mid = (hi + lo) / 2; in FindMethodId() 600 hi = mid - 1; in FindMethodId() [all …]
|
/art/runtime/interpreter/mterp/mips64/ |
D | op_fill_array_data.S | 5 lh a0, 4(rPC) # a0 <- BBBB (hi)
|
D | op_packed_switch.S | 15 lh a1, 4(rPC) # a1 <- BBBB (hi)
|
/art/test/530-checker-loops1/src/ |
D | Main.java | 547 int hi; in invariantFromPreLoop() local 550 hi = x.length; in invariantFromPreLoop() 553 for (int i = 0; i < hi; i++) { in invariantFromPreLoop()
|
/art/runtime/interpreter/mterp/ |
D | mterp.cc | 96 int hi = size - 1; in MterpDoSparseSwitch() local 97 while (lo <= hi) { in MterpDoSparseSwitch() 98 int mid = (lo + hi) >> 1; in MterpDoSparseSwitch() 102 hi = mid - 1; in MterpDoSparseSwitch()
|
/art/runtime/interpreter/ |
D | interpreter_common.h | 890 int hi = size - 1; in DoSparseSwitch() local 891 while (lo <= hi) { in DoSparseSwitch() 892 int mid = (lo + hi) / 2; in DoSparseSwitch() 895 hi = mid - 1; in DoSparseSwitch()
|
/art/compiler/optimizing/ |
D | induction_var_range_test.cc | 165 HInductionVarAnalysis::InductionInfo* CreateRange(int32_t lo, int32_t hi) { in CreateRange() argument 167 HInductionVarAnalysis::kPeriodic, CreateConst(lo), CreateConst(hi), Primitive::kPrimInt); in CreateRange() 179 HInductionVarAnalysis::InductionInfo* CreateWrapAround(int32_t initial, int32_t lo, int32_t hi) { in CreateWrapAround() argument 180 return CreateWrapAround(initial, CreateRange(lo, hi)); in CreateWrapAround()
|
/art/test/046-reflect/ |
D | expected.txt | 27 myMethod: hi there 3.1415925 ✔ !
|
/art/runtime/verifier/ |
D | method_verifier.cc | 2232 const RegType& hi = reg_types_.FromCat2ConstHi(static_cast<int32_t>(val >> 32), true); in CodeFlowVerifyInstruction() local 2233 work_line_->SetRegisterTypeWide(this, inst->VRegA_21s(), lo, hi); in CodeFlowVerifyInstruction() 2239 const RegType& hi = reg_types_.FromCat2ConstHi(static_cast<int32_t>(val >> 32), true); in CodeFlowVerifyInstruction() local 2240 work_line_->SetRegisterTypeWide(this, inst->VRegA_31i(), lo, hi); in CodeFlowVerifyInstruction() 2246 const RegType& hi = reg_types_.FromCat2ConstHi(static_cast<int32_t>(val >> 32), true); in CodeFlowVerifyInstruction() local 2247 work_line_->SetRegisterTypeWide(this, inst->VRegA_51l(), lo, hi); in CodeFlowVerifyInstruction() 2253 const RegType& hi = reg_types_.FromCat2ConstHi(static_cast<int32_t>(val >> 32), true); in CodeFlowVerifyInstruction() local 2254 work_line_->SetRegisterTypeWide(this, inst->VRegA_21h(), lo, hi); in CodeFlowVerifyInstruction()
|
/art/tools/dmtracedump/ |
D | tracedump.cc | 972 int32_t hi = pKeys->numMethods - 1; in lookupMethod() local 974 while (hi >= lo) { in lookupMethod() 975 int32_t mid = (hi + lo) / 2; in lookupMethod() 983 hi = mid - 1; in lookupMethod()
|
/art/runtime/interpreter/mterp/out/ |
D | mterp_mips.S | 1248 FETCH(a1, 2) # a1 <- BBBB (hi) 1374 FETCH(a1, 2) # a1 <- AAAA (hi) 1393 FETCH(a1, 2) # a1 <- AAAA (hi) 1422 FETCH(a1, 2) # a1 <- BBBB (hi) 1443 FETCH(a1, 2) # a1 <- BBBB (hi) 1479 FETCH(a1, 2) # a1 <- BBBB (hi) 1500 FETCH(a1, 2) # a1 <- BBBB (hi) 1756 slt t0, a1, a3 # compare hi 1760 # at this point x.hi==y.hi 4998 addu v1, v1, t1 # v1+= hi(a2a0) [all …]
|