Home
last modified time | relevance | path

Searched refs:MinBits (Results 1 – 3 of 3) sorted by relevance

/external/clang/lib/StaticAnalyzer/Core/
DAPSIntType.cpp24 unsigned MinBits; in testInRange() local
27 MinBits = Value.getMinSignedBits(); in testInRange()
29 MinBits = Value.getActiveBits(); in testInRange()
37 MinBits = Value.getMinSignedBits() - IsUnsigned; in testInRange()
39 MinBits = Value.getActiveBits() + !IsUnsigned; in testInRange()
42 if (MinBits <= BitWidth) in testInRange()
/external/llvm/lib/Support/
DAPSInt.cpp27 unsigned MinBits = Tmp.getMinSignedBits(); in APSInt() local
28 if (MinBits > 0 && MinBits < NumBits) in APSInt()
29 Tmp = Tmp.trunc(MinBits); in APSInt()
/external/llvm/lib/CodeGen/SelectionDAG/
DTargetLowering.cpp1342 unsigned MinBits = N0.getValueSizeInBits(); in SimplifySetCC() local
1347 MinBits = N0->getOperand(0).getValueSizeInBits(); in SimplifySetCC()
1353 MinBits = C->getAPIntValue().countTrailingOnes(); in SimplifySetCC()
1358 MinBits = N0->getOperand(0).getValueSizeInBits(); in SimplifySetCC()
1364 MinBits = LN0->getMemoryVT().getSizeInBits(); in SimplifySetCC()
1368 MinBits = LN0->getMemoryVT().getSizeInBits(); in SimplifySetCC()
1379 if (MinBits > 0 && in SimplifySetCC()
1380 MinBits < C1.getBitWidth() && in SimplifySetCC()
1381 MinBits >= ReqdBits) { in SimplifySetCC()
1382 EVT MinVT = EVT::getIntegerVT(*DAG.getContext(), MinBits); in SimplifySetCC()
[all …]