MCPcopy Create free account
hub / github.com/cinit/TMoe / readLe16

Method readLe16

app/src/main/java/cc/ioctl/tmoe/util/dex/DexFlow.java:524–526  ·  view source on GitHub ↗
(byte[] buf, int off)

Source from the content-addressed store, hash-verified

522 }
523
524 public static int readLe16(byte[] buf, int off) {
525 return (buf[off] & 0xFF) | ((buf[off + 1] << 8) & 0xff00);
526 }
527
528 public static boolean verifyOpcodeOffset(byte[] buf, int insStart, int bLen, int opcodeOffset) {
529 for (int i = 0; i < bLen; ) {

Callers 6

getDeclaredDexMethodsMethod · 0.95
guessNewInstanceTypeMethod · 0.95
readFieldMethod · 0.95
readProtoMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected