Searched refs:u8 (Results 1 - 15 of 15) sorted by relevance

/dalvik/dx/src/com/android/dx/io/instructions/
H A DDecodedInstruction.java205 throw new DexException("Literal out of range: " + Hex.u8(literal));
217 throw new DexException("Literal out of range: " + Hex.u8(literal));
229 throw new DexException("Literal out of range: " + Hex.u8(literal));
241 throw new DexException("Literal out of range: " + Hex.u8(literal));
278 + Hex.u8(registerCount));
292 throw new DexException("Register A out of range: " + Hex.u8(a));
306 throw new DexException("Register A out of range: " + Hex.u8(a));
320 throw new DexException("Register A out of range: " + Hex.u8(a));
334 throw new DexException("Register B out of range: " + Hex.u8(b));
348 throw new DexException("Register B out of range: " + Hex.u8(
[all...]
/dalvik/dexgen/src/com/android/dexgen/rop/cst/
H A DCstLong.java60 return "long{0x" + Hex.u8(value) + " / " + value + '}';
H A DCstDouble.java62 return "double{0x" + Hex.u8(bits) + " / " +
/dalvik/dx/src/com/android/dx/rop/cst/
H A DCstLong.java60 return "long{0x" + Hex.u8(value) + " / " + value + '}';
H A DCstDouble.java62 return "double{0x" + Hex.u8(bits) + " / " +
/dalvik/libdex/
H A DInstrUtils.h136 u8 vB_wide; /* for kFmt51l */
H A DDexFile.h68 typedef uint64_t u8; typedef
H A DInstrUtils.cpp643 pDec->vB_wide = FETCH_u4(1) | ((u8) FETCH_u4(3) << 32);
/dalvik/dexgen/src/com/android/dexgen/util/
H A DHex.java36 public static String u8(long v) { method in class:Hex
/dalvik/docs/
H A Dporting-proto.c.txt36 typedef uint64_t u8;
79 s8 ilsr64(s8 x, s4 count) { return ((u8)x) >> (count & 0x3f); } // unsigned
/dalvik/dx/src/com/android/dx/util/
H A DHex.java36 public static String u8(long v) { method in class:Hex
/dalvik/dexdump/
H A DDexDump.cpp1128 u8 j;
1956 static u8 readSignedLittleEndian(const u1** pData, u4 size) {
1958 u8 result = 0;
1972 static u8 readUnsignedLittleEndian(const u1** pData, u4 size, bool fillOnRight = false) {
1974 u8 result = 0;
1978 result = (result >> 8) | (((u8)*data++) << 56);
1981 u8 oldResult = result;
2038 u8 rawValue = readUnsignedLittleEndian(&data, valueArg + 1, true);
/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DInsnFormat.java233 case 64: sb.append(Hex.u8(bits)); break;
/dalvik/dx/src/com/android/dx/cf/direct/
H A DCodeObserver.java297 String optArg = (length != 1) ? " #" + Hex.u8(bits) : "";
/dalvik/dx/src/com/android/dx/dex/code/
H A DInsnFormat.java291 case 64: sb.append(Hex.u8(bits)); break;

Completed in 2833 milliseconds