/libcore/ojluni/annotations/hiddenapi/java/nio/ |
D | Buffer.java | 96 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/ |
D | HeapByteBuffer.java | 221 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()
|
D | Buffer.java | 708 final int nextGetIndex() { // package-private 716 final int nextGetIndex(int nb) { // package-private
|
D | DirectByteBuffer.java | 245 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()
|
D | Heap-X-Buffer.java.template | 221 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 …]
|
D | StringCharBuffer.java | 93 return str.charAt(nextGetIndex() + offset); in get()
|
D | ByteBufferAsDoubleBuffer.java | 163 return get(nextGetIndex()); in get()
|
D | ByteBufferAsLongBuffer.java | 163 return get(nextGetIndex()); in get()
|
D | ByteBufferAsIntBuffer.java | 163 return get(nextGetIndex()); in get()
|
D | ByteBufferAsShortBuffer.java | 163 return get(nextGetIndex()); in get()
|
D | ByteBufferAsFloatBuffer.java | 163 return get(nextGetIndex()); in get()
|
D | HeapIntBuffer.java | 221 return hb[ix(nextGetIndex())]; in get()
|
D | HeapFloatBuffer.java | 221 return hb[ix(nextGetIndex())]; in get()
|
D | HeapShortBuffer.java | 221 return hb[ix(nextGetIndex())]; in get()
|
D | HeapLongBuffer.java | 221 return hb[ix(nextGetIndex())]; in get()
|
D | HeapDoubleBuffer.java | 221 return hb[ix(nextGetIndex())]; in get()
|
D | Direct-X-Buffer-bin.java.template | 45 return get$Type$(ix(nextGetIndex($BYTES_PER_VALUE$)));
|
D | ByteBufferAsCharBuffer.java | 163 return get(nextGetIndex()); in get()
|
D | HeapCharBuffer.java | 221 return hb[ix(nextGetIndex())]; in get()
|
D | ByteBufferAs-X-Buffer.java.template | 160 …memtype$ x = SCOPED_MEMORY_ACCESS.get$Memtype$Unaligned(scope(), bb.hb, byteOffset(nextGetIndex()), 163 return get(nextGetIndex());
|
D | Direct-X-Buffer.java.template | 324 … return $fromBits$($swap$(SCOPED_MEMORY_ACCESS.get$Swaptype$(scope(), null, ix(nextGetIndex()))));
|