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.java2889 int span = Math.min(endoff - off, MAX_BLOCK_SIZE); in readBooleans() local
2890 in.readFully(buf, 0, span); in readBooleans()
2891 stop = off + span; in readBooleans()
2910 int span = Math.min(endoff - off, MAX_BLOCK_SIZE >> 1); in readChars() local
2911 in.readFully(buf, 0, span << 1); in readChars()
2912 stop = off + span; in readChars()
2932 int span = Math.min(endoff - off, MAX_BLOCK_SIZE >> 1); in readShorts() local
2933 in.readFully(buf, 0, span << 1); in readShorts()
2934 stop = off + span; in readShorts()
2954 int span = Math.min(endoff - off, MAX_BLOCK_SIZE >> 2); in readInts() local
[all …]