Searched refs:nextPutIndex (Results 1 – 16 of 16) sorted by relevance
/libcore/ojluni/annotations/hiddenapi/java/nio/ |
D | Buffer.java | 104 final int nextPutIndex() { in nextPutIndex() method in Buffer 108 final int nextPutIndex(int nb) { in nextPutIndex() method in Buffer
|
/libcore/ojluni/src/main/java/java/nio/ |
D | HeapByteBuffer.java | 144 hb[ix(nextPutIndex())] = x; in put() 220 Bits.putChar(this, ix(nextPutIndex(2)), x, bigEndian); in putChar() 281 Bits.putShort(this, ix(nextPutIndex(2)), x, bigEndian); in putShort() 342 Bits.putInt(this, ix(nextPutIndex(4)), x, bigEndian); in putInt() 404 Bits.putLong(this, ix(nextPutIndex(8)), x, bigEndian); in putLong() 465 Bits.putFloat(this, ix(nextPutIndex(4)), x, bigEndian); in putFloat() 526 Bits.putDouble(this, ix(nextPutIndex(8)), x, bigEndian); in putDouble()
|
D | Buffer.java | 534 final int nextPutIndex() { // package-private in nextPutIndex() method in Buffer 540 final int nextPutIndex(int nb) { // package-private in nextPutIndex() method in Buffer
|
D | DirectByteBuffer.java | 267 put(ix(nextPutIndex()), x); in put() 399 putChar(ix(nextPutIndex(Character.BYTES)), x); in putChar() 501 putShort(ix(nextPutIndex(Short.BYTES)), x); in putShort() 603 putInt(ix(nextPutIndex(Integer.BYTES)), x); in putInt() 705 putLong(ix(nextPutIndex(Long.BYTES)), x); in putLong() 809 putFloat(ix(nextPutIndex(Float.BYTES)), x); in putFloat() 913 putDouble(ix(nextPutIndex(Double.BYTES)), x); in putDouble()
|
D | ByteBufferAsFloatBuffer.java | 109 put(nextPutIndex(), x); in put()
|
D | ByteBufferAsDoubleBuffer.java | 110 put(nextPutIndex(), x); in put()
|
D | ByteBufferAsShortBuffer.java | 108 put(nextPutIndex(), x); in put()
|
D | ByteBufferAsIntBuffer.java | 109 put(nextPutIndex(), x); in put()
|
D | ByteBufferAsLongBuffer.java | 109 put(nextPutIndex(), x); in put()
|
D | HeapLongBuffer.java | 139 hb[ix(nextPutIndex())] = x; in put()
|
D | HeapDoubleBuffer.java | 138 hb[ix(nextPutIndex())] = x; in put()
|
D | HeapShortBuffer.java | 138 hb[ix(nextPutIndex())] = x; in put()
|
D | HeapFloatBuffer.java | 137 hb[ix(nextPutIndex())] = x; in put()
|
D | HeapIntBuffer.java | 138 hb[ix(nextPutIndex())] = x; in put()
|
D | HeapCharBuffer.java | 143 hb[ix(nextPutIndex())] = x; in put()
|
D | ByteBufferAsCharBuffer.java | 113 put(nextPutIndex(), x); in put()
|