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

  /external/icu/icu4c/source/layout/
LigatureSubstProc2.cpp 20 #define SignBit(m) ((ExtendedComplement(m) >> 1) & (le_int32)(m))
21 #define SignExtend(v,m) (((v) & SignBit(m))? ((v) | ExtendedComplement(m)): (v))
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 193 SDValue SignBit = DAG.getNode(ISD::SHL, dl, RVT, DAG.getConstant(1, RVT),
196 SignBit = DAG.getNode(ISD::AND, dl, RVT, RHS, SignBit);
201 SignBit = DAG.getNode(ISD::SRL, dl, RVT, SignBit,
203 TLI.getShiftAmountTy(SignBit.getValueType())));
204 SignBit = DAG.getNode(ISD::TRUNCATE, dl, LVT, SignBit);
206 SignBit = DAG.getNode(ISD::ANY_EXTEND, dl, LVT, SignBit);
    [all...]
TargetLowering.cpp     [all...]
SelectionDAG.cpp     [all...]
DAGCombiner.cpp     [all...]
  /external/llvm/lib/Target/R600/
AMDGPUISelLowering.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp     [all...]

Completed in 859 milliseconds