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

Method int2u4le

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

Source from the content-addressed store, hash-verified

509 }
510
511 public static byte[] int2u4le(int i) {
512 return new byte[]{(byte) i, (byte) (i >> 8), (byte) (i >> 16), (byte) (i >> 24)};
513 }
514
515 public static byte[] int2u2le(int i) {
516 return new byte[]{(byte) i, (byte) (i >> 8)};

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected