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

  /external/icu4c/layout/
LigatureSubstProc.cpp 20 #define SignBit(m) ((ExtendedComplement(m) >> 1) & (le_int32)(m))
21 #define SignExtend(v,m) (((v) & SignBit(m))? ((v) | ExtendedComplement(m)): (v))
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeFloatTypes.cpp 190 SDValue SignBit = DAG.getNode(ISD::SHL, dl, RVT, DAG.getConstant(1, RVT),
193 SignBit = DAG.getNode(ISD::AND, dl, RVT, RHS, SignBit);
198 SignBit = DAG.getNode(ISD::SRL, dl, RVT, SignBit,
200 TLI.getShiftAmountTy(SignBit.getValueType())));
201 SignBit = DAG.getNode(ISD::TRUNCATE, dl, LVT, SignBit);
203 SignBit = DAG.getNode(ISD::ANY_EXTEND, dl, LVT, SignBit);
    [all...]
TargetLowering.cpp 719 APInt SignBit = APInt::getSignBit(BitWidth).lshr(ShAmt);
723 if (KnownZero.intersects(SignBit) || (HighBits & ~NewMask) == HighBits) {
727 } else if (KnownOne.intersects(SignBit)) { // New bits are known one.
    [all...]
SelectionDAG.cpp     [all...]
DAGCombiner.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]

Completed in 499 milliseconds