HomeSort by: relevance | last modified time | path
    Searched refs:SIntMax (Results 1 - 10 of 10) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_value.cc 23 SIntMax Value::getSIntValue() const {
27 // to SIntMax.
29 sizeof(SIntMax) * 8 - getType().getIntegerBitWidth();
30 return SIntMax(Val) << ExtraBits >> ExtraBits;
63 SIntMax Val = getSIntValue();
ubsan_value.h 33 typedef s128 SIntMax;
36 typedef s64 SIntMax;
173 SIntMax getSIntValue() const;
ubsan_diag.h 166 Arg(SIntMax SInt) : Kind(AK_SInt), SInt(SInt) {}
174 SIntMax SInt;
  /src/external/gpl3/gcc/dist/libsanitizer/ubsan/
ubsan_value.cpp 68 SIntMax Value::getSIntValue() const {
72 // to SIntMax.
74 sizeof(SIntMax) * 8 - getType().getIntegerBitWidth();
75 return SIntMax(UIntMax(Val) << ExtraBits) >> ExtraBits;
108 SIntMax Val = getSIntValue();
ubsan_value.h 32 typedef s128 SIntMax;
35 typedef s64 SIntMax;
175 SIntMax getSIntValue() const;
ubsan_diag.h 165 Arg(SIntMax SInt) : Kind(AK_SInt), SInt(SInt) {}
173 SIntMax SInt;
  /src/external/gpl3/gcc.old/dist/libsanitizer/ubsan/
ubsan_value.cpp 70 SIntMax Value::getSIntValue() const {
74 // to SIntMax.
76 sizeof(SIntMax) * 8 - getType().getIntegerBitWidth();
77 return SIntMax(UIntMax(Val) << ExtraBits) >> ExtraBits;
110 SIntMax Val = getSIntValue();
ubsan_value.h 32 typedef s128 SIntMax;
35 typedef s64 SIntMax;
175 SIntMax getSIntValue() const;
ubsan_diag.h 165 Arg(SIntMax SInt) : Kind(AK_SInt), SInt(SInt) {}
173 SIntMax SInt;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
InductiveRangeCheckElimination.cpp 397 const SCEV *SIntMax = SE.getConstant(APInt::getSignedMaxValue(BitWidth));
398 End = SIntMax;
1628 const SCEV *SIntMax = SE.getConstant(APInt::getSignedMaxValue(BitWidth));
1658 const SCEV *XMinusSIntMax = SE.getMinusSCEV(X, SIntMax);

Completed in 22 milliseconds