Home
last modified time | relevance | path

Searched refs:MaxInt (Results 1 – 5 of 5) sorted by relevance

/openbsd-src/gnu/usr.bin/perl/cpan/Time-Local/lib/Time/
H A DLocal.pm43 my $MaxInt;
47 $MaxInt = ( 1 << ( 8 * $Config::Config{ivsize} ) )
51 $MaxInt
56 $MaxDay = int( ( $MaxInt - ( SECS_PER_DAY / 2 ) ) / SECS_PER_DAY ) - 1;
/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DAPFixedPoint.cpp142 APSInt MaxInt = APFixedPoint::getMax(*this).getValue(); in fitsInFloatSemantics() local
144 APFloat::opStatus Status = F.convertFromAPInt(MaxInt, MaxInt.isSigned(), in fitsInFloatSemantics()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp10219 APInt MinInt, MaxInt; in expandFP_TO_INT_SAT() local
10222 MaxInt = APInt::getSignedMaxValue(SatWidth).sext(DstWidth); in expandFP_TO_INT_SAT()
10225 MaxInt = APInt::getMaxValue(SatWidth).zext(DstWidth); in expandFP_TO_INT_SAT()
10241 MaxFloat.convertFromAPInt(MaxInt, IsSigned, APFloat::rmTowardZero); in expandFP_TO_INT_SAT()
10276 SDValue MaxIntNode = DAG.getConstant(MaxInt, dl, DstVT); in expandFP_TO_INT_SAT()
/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DScalarEvolution.cpp10530 APInt MaxInt = getUnsignedRangeMax(applyLoopGuards(Exact, L)); in howFarToZero() local
10532 getConstant(APIntOps::umin(MaxInt, getUnsignedRangeMax(Exact))); in howFarToZero()
/openbsd-src/gnu/llvm/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp23164 APInt MinInt, MaxInt; in LowerFP_TO_INT_SAT() local
23167 MaxInt = APInt::getSignedMaxValue(SatWidth).sext(DstWidth); in LowerFP_TO_INT_SAT()
23170 MaxInt = APInt::getMaxValue(SatWidth).zext(DstWidth); in LowerFP_TO_INT_SAT()
23179 MaxInt, IsSigned, APFloat::rmTowardZero); in LowerFP_TO_INT_SAT()
23226 SDValue MaxIntNode = DAG.getConstant(MaxInt, dl, DstVT); in LowerFP_TO_INT_SAT()