Searched defs:getByte0 (Results 1 - 2 of 2) sorted by relevance

/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
H A DByteArray.java131 return getByte0(off);
142 return (getByte0(off) << 8) | getUnsignedByte0(off + 1);
153 return (getByte0(off) << 24) |
167 int part1 = (getByte0(off) << 24) |
171 int part2 = (getByte0(off + 4) << 24) |
239 private int getByte0(int off) { method in class:ByteArray
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DByteArray.java127 return getByte0(off);
138 return (getByte0(off) << 8) | getUnsignedByte0(off + 1);
149 return (getByte0(off) << 24) |
163 int part1 = (getByte0(off) << 24) |
167 int part2 = (getByte0(off + 4) << 24) |
235 private int getByte0(int off) { method in class:ByteArray

Completed in 198 milliseconds