HomeSort by relevance Sort by last modified time
    Searched refs:checkIndex (Results 1 - 25 of 55) sorted by null

1 2 3

  /libcore/ojluni/src/main/java/java/nio/
StringCharBuffer.java 76 return str.charAt(checkIndex(index) + offset);
110 pos + checkIndex(start, pos),
111 pos + checkIndex(end, pos),
HeapByteBuffer.java 118 return hb[ix(checkIndex(i))];
150 hb[ix(checkIndex(i))] = x;
193 return Bits.getChar(this, ix(checkIndex(i, 2)), bigEndian);
216 Bits.putChar(this, ix(checkIndex(i, 2)), x, bigEndian);
245 return Bits.getShort(this, ix(checkIndex(i, 2)), bigEndian);
268 Bits.putShort(this, ix(checkIndex(i, 2)), x, bigEndian);
297 return Bits.getInt(this, ix(checkIndex(i, 4)), bigEndian);
320 Bits.putInt(this, ix(checkIndex(i, 4)), x, bigEndian);
350 return Bits.getLong(this, ix(checkIndex(i, 8)), bigEndian);
373 Bits.putLong(this, ix(checkIndex(i, 8)), x, bigEndian)
    [all...]
DirectByteBuffer.java 204 return get(ix(checkIndex(i)));
247 put(ix(checkIndex(i)), x);
329 checkIndex(i, SizeOf.CHAR);
367 putChar(ix(checkIndex(i, SizeOf.CHAR)), x);
413 return getShort(ix(checkIndex(i, SizeOf.SHORT)));
449 putShort(ix(checkIndex(i, SizeOf.SHORT)), x);
495 return getInt(ix(checkIndex(i, (SizeOf.INT))));
530 putInt(ix(checkIndex(i, SizeOf.INT)), x);
577 return getLong(ix(checkIndex(i, SizeOf.LONG)));
612 putLong(ix(checkIndex(i, SizeOf.LONG)), x)
    [all...]
Buffer.java 525 final int checkIndex(int i) { // package-private
533 final int checkIndex(int i, int nb) { // package-private
ByteBufferAsDoubleBuffer.java 96 return bb.getDoubleUnchecked(ix(checkIndex(i)));
117 bb.putDoubleUnchecked(ix(checkIndex(i)), x);
ByteBufferAsFloatBuffer.java 95 return bb.getFloatUnchecked(ix(checkIndex(i)));
116 bb.putFloatUnchecked(ix(checkIndex(i)), x);
ByteBufferAsIntBuffer.java 95 return bb.getIntUnchecked(ix(checkIndex(i)));
116 bb.putIntUnchecked(ix(checkIndex(i)), x);
ByteBufferAsLongBuffer.java 95 return bb.getLongUnchecked(ix(checkIndex(i)));
116 bb.putLongUnchecked(ix(checkIndex(i)), x);
ByteBufferAsShortBuffer.java 93 return bb.getShortUnchecked(ix(checkIndex(i)));
115 bb.putShortUnchecked(ix(checkIndex(i)), x);
ByteBufferAsCharBuffer.java 95 return bb.getCharUnchecked(ix(checkIndex(i)));
120 bb.putCharUnchecked(ix(checkIndex(i)), x);
HeapCharBuffer.java 115 return hb[ix(checkIndex(i))];
151 hb[ix(checkIndex(i))] = x;
HeapDoubleBuffer.java 114 return hb[ix(checkIndex(i))];
146 hb[ix(checkIndex(i))] = x;
HeapFloatBuffer.java 113 return hb[ix(checkIndex(i))];
145 hb[ix(checkIndex(i))] = x;
HeapIntBuffer.java 114 return hb[ix(checkIndex(i))];
146 hb[ix(checkIndex(i))] = x;
HeapLongBuffer.java 115 return hb[ix(checkIndex(i))];
147 hb[ix(checkIndex(i))] = x;
HeapShortBuffer.java 114 return hb[ix(checkIndex(i))];
146 hb[ix(checkIndex(i))] = x;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
SparseFieldVector.java 308 checkIndex(index);
320 checkIndex(index);
321 checkIndex(index + n - 1);
470 checkIndex(index);
477 checkIndex(index);
478 checkIndex(index + v.getDimension() - 1);
484 checkIndex(index);
485 checkIndex(index + v.length - 1);
550 private void checkIndex(final int index) throws MatrixIndexException {
ArrayFieldVector.java 700 checkIndex(index);
701 checkIndex(index + n - 1);
711 checkIndex(index);
726 checkIndex(index);
727 checkIndex(index + v.getDimension() - 1);
736 checkIndex(index);
737 checkIndex(index + v.length - 1);
861 private void checkIndex(final int index)
OpenMapRealVector.java 376 checkIndex(index);
377 checkIndex(index + n - 1);
460 checkIndex(index);
642 checkIndex(index);
653 checkIndex(index);
654 checkIndex(index + v.getDimension() - 1);
661 checkIndex(index);
662 checkIndex(index + v.length - 1);
AbstractRealVector.java 70 protected void checkIndex(final int index)
80 checkIndex(index);
81 checkIndex(index + v.getDimension() - 1);
87 checkIndex(index);
88 checkIndex(index + v.length - 1);
ArrayRealVector.java 1029 checkIndex(index);
1030 checkIndex(index + n - 1);
1040 checkIndex(index);
1056 checkIndex(index);
1057 checkIndex(index + v.getDimension() - 1);
1067 checkIndex(index);
1068 checkIndex(index + v.length - 1);
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
EncodeDecodeTest.java 593 int checkIndex = 0;
    [all...]
DecodeEditEncodeTest.java 651 int checkIndex = 0;
    [all...]
  /frameworks/base/core/java/android/view/inputmethod/
SparseRectFArray.java 148 private void checkIndex(final int key) {
205 checkIndex(key);
  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLEngineImpl.java 375 private static void checkIndex(int length, int offset, int count) {
395 checkIndex(dsts.length, offset, length);
528 checkIndex(srcs.length, offset, length);

Completed in 275 milliseconds

1 2 3