Searched refs:nextPutIndex (Results 1 - 15 of 15) sorted by relevance

/libcore/ojluni/src/main/java/java/nio/
H A DBuffer.java506 final int nextPutIndex() { // package-private method in class:Buffer
512 final int nextPutIndex(int nb) { // package-private method in class:Buffer
H A DHeapByteBuffer.java142 hb[ix(nextPutIndex())] = x;
208 Bits.putChar(this, ix(nextPutIndex(2)), x, bigEndian);
260 Bits.putShort(this, ix(nextPutIndex(2)), x, bigEndian);
312 Bits.putInt(this, ix(nextPutIndex(4)), x, bigEndian);
365 Bits.putLong(this, ix(nextPutIndex(8)), x, bigEndian);
417 Bits.putFloat(this, ix(nextPutIndex(4)), x, bigEndian);
469 Bits.putDouble(this, ix(nextPutIndex(8)), x, bigEndian);
H A DDirectByteBuffer.java236 put(ix(nextPutIndex()), x);
356 putChar(ix(nextPutIndex(SizeOf.CHAR)), x);
438 putShort(ix(nextPutIndex(SizeOf.SHORT)), x);
519 putInt(ix(nextPutIndex(SizeOf.INT)), x);
601 putLong(ix(nextPutIndex(SizeOf.LONG)), x);
685 putFloat(ix(nextPutIndex(SizeOf.FLOAT)), x);
768 putDouble(ix(nextPutIndex(SizeOf.DOUBLE)), x);
H A DByteBufferAsDoubleBuffer.java109 put(nextPutIndex(), x);
H A DByteBufferAsFloatBuffer.java108 put(nextPutIndex(), x);
H A DByteBufferAsIntBuffer.java108 put(nextPutIndex(), x);
H A DByteBufferAsLongBuffer.java108 put(nextPutIndex(), x);
H A DByteBufferAsShortBuffer.java107 put(nextPutIndex(), x);
H A DByteBufferAsCharBuffer.java112 put(nextPutIndex(), x);
H A DHeapCharBuffer.java143 hb[ix(nextPutIndex())] = x;
H A DHeapDoubleBuffer.java138 hb[ix(nextPutIndex())] = x;
H A DHeapFloatBuffer.java137 hb[ix(nextPutIndex())] = x;
H A DHeapIntBuffer.java138 hb[ix(nextPutIndex())] = x;
H A DHeapLongBuffer.java139 hb[ix(nextPutIndex())] = x;
H A DHeapShortBuffer.java138 hb[ix(nextPutIndex())] = x;

Completed in 71 milliseconds