HomeSort by relevance Sort by last modified time
    Searched refs:myPosition (Results 1 - 7 of 7) sorted by null

  /libcore/luni/src/main/java/java/nio/
DoubleBuffer.java 221 int myPosition = position;
224 while (equalSoFar && (myPosition < limit)) {
225 double a = get(myPosition++);
317 int myPosition = position;
320 while (myPosition < limit) {
321 l = Double.doubleToLongBits(get(myPosition++));
FloatBuffer.java 223 int myPosition = position;
226 while (equalSoFar && (myPosition < limit)) {
227 float a = get(myPosition++);
319 int myPosition = position;
321 while (myPosition < limit) {
322 hash = hash + Float.floatToIntBits(get(myPosition++));
IntBuffer.java 215 int myPosition = position;
218 while (equalSoFar && (myPosition < limit)) {
219 equalSoFar = get(myPosition++) == otherBuffer.get(otherPosition++);
307 int myPosition = position;
309 while (myPosition < limit) {
310 hash = hash + get(myPosition++);
LongBuffer.java 217 int myPosition = position;
220 while (equalSoFar && (myPosition < limit)) {
221 equalSoFar = get(myPosition++) == otherBuffer.get(otherPosition++);
310 int myPosition = position;
313 while (myPosition < limit) {
314 l = get(myPosition++);
ShortBuffer.java 215 int myPosition = position;
218 while (equalSoFar && (myPosition < limit)) {
219 equalSoFar = get(myPosition++) == otherBuffer.get(otherPosition++);
308 int myPosition = position;
310 while (myPosition < limit) {
311 hash = hash + get(myPosition++);
ByteBuffer.java 360 int myPosition = position;
363 while (equalSoFar && (myPosition < limit)) {
364 equalSoFar = get(myPosition++) == otherBuffer.get(otherPosition++);
623 int myPosition = position;
625 while (myPosition < limit) {
626 hash = hash + get(myPosition++);
    [all...]
CharBuffer.java 284 int myPosition = position;
287 while (equalSoFar && (myPosition < limit)) {
288 equalSoFar = get(myPosition++) == otherBuffer.get(otherPosition++);
377 int myPosition = position;
379 while (myPosition < limit) {
380 hash = hash + get(myPosition++);

Completed in 494 milliseconds