Searched defs:effectiveDirectAddress (Results 1 - 9 of 9) sorted by relevance

/libcore/luni/src/main/java/java/nio/
H A DMappedByteBuffer.java43 MappedByteBuffer(MemoryBlock block, int capacity, MapMode mapMode, long effectiveDirectAddress) { argument
44 super(capacity, effectiveDirectAddress);
H A DBuffer.java89 final long effectiveDirectAddress; field in class:Buffer
91 Buffer(int elementSizeShift, int capacity, long effectiveDirectAddress) { argument
97 this.effectiveDirectAddress = effectiveDirectAddress;
H A DDoubleBuffer.java95 DoubleBuffer(int capacity, long effectiveDirectAddress) { argument
96 super(3, capacity, effectiveDirectAddress);
H A DFloatBuffer.java96 FloatBuffer(int capacity, long effectiveDirectAddress) { argument
97 super(2, capacity, effectiveDirectAddress);
H A DIntBuffer.java92 IntBuffer(int capacity, long effectiveDirectAddress) { argument
93 super(2, capacity, effectiveDirectAddress);
H A DLongBuffer.java94 LongBuffer(int capacity, long effectiveDirectAddress) { argument
95 super(3, capacity, effectiveDirectAddress);
H A DShortBuffer.java94 ShortBuffer(int capacity, long effectiveDirectAddress) { argument
95 super(1, capacity, effectiveDirectAddress);
H A DByteBuffer.java119 ByteBuffer(int capacity, long effectiveDirectAddress) { argument
120 super(0, capacity, effectiveDirectAddress);
H A DCharBuffer.java140 CharBuffer(int capacity, long effectiveDirectAddress) { argument
141 super(1, capacity, effectiveDirectAddress);

Completed in 72 milliseconds