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

/libcore/ojluni/src/main/java/java/nio/
H A DBuffer.java534 final int nextPutIndex() { // package-private method in class:Buffer
540 final int nextPutIndex(int nb) { // package-private method in class:Buffer
H A DHeapByteBuffer.java144 hb[ix(nextPutIndex())] = x;
220 Bits.putChar(this, ix(nextPutIndex(2)), x, bigEndian);
281 Bits.putShort(this, ix(nextPutIndex(2)), x, bigEndian);
342 Bits.putInt(this, ix(nextPutIndex(4)), x, bigEndian);
404 Bits.putLong(this, ix(nextPutIndex(8)), x, bigEndian);
465 Bits.putFloat(this, ix(nextPutIndex(4)), x, bigEndian);
526 Bits.putDouble(this, ix(nextPutIndex(8)), x, bigEndian);
H A DByteBufferAsDoubleBuffer.java110 put(nextPutIndex(), x);
H A DByteBufferAsFloatBuffer.java109 put(nextPutIndex(), x);
H A DByteBufferAsIntBuffer.java109 put(nextPutIndex(), x);
H A DByteBufferAsLongBuffer.java109 put(nextPutIndex(), x);
H A DByteBufferAsShortBuffer.java108 put(nextPutIndex(), x);
H A DDirectByteBuffer.java260 put(ix(nextPutIndex()), x);
392 putChar(ix(nextPutIndex(SizeOf.CHAR)), x);
494 putShort(ix(nextPutIndex(SizeOf.SHORT)), x);
596 putInt(ix(nextPutIndex(SizeOf.INT)), x);
698 putLong(ix(nextPutIndex(SizeOf.LONG)), x);
802 putFloat(ix(nextPutIndex(SizeOf.FLOAT)), x);
906 putDouble(ix(nextPutIndex(SizeOf.DOUBLE)), x);
H A DByteBufferAsCharBuffer.java113 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 36 milliseconds