HomeSort by relevance Sort by last modified time
    Searched defs:LowBits (Results 1 - 9 of 9) sorted by null

  /external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
PPCJITInfo.cpp 447 unsigned LowBits = (*RelocPos + ResultPtr) & 65535;
449 *RelocPos = LowBits | HighBits; // Slam into low 16-bits
456 unsigned LowBits = (*RelocPos + ResultPtr) & 0xFFFC;
458 *RelocPos = LowBits | HighBits; // Slam into low 14-bits.
  /art/compiler/utils/x86_64/
constants_x86_64.h 37 constexpr uint8_t LowBits() const {
55 constexpr uint8_t LowBits() const {
  /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstCombineShifts.cpp 131 unsigned LowBits = TypeWidth - CI->getZExtValue();
133 APInt::getLowBitsSet(TypeWidth, NumBits) << LowBits))
155 unsigned LowBits = CI->getZExtValue() - NumBits;
157 APInt::getLowBitsSet(TypeWidth, NumBits) << LowBits))
  /external/swiftshader/third_party/LLVM/lib/Analysis/
ValueTracking.cpp 471 APInt LowBits = RA - 1;
472 APInt Mask2 = LowBits | APInt::getSignBit(BitWidth);
477 KnownZero = KnownZero2 & LowBits;
478 KnownOne = KnownOne2 & LowBits;
482 if (KnownZero2[BitWidth-1] || ((KnownZero2 & LowBits) == LowBits))
483 KnownZero |= ~LowBits;
487 if (KnownOne2[BitWidth-1] && ((KnownOne2 & LowBits) != 0))
488 KnownOne |= ~LowBits;
514 APInt LowBits = (RA - 1)
    [all...]
  /external/llvm/lib/Analysis/
ValueTracking.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]
DAGCombiner.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]
DAGCombiner.cpp     [all...]

Completed in 423 milliseconds