Home | History | Annotate | Download | only in Core

Lines Matching refs:Value

16 APSIntType::testInRange(const llvm::APSInt &Value,
21 Value.isSigned() && Value.isNegative())
26 if (Value.isSigned() && !IsUnsigned)
27 MinBits = Value.getMinSignedBits();
29 MinBits = Value.getActiveBits();
36 if (Value.isSigned())
37 MinBits = Value.getMinSignedBits() - IsUnsigned;
39 MinBits = Value.getActiveBits() + !IsUnsigned;
45 if (Value.isSigned() && Value.isNegative())