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 209 int myPosition = position;
212 while (equalSoFar && (myPosition < limit)) {
213 double a = get(myPosition++);
301 int myPosition = position;
304 while (myPosition < limit) {
305 l = Double.doubleToLongBits(get(myPosition++));
FloatBuffer.java 210 int myPosition = position;
213 while (equalSoFar && (myPosition < limit)) {
214 float a = get(myPosition++);
302 int myPosition = position;
304 while (myPosition < limit) {
305 hash = hash + Float.floatToIntBits(get(myPosition++));
IntBuffer.java 199 int myPosition = position;
202 while (equalSoFar && (myPosition < limit)) {
203 equalSoFar = get(myPosition++) == otherBuffer.get(otherPosition++);
288 int myPosition = position;
290 while (myPosition < limit) {
291 hash = hash + get(myPosition++);
LongBuffer.java 201 int myPosition = position;
204 while (equalSoFar && (myPosition < limit)) {
205 equalSoFar = get(myPosition++) == otherBuffer.get(otherPosition++);
290 int myPosition = position;
293 while (myPosition < limit) {
294 l = get(myPosition++);
ShortBuffer.java 201 int myPosition = position;
204 while (equalSoFar && (myPosition < limit)) {
205 equalSoFar = get(myPosition++) == otherBuffer.get(otherPosition++);
291 int myPosition = position;
293 while (myPosition < limit) {
294 hash = hash + get(myPosition++);
ByteBuffer.java 343 int myPosition = position;
346 while (equalSoFar && (myPosition < limit)) {
347 equalSoFar = get(myPosition++) == otherBuffer.get(otherPosition++);
600 int myPosition = position;
602 while (myPosition < limit) {
603 hash = hash + get(myPosition++);
    [all...]
CharBuffer.java 258 int myPosition = position;
261 while (equalSoFar && (myPosition < limit)) {
262 equalSoFar = get(myPosition++) == otherBuffer.get(otherPosition++);
347 int myPosition = position;
349 while (myPosition < limit) {
350 hash = hash + get(myPosition++);

Completed in 559 milliseconds