Searched refs:span (Results 1 – 1 of 1) sorted by relevance
/libcore/ojluni/src/main/java/java/io/ |
D | ObjectInputStream.java | 3259 int span = Math.min(endoff - off, MAX_BLOCK_SIZE); in readBooleans() local 3260 in.readFully(buf, 0, span); in readBooleans() 3261 stop = off + span; in readBooleans() 3280 int span = Math.min(endoff - off, MAX_BLOCK_SIZE >> 1); in readChars() local 3281 in.readFully(buf, 0, span << 1); in readChars() 3282 stop = off + span; in readChars() 3302 int span = Math.min(endoff - off, MAX_BLOCK_SIZE >> 1); in readShorts() local 3303 in.readFully(buf, 0, span << 1); in readShorts() 3304 stop = off + span; in readShorts() 3324 int span = Math.min(endoff - off, MAX_BLOCK_SIZE >> 2); in readInts() local [all …]
|