HomeSort by relevance Sort by last modified time
    Searched defs:InexpensiveConstantInt (Results 1 - 3 of 3) sorted by null

  /art/compiler/dex/quick/mips/
utility_mips.cc 53 bool MipsMir2Lir::InexpensiveConstantInt(int32_t value) {
  /art/compiler/dex/quick/x86/
utility_x86.cc 51 bool X86Mir2Lir::InexpensiveConstantInt(int32_t value) {
  /art/compiler/dex/quick/arm/
utility_arm.cc 149 bool ArmMir2Lir::InexpensiveConstantInt(int32_t value) {
158 return InexpensiveConstantInt(High32Bits(value)) && InexpensiveConstantInt(Low32Bits(value));
610 if ((InexpensiveConstantInt(val_lo) && (InexpensiveConstantInt(val_hi)))) {

Completed in 278 milliseconds