Home
last modified time | relevance | path

Searched refs:span (Results 1 – 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/io/
DObjectInputStream.java2901 int span = Math.min(endoff - off, MAX_BLOCK_SIZE); in readBooleans() local
2902 in.readFully(buf, 0, span); in readBooleans()
2903 stop = off + span; in readBooleans()
2922 int span = Math.min(endoff - off, MAX_BLOCK_SIZE >> 1); in readChars() local
2923 in.readFully(buf, 0, span << 1); in readChars()
2924 stop = off + span; in readChars()
2944 int span = Math.min(endoff - off, MAX_BLOCK_SIZE >> 1); in readShorts() local
2945 in.readFully(buf, 0, span << 1); in readShorts()
2946 stop = off + span; in readShorts()
2966 int span = Math.min(endoff - off, MAX_BLOCK_SIZE >> 2); in readInts() local
[all …]