/dalvik/vm/ |
D | Bits.h | 59 u4 low, high; in get8BE() local 61 high = pSrc[0]; in get8BE() 62 high = (high << 8) | pSrc[1]; in get8BE() 63 high = (high << 8) | pSrc[2]; in get8BE() 64 high = (high << 8) | pSrc[3]; in get8BE() 70 return ((u8) high << 32) | (u8) low; in get8BE() 101 u4 low, high; in get8LE() local 107 high = pSrc[4]; in get8LE() 108 high |= pSrc[5] << 8; in get8LE() 109 high |= pSrc[6] << 16; in get8LE() [all …]
|
/dalvik/vm/mterp/mips/ |
D | OP_CONST_WIDE.S | 5 FETCH(a2, 3) # a2 <- hhhh (high middle) 8 FETCH(a3, 4) # a3 <- HHHH (high) 11 or a1, a3, a2 # a1 <- HHHHhhhh (high word)
|
D | OP_MUL_LONG_2ADDR.S | 9 LOAD64(a0, a1, t0) # vAA.low / high 13 LOAD64(a2, a3, t1) # vBB.low / high 26 STORE64(v0, v1, t0) # vAA+1 <- v1 (high)
|
D | OP_CONST.S | 5 FETCH(a1, 2) # a1 <- BBBB (high)
|
D | OP_DOUBLE_TO_LONG.S | 70 .dword 0x43e0000000000000 # maxlong, as a double (high word) 72 .dword 0xc3e0000000000000 # minlong, as a double (high word)
|
D | OP_CONST_WIDE_32.S | 5 FETCH_S(a2, 2) # a2 <- ssssBBBB (high)
|
D | OP_CONST_STRING_JUMBO.S | 7 FETCH(a1, 2) # a1 <- BBBB (high)
|
D | OP_MUL_LONG.S | 39 STORE64(v0, v1, a0) # vAA::vAA+1 <- v0(low) :: v1(high)
|
/dalvik/vm/mterp/armv5te/ |
D | OP_CONST_WIDE.S | 5 FETCH(r2, 3) @ r2<- hhhh (high middle) 7 FETCH(r3, 4) @ r3<- HHHH (high) 9 orr r1, r2, r3, lsl #16 @ r1<- HHHHhhhh (high word)
|
D | OP_DOUBLE_TO_INT.S | 20 mvn r3, #0xbe000000 @ maxint, as a double (high word) 31 mov r3, #0xc1000000 @ minint, as a double (high word)
|
D | OP_DOUBLE_TO_LONG.S | 15 mov r3, #0x43000000 @ maxlong, as a double (high word) 29 mov r3, #0xc3000000 @ minlong, as a double (high word)
|
D | OP_CONST.S | 5 FETCH(r1, 2) @ r1<- BBBB (high)
|
D | OP_CONST_WIDE_32.S | 5 FETCH_S(r2, 2) @ r2<- ssssBBBB (high)
|
D | OP_CMP_LONG.S | 35 blt .L${opcode}_less @ signed compare on high part
|
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
D | InsnFormat.java | 425 protected static short codeUnit(int low, int high) { in codeUnit() argument 430 if ((high & 0xff) != high) { in codeUnit() 434 return (short) (low | (high << 8)); in codeUnit() 473 protected static int makeByte(int low, int high) { in makeByte() argument 478 if ((high & 0xf) != high) { in makeByte() 482 return low | (high << 4); in makeByte()
|
D | SwitchData.java | 212 long high = cases.get(sz - 1); in packedCodeSize() local 213 long result = ((high - low + 1)) * 2 + 4; in packedCodeSize()
|
/dalvik/dx/src/com/android/dx/dex/code/ |
D | InsnFormat.java | 524 protected static short codeUnit(int low, int high) { in codeUnit() argument 529 if ((high & 0xff) != high) { in codeUnit() 533 return (short) (low | (high << 8)); in codeUnit() 572 protected static int makeByte(int low, int high) { in makeByte() argument 577 if ((high & 0xf) != high) { in makeByte() 581 return low | (high << 4); in makeByte()
|
D | SwitchData.java | 213 long high = cases.get(sz - 1); in packedCodeSize() local 214 long result = ((high - low + 1)) * 2 + 4; in packedCodeSize()
|
/dalvik/vm/mterp/armv6t2/ |
D | OP_DOUBLE_TO_INT.S | 20 mvn r3, #0xbe000000 @ maxint, as a double (high word) 31 mov r3, #0xc1000000 @ minint, as a double (high word)
|
D | OP_DOUBLE_TO_LONG.S | 15 mov r3, #0x43000000 @ maxlong, as a double (high word) 29 mov r3, #0xc3000000 @ minlong, as a double (high word)
|
/dalvik/dx/tests/122-switch-with-high-register/ |
D | info.txt | 1 This test ensures that dx correctly handles switches on data in a high
|
/dalvik/vm/compiler/template/armv5te/ |
D | TEMPLATE_CMP_LONG.S | 23 blt .L${opcode}_less @ signed compare on high part
|
/dalvik/dx/tests/084-dex-high-register-moves/ |
D | info.txt | 2 high registers are moved to and from low registers with
|
/dalvik/vm/compiler/codegen/mips/ |
D | Ralloc.h | 130 int low, int high); 133 int low, int high);
|
/dalvik/vm/compiler/codegen/ |
D | Ralloc.h | 126 int low, int high); 129 int low, int high);
|