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

  /libcore/luni/src/main/java/java/util/
BitSet.java 261 long highMask = ALL_ONES >>> -toIndex;
264 long result = (bits[firstArrayIndex] & (lowMask & highMask)) >>> fromIndex;
275 newBits[newBits.length - 1] = bits[lastArrayIndex] & highMask;
361 long highMask = ALL_ONES >>> -toIndex;
363 bits[firstArrayIndex] |= (lowMask & highMask);
370 bits[i++] |= highMask;
398 long highMask = ALL_ONES >>> -toIndex;
400 bits[firstArrayIndex] &= ~(lowMask & highMask);
407 bits[i++] &= ~highMask;
431 long highMask = ALL_ONES >>> -toIndex
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.cpp 665 APInt HighMask = APInt::getHighBitsSet(64, 32);
668 if (DAG.MaskedValueIsZero(Mul.getOperand(0), HighMask) &&
669 DAG.MaskedValueIsZero(Mul.getOperand(1), HighMask)) {
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeIntegerTypes.cpp     [all...]

Completed in 113 milliseconds