Home
last modified time | relevance | path

Searched refs:Normalized (Results 1 – 10 of 10) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCUDARuntime.h60 unsigned Normalized : 1; // Normalized texture. variable
65 : Kind(K), Extern(E), Constant(C), Managed(M), Normalized(N), in DeviceVarFlags()
72 bool isNormalized() const { return Normalized; } in isNormalized()
H A DCGCUDANV.cpp147 bool Extern, int Type, bool Normalized) { in registerDeviceTex() argument
151 /*Managed*/ false, Normalized, Type}}); in registerDeviceTex()
1057 auto Normalized = Args[2].getAsIntegral(); in handleVarRegistration() local
1060 Normalized.getZExtValue()); in handleVarRegistration()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaConcept.cpp670 auto Normalized = in getNormalizedAssociatedConstraints() local
676 Normalized in getNormalizedAssociatedConstraints()
678 std::move(*Normalized)) in getNormalizedAssociatedConstraints()
817 if (Normalized.isAtomic()) in makeCNF()
818 return {{Normalized.getAtomicConstraint()}}; in makeCNF()
820 NormalForm LCNF = makeCNF(Normalized.getLHS()); in makeCNF()
821 NormalForm RCNF = makeCNF(Normalized.getRHS()); in makeCNF()
846 if (Normalized.isAtomic()) in makeDNF()
847 return {{Normalized.getAtomicConstraint()}}; in makeDNF()
849 NormalForm LDNF = makeDNF(Normalized.getLHS()); in makeDNF()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DScalarEvolutionExpander.cpp1250 bool IsMatchingSCEV = PhiSCEV == Normalized; in getAddRecExprPHILiterally()
1330 expandCodeForImpl(Normalized->getStart(), ExpandTy, in getAddRecExprPHILiterally()
1341 const SCEV *Step = Normalized->getStepRecurrence(SE); in getAddRecExprPHILiterally()
1410 const SCEVAddRecExpr *Normalized = S; in expandAddRecExprLiterally() local
1418 const SCEV *Start = Normalized->getStart(); in expandAddRecExprLiterally()
1422 Start = SE.getConstant(Normalized->getType(), 0); in expandAddRecExprLiterally()
1423 Normalized = cast<SCEVAddRecExpr>( in expandAddRecExprLiterally()
1425 Normalized->getLoop(), in expandAddRecExprLiterally()
1430 const SCEV *Step = Normalized->getStepRecurrence(SE); in expandAddRecExprLiterally()
1434 Step = SE.getConstant(Normalized->getType(), 1); in expandAddRecExprLiterally()
[all …]
/freebsd-13.1/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/
H A Dtst.clearnormalize.d.out1 Normalized data before clear:
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DMIRPrinter.cpp629 SmallVector<BranchProbability,8> Normalized(MBB.Probs.begin(), in canPredictBranchProbabilities() local
631 BranchProbability::normalizeProbabilities(Normalized.begin(), in canPredictBranchProbabilities()
632 Normalized.end()); in canPredictBranchProbabilities()
633 SmallVector<BranchProbability,8> Equal(Normalized.size()); in canPredictBranchProbabilities()
636 return std::equal(Normalized.begin(), Normalized.end(), Equal.begin()); in canPredictBranchProbabilities()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DTypoCorrection.h128 unsigned getEditDistance(bool Normalized = true) const {
141 return Normalized ? NormalizeEditDistance(ED) : ED;
H A DSemaInternal.h131 unsigned getBestEditDistance(bool Normalized) { in getBestEditDistance() argument
136 return Normalized ? TypoCorrection::NormalizeEditDistance(BestED) : BestED; in getBestEditDistance()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DScalarEvolutionExpander.h486 PHINode *getAddRecExprPHILiterally(const SCEVAddRecExpr *Normalized,
/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A DAPFloat.cpp4175 IEEEFloat Normalized(Arg); in ilogb() local
4178 Normalized.exponent += SignificandBits; in ilogb()
4179 Normalized.normalize(IEEEFloat::rmNearestTiesToEven, lfExactlyZero); in ilogb()
4180 return Normalized.exponent - SignificandBits; in ilogb()