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

  /frameworks/base/packages/Osu/src/com/android/hotspot2/asn1/
Asn1Integer.java 8 private static final int SignBit = 0x80;
17 long value = (data.get(data.position()) & SignBit) != 0 ? -1 : 0;
  /external/icu/icu4c/source/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))
LigatureSubstProc2.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 245 SDValue SignBit = DAG.getNode(
249 SignBit = DAG.getNode(ISD::AND, dl, RVT, RHS, SignBit);
254 SignBit =
255 DAG.getNode(ISD::SRL, dl, RVT, SignBit,
257 TLI.getShiftAmountTy(SignBit.getValueType(),
259 SignBit = DAG.getNode(ISD::TRUNCATE, dl, LVT, SignBit);
261 SignBit = DAG.getNode(ISD::ANY_EXTEND, dl, LVT, SignBit);
    [all...]
TargetLowering.cpp     [all...]
LegalizeDAG.cpp     [all...]
DAGCombiner.cpp     [all...]
SelectionDAG.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp 656 APInt SignBit(APInt::getSignBit(BitWidth));
658 SignBit = APIntOps::lshr(SignBit, ShiftAmt);
669 } else if ((KnownOne & SignBit) != 0) { // New bits are known one.
    [all...]
InstCombineCompares.cpp     [all...]
  /external/llvm/lib/Support/
APInt.cpp 1062 unsigned SignBit = APINT_BITS_PER_WORD - BitWidth;
1064 (((int64_t(VAL) << SignBit) >> SignBit) >> shiftAmt));
    [all...]
  /external/llvm/lib/Analysis/
ValueTracking.cpp     [all...]
  /external/llvm/lib/Target/AMDGPU/
AMDGPUISelLowering.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]

Completed in 906 milliseconds