Home
last modified time | relevance | path

Searched refs:nextPutIndex (Results 1 – 20 of 20) sorted by relevance

/libcore/ojluni/annotations/hiddenapi/java/nio/
DBuffer.java104 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/
DHeapByteBuffer.java274 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()
DDirectByteBuffer.java296 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()
DBuffer.java731 final int nextPutIndex() { // package-private
739 final int nextPutIndex(int nb) { // package-private
DHeap-X-Buffer.java.template274 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 …]
DByteBufferAsDoubleBuffer.java217 put(nextPutIndex(), x); in put()
DByteBufferAsLongBuffer.java217 put(nextPutIndex(), x); in put()
DByteBufferAsIntBuffer.java217 put(nextPutIndex(), x); in put()
DByteBufferAsShortBuffer.java217 put(nextPutIndex(), x); in put()
DByteBufferAsFloatBuffer.java217 put(nextPutIndex(), x); in put()
DHeapIntBuffer.java274 hb[ix(nextPutIndex())] = x; in put()
DHeapFloatBuffer.java274 hb[ix(nextPutIndex())] = x; in put()
DHeapShortBuffer.java274 hb[ix(nextPutIndex())] = x; in put()
DHeapLongBuffer.java274 hb[ix(nextPutIndex())] = x; in put()
DHeapDoubleBuffer.java274 hb[ix(nextPutIndex())] = x; in put()
DDirect-X-Buffer-bin.java.template77 put$Type$(ix(nextPutIndex($BYTES_PER_VALUE$)), x);
DByteBufferAsCharBuffer.java217 put(nextPutIndex(), x); in put()
DHeapCharBuffer.java274 hb[ix(nextPutIndex())] = x; in put()
DByteBufferAs-X-Buffer.java.template215 // SCOPED_MEMORY_ACCESS.put$Memtype$Unaligned(scope(), bb.hb, byteOffset(nextPutIndex()), y,
217 put(nextPutIndex(), x);
DDirect-X-Buffer.java.template352 … SCOPED_MEMORY_ACCESS.put$Swaptype$(scope(), null, ix(nextPutIndex()), $swap$($toBits$(x)));