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

Method int2u2le

app/src/main/java/cc/ioctl/tmoe/util/dex/DexFlow.java:515–517  ·  view source on GitHub ↗
(int i)

Source from the content-addressed store, hash-verified

513 }
514
515 public static byte[] int2u2le(int i) {
516 return new byte[]{(byte) i, (byte) (i >> 8)};
517 }
518
519 public static int readLe32(byte[] buf, int index) {
520 return buf[index] & 0xFF | (buf[index + 1] << 8) & 0xff00

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected