Home
last modified time | relevance | path

Searched refs:nextGetIndex (Results 1 – 21 of 21) sorted by relevance

/libcore/ojluni/annotations/hiddenapi/java/nio/
DBuffer.java96 final int nextGetIndex() { in nextGetIndex() method in Buffer
100 final int nextGetIndex(int nb) { in nextGetIndex() method in Buffer
/libcore/ojluni/src/main/java/java/nio/
DHeapByteBuffer.java221 return hb[ix(nextGetIndex())]; in get()
448 return Bits.getChar(this, ix(nextGetIndex(2)), bigEndian); in getChar()
552 return Bits.getShort(this, ix(nextGetIndex(2)), bigEndian); in getShort()
654 return Bits.getInt(this, ix(nextGetIndex(4)), bigEndian); in getInt()
757 return Bits.getLong(this, ix(nextGetIndex(8)), bigEndian); in getLong()
862 return Bits.getFloat(this, ix(nextGetIndex(4)), bigEndian); in getFloat()
970 return Bits.getDouble(this, ix(nextGetIndex(8)), bigEndian); in getDouble()
DBuffer.java708 final int nextGetIndex() { // package-private
716 final int nextGetIndex(int nb) { // package-private
DDirectByteBuffer.java245 return get(ix(nextGetIndex())); in get()
491 return getShort(ix(nextGetIndex(Short.BYTES))); in getShort()
593 return getInt(ix(nextGetIndex(Integer.BYTES))); in getInt()
695 return getLong(ix(nextGetIndex(Long.BYTES))); in getLong()
798 return getFloat(ix(nextGetIndex(Float.BYTES))); in getFloat()
902 return getDouble(ix(nextGetIndex(Double.BYTES))); in getDouble()
DHeap-X-Buffer.java.template221 return hb[ix(nextGetIndex())];
447 …// return SCOPED_MEMORY_ACCESS.getCharUnaligned(scope(), hb, byteOffset(nextGetIndex(2)), bigEndia…
448 return Bits.getChar(this, ix(nextGetIndex(2)), bigEndian);
551 …// return SCOPED_MEMORY_ACCESS.getShortUnaligned(scope(), hb, byteOffset(nextGetIndex(2)), bigEndi…
552 return Bits.getShort(this, ix(nextGetIndex(2)), bigEndian);
653 …// return SCOPED_MEMORY_ACCESS.getIntUnaligned(scope(), hb, byteOffset(nextGetIndex(4)), bigEndian…
654 return Bits.getInt(this, ix(nextGetIndex(4)), bigEndian);
756 …// return SCOPED_MEMORY_ACCESS.getLongUnaligned(scope(), hb, byteOffset(nextGetIndex(8)), bigEndia…
757 return Bits.getLong(this, ix(nextGetIndex(8)), bigEndian);
860 …// int x = SCOPED_MEMORY_ACCESS.getIntUnaligned(scope(), hb, byteOffset(nextGetIndex(4)), bigEndia…
[all …]
DStringCharBuffer.java93 return str.charAt(nextGetIndex() + offset); in get()
DByteBufferAsDoubleBuffer.java163 return get(nextGetIndex()); in get()
DByteBufferAsLongBuffer.java163 return get(nextGetIndex()); in get()
DByteBufferAsIntBuffer.java163 return get(nextGetIndex()); in get()
DByteBufferAsShortBuffer.java163 return get(nextGetIndex()); in get()
DByteBufferAsFloatBuffer.java163 return get(nextGetIndex()); in get()
DHeapIntBuffer.java221 return hb[ix(nextGetIndex())]; in get()
DHeapFloatBuffer.java221 return hb[ix(nextGetIndex())]; in get()
DHeapShortBuffer.java221 return hb[ix(nextGetIndex())]; in get()
DHeapLongBuffer.java221 return hb[ix(nextGetIndex())]; in get()
DHeapDoubleBuffer.java221 return hb[ix(nextGetIndex())]; in get()
DDirect-X-Buffer-bin.java.template45 return get$Type$(ix(nextGetIndex($BYTES_PER_VALUE$)));
DByteBufferAsCharBuffer.java163 return get(nextGetIndex()); in get()
DHeapCharBuffer.java221 return hb[ix(nextGetIndex())]; in get()
DByteBufferAs-X-Buffer.java.template160 …memtype$ x = SCOPED_MEMORY_ACCESS.get$Memtype$Unaligned(scope(), bb.hb, byteOffset(nextGetIndex()),
163 return get(nextGetIndex());
DDirect-X-Buffer.java.template324 … return $fromBits$($swap$(SCOPED_MEMORY_ACCESS.get$Swaptype$(scope(), null, ix(nextGetIndex()))));