Home
last modified time | relevance | path

Searched refs:Smallest (Results 1 – 8 of 8) sorted by relevance

/external/llvm/test/Transforms/LoopVectorize/X86/
Dvector_ptr_load_store.ll20 ; CHECK: The Smallest and Widest types: 64 / 64 bits.
54 ; CHECK: The Smallest and Widest types: 16 / 16 bits.
96 ; CHECK: The Smallest and Widest types: 8 / 64 bits.
120 ; CHECK: LV: The Smallest and Widest types: 16 / 16 bits.
/external/llvm/lib/Target/SystemZ/
DSystemZTDC.cpp131 APFloat Smallest = APFloat::getSmallestNormalized(Sem); in convertFCmp() local
132 APFloat NegSmallest = Smallest; in convertFCmp()
142 } else if (Const->isExactlyValue(Smallest)) { in convertFCmp()
/external/llvm/lib/Transforms/Scalar/
DInductiveRangeCheckElimination.cpp849 const SCEV *Smallest = nullptr, *Greatest = nullptr; in calculateSubRanges() local
852 Smallest = Start; in calculateSubRanges()
871 Smallest = SE.getAddExpr(End, SE.getSCEV(One)); in calculateSubRanges()
875 auto Clamp = [this, Smallest, Greatest](const SCEV *S) { in calculateSubRanges()
876 return SE.getSMaxExpr(Smallest, SE.getSMinExpr(Greatest, S)); in calculateSubRanges()
882 SE.isKnownPredicate(ICmpInst::ICMP_SLE, Range.getBegin(), Smallest); in calculateSubRanges()
/external/llvm/test/CodeGen/Thumb/
Dlarge-stack.ll32 ; Smallest stack for which we use a constant pool
/external/llvm/utils/TableGen/
DCodeGenDAGPatterns.cpp391 MVT Smallest = *std::min_element(TypeVec.begin(), TypeVec.end(), in EnforceSmallerThan() local
399 [Smallest](MVT OtherVT) { in EnforceSmallerThan()
401 if (OtherVT.isVector() != Smallest.isVector()) in EnforceSmallerThan()
405 return OtherVT.getScalarSizeInBits() <= Smallest.getScalarSizeInBits()|| in EnforceSmallerThan()
406 OtherVT.getSizeInBits() < Smallest.getSizeInBits(); in EnforceSmallerThan()
/external/jemalloc/include/jemalloc/internal/
Djemalloc_internal.h.in225 /* Smallest size class to support. */
/external/clang/lib/CodeGen/
DCGBuiltin.cpp894 APFloat Smallest = APFloat::getSmallestNormalized( in EmitBuiltinExpr() local
897 Builder.CreateFCmpUGE(Abs, ConstantFP::get(V->getContext(), Smallest), in EmitBuiltinExpr()
946 APFloat Smallest = APFloat::getSmallestNormalized( in EmitBuiltinExpr() local
949 Builder.CreateFCmpUGE(VAbs, ConstantFP::get(V->getContext(), Smallest), in EmitBuiltinExpr()
/external/llvm/unittests/ADT/
DAPFloatTest.cpp3049 APFloat Smallest = APFloat::getSmallest(APFloat::IEEEdouble, false); in TEST() local
3106 Frac = frexp(Smallest, Exp, RM); in TEST()