Home | History | Annotate | Download | only in nio

Lines Matching refs:dstOffset

211     void getUnchecked(int pos, char[] dst, int dstOffset, int length) {
212 Memory.unsafeBulkGet(dst, dstOffset, length * 2, hb, ix(pos), 2, !nativeByteOrder);
272 void getUnchecked(int pos, short[] dst, int dstOffset, int length) {
273 Memory.unsafeBulkGet(dst, dstOffset, length * 2, hb, ix(pos), 2, !nativeByteOrder);
333 void getUnchecked(int pos, int[] dst, int dstOffset, int length) {
334 Memory.unsafeBulkGet(dst, dstOffset, length * 4, hb, ix(pos), 4, !nativeByteOrder);
395 void getUnchecked(int pos, long[] dst, int dstOffset, int length) {
396 Memory.unsafeBulkGet(dst, dstOffset, length * 8, hb, ix(pos), 8, !nativeByteOrder);
456 void getUnchecked(int pos, float[] dst, int dstOffset, int length) {
457 Memory.unsafeBulkGet(dst, dstOffset, length * 4, hb, ix(pos), 4, !nativeByteOrder);
517 void getUnchecked(int pos, double[] dst, int dstOffset, int length) {
518 Memory.unsafeBulkGet(dst, dstOffset, length * 8, hb, ix(pos), 8, !nativeByteOrder);