Searched defs:high (Results 1 - 5 of 5) sorted by relevance

/dalvik/vm/
H A DBits.h59 u4 low, high; local
61 high = pSrc[0];
62 high = (high << 8) | pSrc[1];
63 high = (high << 8) | pSrc[2];
64 high = (high << 8) | pSrc[3];
70 return ((u8) high << 32) | (u8) low;
101 u4 low, high; local
156 u4 low, high; local
204 u4 low, high; local
[all...]
/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DInsnFormat.java422 * @param high {@code 0..255;} high byte
425 protected static short codeUnit(int low, int high) { argument
430 if ((high & 0xff) != high) {
431 throw new IllegalArgumentException("high out of range 0..255");
434 return (short) (low | (high << 8));
442 * @param n2 {@code 0..15;} medium-high nibble
443 * @param n3 {@code 0..15;} high nibble
470 * @param high {
473 makeByte(int low, int high) argument
[all...]
/dalvik/dx/src/com/android/dx/dex/code/
H A DInsnFormat.java520 * @param high {@code 0..255;} high byte
523 protected static short codeUnit(int low, int high) { argument
528 if ((high & 0xff) != high) {
529 throw new IllegalArgumentException("high out of range 0..255");
532 return (short) (low | (high << 8));
540 * @param n2 {@code 0..15;} medium-high nibble
541 * @param n3 {@code 0..15;} high nibble
568 * @param high {
571 makeByte(int low, int high) argument
[all...]
/dalvik/vm/compiler/codegen/
H A DRallocUtil.cpp671 * clobber both low and high.
856 int low, int high, bool isSrc)
860 /* Copy loc record for low word and patch in data from high word */
863 highLoc = dvmCompilerGetSrc(cUnit, mir, high);
866 highLoc = dvmCompilerGetDest(cUnit, mir, high);
880 int low, int high)
882 return getLocWide(cUnit, mir, low, high, false);
886 int low, int high)
888 return getLocWide(cUnit, mir, low, high, true);
855 getLocWide(CompilationUnit *cUnit, MIR *mir, int low, int high, bool isSrc) argument
879 dvmCompilerGetDestWide(CompilationUnit *cUnit, MIR *mir, int low, int high) argument
885 dvmCompilerGetSrcWide(CompilationUnit *cUnit, MIR *mir, int low, int high) argument
/dalvik/vm/compiler/codegen/mips/
H A DRallocUtil.cpp743 * clobber both low and high.
928 int low, int high, bool isSrc)
932 /* Copy loc record for low word and patch in data from high word */
935 highLoc = dvmCompilerGetSrc(cUnit, mir, high);
938 highLoc = dvmCompilerGetDest(cUnit, mir, high);
952 int low, int high)
954 return getLocWide(cUnit, mir, low, high, false);
958 int low, int high)
960 return getLocWide(cUnit, mir, low, high, true);
927 getLocWide(CompilationUnit *cUnit, MIR *mir, int low, int high, bool isSrc) argument
951 dvmCompilerGetDestWide(CompilationUnit *cUnit, MIR *mir, int low, int high) argument
957 dvmCompilerGetSrcWide(CompilationUnit *cUnit, MIR *mir, int low, int high) argument

Completed in 201 milliseconds