Home
last modified time | relevance | path

Searched refs:high (Results 1 – 25 of 43) sorted by relevance

12

/dalvik/vm/
DBits.h59 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/
DOP_CONST_WIDE.S5 FETCH(a2, 3) # a2 <- hhhh (high middle)
8 FETCH(a3, 4) # a3 <- HHHH (high)
11 or a1, a3, a2 # a1 <- HHHHhhhh (high word)
DOP_MUL_LONG_2ADDR.S9 LOAD64(a0, a1, t0) # vAA.low / high
13 LOAD64(a2, a3, t1) # vBB.low / high
26 STORE64(v0, v1, t0) # vAA+1 <- v1 (high)
DOP_CONST.S5 FETCH(a1, 2) # a1 <- BBBB (high)
DOP_DOUBLE_TO_LONG.S70 .dword 0x43e0000000000000 # maxlong, as a double (high word)
72 .dword 0xc3e0000000000000 # minlong, as a double (high word)
DOP_CONST_WIDE_32.S5 FETCH_S(a2, 2) # a2 <- ssssBBBB (high)
DOP_CONST_STRING_JUMBO.S7 FETCH(a1, 2) # a1 <- BBBB (high)
DOP_MUL_LONG.S39 STORE64(v0, v1, a0) # vAA::vAA+1 <- v0(low) :: v1(high)
/dalvik/vm/mterp/armv5te/
DOP_CONST_WIDE.S5 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)
DOP_DOUBLE_TO_INT.S20 mvn r3, #0xbe000000 @ maxint, as a double (high word)
31 mov r3, #0xc1000000 @ minint, as a double (high word)
DOP_DOUBLE_TO_LONG.S15 mov r3, #0x43000000 @ maxlong, as a double (high word)
29 mov r3, #0xc3000000 @ minlong, as a double (high word)
DOP_CONST.S5 FETCH(r1, 2) @ r1<- BBBB (high)
DOP_CONST_WIDE_32.S5 FETCH_S(r2, 2) @ r2<- ssssBBBB (high)
DOP_CMP_LONG.S35 blt .L${opcode}_less @ signed compare on high part
/dalvik/dexgen/src/com/android/dexgen/dex/code/
DInsnFormat.java425 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()
DSwitchData.java212 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/
DInsnFormat.java524 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()
DSwitchData.java213 long high = cases.get(sz - 1); in packedCodeSize() local
214 long result = ((high - low + 1)) * 2 + 4; in packedCodeSize()
/dalvik/vm/mterp/armv6t2/
DOP_DOUBLE_TO_INT.S20 mvn r3, #0xbe000000 @ maxint, as a double (high word)
31 mov r3, #0xc1000000 @ minint, as a double (high word)
DOP_DOUBLE_TO_LONG.S15 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/
Dinfo.txt1 This test ensures that dx correctly handles switches on data in a high
/dalvik/vm/compiler/template/armv5te/
DTEMPLATE_CMP_LONG.S23 blt .L${opcode}_less @ signed compare on high part
/dalvik/dx/tests/084-dex-high-register-moves/
Dinfo.txt2 high registers are moved to and from low registers with
/dalvik/vm/compiler/codegen/mips/
DRalloc.h130 int low, int high);
133 int low, int high);
/dalvik/vm/compiler/codegen/
DRalloc.h126 int low, int high);
129 int low, int high);

12