Home
last modified time | relevance | path

Searched refs:high (Results 1 – 25 of 33) 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/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
DOP_CONST_STRING_JUMBO.S7 FETCH(r1, 2) @ r1<- BBBB (high)
/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.java525 protected static short codeUnit(int low, int high) { in codeUnit() argument
530 if ((high & 0xff) != high) { in codeUnit()
534 return (short) (low | (high << 8)); in codeUnit()
573 protected static int makeByte(int low, int high) { in makeByte() argument
578 if ((high & 0xf) != high) { in makeByte()
582 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/vm/mterp/x86-atom/
DOP_CONST.S32 shl $$16, %edx # move BBBB to high bits
DbinopDivRemLong.S51 movl %edx, 4(rFP, rINST, 4) # vAA+1<- return high
DbinopDivRemLong2Addr.S52 movl %edx, 4(rFP, rINST, 4) # vA<- return 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/
DRalloc.h126 int low, int high);
129 int low, int high);
DRallocUtil.cpp856 int low, int high, bool isSrc) in getLocWide() argument
863 highLoc = dvmCompilerGetSrc(cUnit, mir, high); in getLocWide()
866 highLoc = dvmCompilerGetDest(cUnit, mir, high); in getLocWide()
880 int low, int high) in dvmCompilerGetDestWide() argument
882 return getLocWide(cUnit, mir, low, high, false); in dvmCompilerGetDestWide()
886 int low, int high) in dvmCompilerGetSrcWide() argument
888 return getLocWide(cUnit, mir, low, high, true); in dvmCompilerGetSrcWide()
/dalvik/vm/native/
DREADME.txt22 an optimization for a few high-volume Object calls, and should generally
/dalvik/dx/src/com/android/dx/cf/code/
DBytecodeArray.java830 int high = bytes.getInt(at + 8); in parseTableswitch() local
831 int count = high - low + 1; in parseTableswitch()
834 if (low > high) { in parseTableswitch()
/dalvik/dx/tests/024-code-bytecode/
Dsmall-class.txt231 12340007 # high: 12340007
/dalvik/vm/compiler/template/out/
DCompilerTemplateAsm-armv5te.S145 blt .LTEMPLATE_CMP_LONG_less @ signed compare on high part

12