MCPcopy Index your code
hub / github.com/dumbledore/AlbiteREADER / read

Method read

src/gnu/zip/ZipFile.java:581–593  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

579 }
580
581 public int read() throws IOException
582 {
583 if (bufferOffset + pos >= end + dummyByteCount)
584 return -1;
585 if (pos == buffer.length)
586 {
587 bufferOffset += buffer.length;
588 pos = 0;
589 fillBuffer();
590 }
591
592 return buffer[pos++] & 0xFF;
593 }
594
595 public int read(byte[] b, int off, int len) throws IOException
596 {

Callers 3

readFullyMethod · 0.95
readLeShortMethod · 0.95
readLeIntMethod · 0.95

Calls 1

fillBufferMethod · 0.95

Tested by

no test coverage detected