MCPcopy Create free account
hub / github.com/L-JINBIN/ApkDataMultiplexing / _readUInt

Method _readUInt

src/bin/zip/ZipFile.java:310–313  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

308 }
309
310 private long _readUInt() throws IOException {
311 int value = _readInt();
312 return value & 0xFFFFFFFFL;
313 }
314
315 private long _readLong() throws IOException {
316 return _readUInt() | (_readUInt() << 32);

Callers 3

readEntriesMethod · 0.95
parseEocdRecordMethod · 0.95
_readLongMethod · 0.95

Calls 1

_readIntMethod · 0.95

Tested by

no test coverage detected