/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 | 274 hb[ix(nextPutIndex())] = x; in put() 467 Bits.putChar(this, ix(nextPutIndex(2)), x, bigEndian); in putChar() 583 Bits.putShort(this, ix(nextPutIndex(2)), x, bigEndian); in putShort() 685 Bits.putInt(this, ix(nextPutIndex(4)), x, bigEndian); in putInt() 788 Bits.putLong(this, ix(nextPutIndex(8)), x, bigEndian); in putLong() 895 Bits.putFloat(this, ix(nextPutIndex(4)), x, bigEndian); in putFloat() 1003 Bits.putDouble(this, ix(nextPutIndex(8)), x, bigEndian); in putDouble()
|
D | DirectByteBuffer.java | 296 put(ix(nextPutIndex()), x); in put() 430 putChar(ix(nextPutIndex(Character.BYTES)), x); in putChar() 532 putShort(ix(nextPutIndex(Short.BYTES)), x); in putShort() 634 putInt(ix(nextPutIndex(Integer.BYTES)), x); in putInt() 736 putLong(ix(nextPutIndex(Long.BYTES)), x); in putLong() 840 putFloat(ix(nextPutIndex(Float.BYTES)), x); in putFloat() 944 putDouble(ix(nextPutIndex(Double.BYTES)), x); in putDouble()
|
D | Buffer.java | 731 final int nextPutIndex() { // package-private 739 final int nextPutIndex(int nb) { // package-private
|
D | Heap-X-Buffer.java.template | 274 hb[ix(nextPutIndex())] = x; 466 … // SCOPED_MEMORY_ACCESS.putCharUnaligned(scope(), hb, byteOffset(nextPutIndex(2)), x, bigEndian); 467 Bits.putChar(this, ix(nextPutIndex(2)), x, bigEndian); 582 … // SCOPED_MEMORY_ACCESS.putShortUnaligned(scope(), hb, byteOffset(nextPutIndex(2)), x, bigEndian); 583 Bits.putShort(this, ix(nextPutIndex(2)), x, bigEndian); 684 … // SCOPED_MEMORY_ACCESS.putIntUnaligned(scope(), hb, byteOffset(nextPutIndex(4)), x, bigEndian); 685 Bits.putInt(this, ix(nextPutIndex(4)), x, bigEndian); 787 … // SCOPED_MEMORY_ACCESS.putLongUnaligned(scope(), hb, byteOffset(nextPutIndex(8)), x, bigEndian); 788 Bits.putLong(this, ix(nextPutIndex(8)), x, bigEndian); 894 … // SCOPED_MEMORY_ACCESS.putIntUnaligned(scope(), hb, byteOffset(nextPutIndex(4)), y, bigEndian); [all …]
|
D | ByteBufferAsDoubleBuffer.java | 217 put(nextPutIndex(), x); in put()
|
D | ByteBufferAsLongBuffer.java | 217 put(nextPutIndex(), x); in put()
|
D | ByteBufferAsIntBuffer.java | 217 put(nextPutIndex(), x); in put()
|
D | ByteBufferAsShortBuffer.java | 217 put(nextPutIndex(), x); in put()
|
D | ByteBufferAsFloatBuffer.java | 217 put(nextPutIndex(), x); in put()
|
D | HeapIntBuffer.java | 274 hb[ix(nextPutIndex())] = x; in put()
|
D | HeapFloatBuffer.java | 274 hb[ix(nextPutIndex())] = x; in put()
|
D | HeapShortBuffer.java | 274 hb[ix(nextPutIndex())] = x; in put()
|
D | HeapLongBuffer.java | 274 hb[ix(nextPutIndex())] = x; in put()
|
D | HeapDoubleBuffer.java | 274 hb[ix(nextPutIndex())] = x; in put()
|
D | Direct-X-Buffer-bin.java.template | 77 put$Type$(ix(nextPutIndex($BYTES_PER_VALUE$)), x);
|
D | ByteBufferAsCharBuffer.java | 217 put(nextPutIndex(), x); in put()
|
D | HeapCharBuffer.java | 274 hb[ix(nextPutIndex())] = x; in put()
|
D | ByteBufferAs-X-Buffer.java.template | 215 // SCOPED_MEMORY_ACCESS.put$Memtype$Unaligned(scope(), bb.hb, byteOffset(nextPutIndex()), y, 217 put(nextPutIndex(), x);
|
D | Direct-X-Buffer.java.template | 352 … SCOPED_MEMORY_ACCESS.put$Swaptype$(scope(), null, ix(nextPutIndex()), $swap$($toBits$(x)));
|