Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DConstantRange.h272 enum PreferredRangeType { Smallest, Unsigned, Signed }; enumerator
278 PreferredRangeType Type = Smallest) const;
286 PreferredRangeType Type = Smallest) const;
347 PreferredRangeType RangeType = Smallest) const;
359 PreferredRangeType RangeType = Smallest) const;
/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/swiftshader/third_party/llvm-10.0/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/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/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DInductiveRangeCheckElimination.cpp1075 const SCEV *Smallest = nullptr, *Greatest = nullptr, *GreatestSeen = nullptr; in calculateSubRanges() local
1079 Smallest = Start; in calculateSubRanges()
1099 Smallest = SE.getAddExpr(End, One); in calculateSubRanges()
1104 auto Clamp = [this, Smallest, Greatest, IsSignedPredicate](const SCEV *S) { in calculateSubRanges()
1106 ? SE.getSMaxExpr(Smallest, SE.getSMinExpr(Greatest, S)) in calculateSubRanges()
1107 : SE.getUMaxExpr(Smallest, SE.getUMinExpr(Greatest, S)); in calculateSubRanges()
1117 SE.isKnownPredicate(PredLE, Range.getBegin(), Smallest); in calculateSubRanges()
/external/llvm/test/CodeGen/Thumb/
Dlarge-stack.ll32 ; Smallest stack for which we use a constant pool
/external/tensorflow/tensorflow/lite/g3doc/performance/
Dmodel_optimization.md93 … | No data | Up to 75% | Smallest accuracy loss …
95 …ization/training) | Labelled training data | Up to 75% | Smallest accuracy loss …
/external/rust/crates/ciborium/
DREADME.md23 ### Always Serialize Numeric Values to the Smallest Size
/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/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()
/external/mbedtls/tests/suites/
Dtest_suite_bignum_core.generated.data1376 Constant time MPI table lookup - Smallest curve sized MPI with 0 bit window
1379 Constant time MPI table lookup - Smallest curve sized MPI with 1 bit window
1382 Constant time MPI table lookup - Smallest curve sized MPI with 2 bit window
1385 Constant time MPI table lookup - Smallest curve sized MPI with 3 bit window
1388 Constant time MPI table lookup - Smallest curve sized MPI with 4 bit window
1391 Constant time MPI table lookup - Smallest curve sized MPI with 5 bit window
1394 Constant time MPI table lookup - Smallest curve sized MPI with 6 bit window
/external/deqp/external/vulkancts/data/vulkan/amber/spirv_assembly/instruction/float32/comparison/
Dinput.txt9 # Smallest number greater than one
/external/one-true-awk/testdir/
Dfunstack.ok2081 -- for Finding the $i$th Smallest of $n$
3605 Smallest of $n$ Elements [M1]'' . . . . 301--304
Dfunstack.in15697 …title = "{ACM} Algorithm 489: The Algorithm {SELECT} -- for Finding the $i$th Smallest of $…
26772 …ark on {``Algorithm 489: The Algorithm SELECT --- for Finding the $i$th Smallest of $n$ Elements […
/external/harfbuzz_ng/perf/texts/
Den-words.txt10023 Smallest
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DScalarEvolution.cpp5889 return SR.intersectWith(UR, ConstantRange::Smallest); in getRangeForAffineAR()