Home
last modified time | relevance | path

Searched refs:low (Results 1 – 25 of 46) sorted by relevance

12

/dalvik/vm/
DBits.h59 u4 low, high; in get8BE() local
65 low = pSrc[4]; in get8BE()
66 low = (low << 8) | pSrc[5]; in get8BE()
67 low = (low << 8) | pSrc[6]; in get8BE()
68 low = (low << 8) | pSrc[7]; in get8BE()
70 return ((u8) high << 32) | (u8) low; in get8BE()
101 u4 low, high; in get8LE() local
103 low = pSrc[0]; in get8LE()
104 low |= pSrc[1] << 8; in get8LE()
105 low |= pSrc[2] << 16; in get8LE()
[all …]
/dalvik/vm/mterp/armv5te/
DOP_CONST_WIDE.S3 FETCH(r0, 1) @ r0<- bbbb (low)
4 FETCH(r1, 2) @ r1<- BBBB (low middle)
6 orr r0, r0, r1, lsl #16 @ r0<- BBBBbbbb (low word)
DOP_DOUBLE_TO_INT.S17 mov r2, #0x80000000 @ maxint, as a double (low word)
33 mov r2, #0 @ minint, as a double (low word)
DOP_DOUBLE_TO_LONG.S17 mov r2, #0 @ maxlong, as a double (low word)
31 mov r2, #0 @ minlong, as a double (low word)
DOP_CONST.S4 FETCH(r0, 1) @ r0<- bbbb (low)
DOP_CONST_WIDE_32.S3 FETCH(r0, 1) @ r0<- 0000bbbb (low)
DOP_MUL_LONG_2ADDR.S23 add r10, r2, r10 @ r10<- r10 + low(ZxW + (YxX))
/dalvik/vm/mterp/mips/
DOP_CONST_WIDE.S3 FETCH(a0, 1) # a0 <- bbbb (low)
4 FETCH(a1, 2) # a1 <- BBBB (low middle)
7 or a0, a1 # a0 <- BBBBbbbb (low word)
DOP_MUL_LONG_2ADDR.S9 LOAD64(a0, a1, t0) # vAA.low / high
13 LOAD64(a2, a3, t1) # vBB.low / high
25 # vAA <- v0 (low)
DOP_CONST.S4 FETCH(a0, 1) # a0 <- bbbb (low)
DOP_CONST_WIDE_32.S3 FETCH(a0, 1) # a0 <- 0000bbbb (low)
DOP_CONST_STRING_JUMBO.S6 FETCH(a0, 1) # a0 <- bbbb (low)
/dalvik/dexgen/src/com/android/dexgen/dex/code/
DInsnFormat.java425 protected static short codeUnit(int low, int high) { in codeUnit() argument
426 if ((low & 0xff) != low) { in codeUnit()
434 return (short) (low | (high << 8)); in codeUnit()
473 protected static int makeByte(int low, int high) { in makeByte() argument
474 if ((low & 0xf) != low) { in makeByte()
482 return low | (high << 4); in makeByte()
DSwitchData.java211 long low = cases.get(0); in packedCodeSize() local
213 long result = ((high - low + 1)) * 2 + 4; in packedCodeSize()
/dalvik/dx/src/com/android/dx/dex/code/
DInsnFormat.java523 protected static short codeUnit(int low, int high) { in codeUnit() argument
524 if ((low & 0xff) != low) { in codeUnit()
532 return (short) (low | (high << 8)); in codeUnit()
571 protected static int makeByte(int low, int high) { in makeByte() argument
572 if ((low & 0xf) != low) { in makeByte()
580 return low | (high << 4); in makeByte()
DSwitchData.java212 long low = cases.get(0); in packedCodeSize() local
214 long result = ((high - low + 1)) * 2 + 4; in packedCodeSize()
/dalvik/vm/mterp/armv6t2/
DOP_DOUBLE_TO_INT.S17 mov r2, #0x80000000 @ maxint, as a double (low word)
33 mov r2, #0 @ minint, as a double (low word)
DOP_DOUBLE_TO_LONG.S17 mov r2, #0 @ maxlong, as a double (low word)
31 mov r2, #0 @ minlong, as a double (low word)
DOP_MUL_LONG_2ADDR.S22 add r10, r2, r10 @ r10<- r10 + low(ZxW + (YxX))
/dalvik/vm/compiler/template/armv5te/
DTEMPLATE_MUL_LONG.S26 add r1, r2, r10 @ r1<- r10 + low(ZxW + (YxX))
DTEMPLATE_CMP_LONG.S27 bhi .L${opcode}_greater @ unsigned compare on low part
/dalvik/dx/tests/084-dex-high-register-moves/
Dinfo.txt2 high registers are moved to and from low registers with
/dalvik/dx/tests/079-dex-local-variable-renumbering/
Dinfo.txt3 to make room for low scratch registers.
/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