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

  /libcore/luni/src/main/java/java/util/
BitSet.java 260 long lowMask = ALL_ONES << fromIndex;
264 long result = (bits[firstArrayIndex] & (lowMask & highMask)) >>> fromIndex;
274 newBits[0] = bits[firstArrayIndex] & lowMask;
360 long lowMask = ALL_ONES << fromIndex;
363 bits[firstArrayIndex] |= (lowMask & highMask);
366 bits[i++] |= lowMask;
397 long lowMask = ALL_ONES << fromIndex;
400 bits[firstArrayIndex] &= ~(lowMask & highMask);
403 bits[i++] &= ~lowMask;
430 long lowMask = ALL_ONES << fromIndex
    [all...]
  /frameworks/native/opengl/libs/ETC1/
etc1.cpp 328 etc1_uint32 lowMask = (((bestIndex >> 1) << 16) | (bestIndex & 1))
330 *pLow |= lowMask;
  /sdk/emulator/opengl/host/libs/Translator/GLcommon/
etc1.cpp 328 etc1_uint32 lowMask = (((bestIndex >> 1) << 16) | (bestIndex & 1))
330 *pLow |= lowMask;

Completed in 151 milliseconds