Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGCUDARuntime.h73 unsigned Normalized : 1; // Normalized texture. variable
78 : Kind(K), Extern(E), Constant(C), Managed(M), Normalized(N), in DeviceVarFlags()
85 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()
1068 auto Normalized = Args[2].getAsIntegral(); in handleVarRegistration() local
1071 Normalized.getZExtValue()); in handleVarRegistration()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaConcept.cpp709 auto Normalized = in getNormalizedAssociatedConstraints() local
715 Normalized in getNormalizedAssociatedConstraints()
717 std::move(*Normalized)) in getNormalizedAssociatedConstraints()
856 if (Normalized.isAtomic()) in makeCNF()
857 return {{Normalized.getAtomicConstraint()}}; in makeCNF()
859 NormalForm LCNF = makeCNF(Normalized.getLHS()); in makeCNF()
860 NormalForm RCNF = makeCNF(Normalized.getRHS()); in makeCNF()
885 if (Normalized.isAtomic()) in makeDNF()
886 return {{Normalized.getAtomicConstraint()}}; in makeDNF()
888 NormalForm LDNF = makeDNF(Normalized.getLHS()); in makeDNF()
[all …]
/llvm-project-15.0.7/llvm/lib/Transforms/Utils/
H A DScalarEvolutionExpander.cpp1207 bool IsMatchingSCEV = PhiSCEV == Normalized; in getAddRecExprPHILiterally()
1280 expandCodeForImpl(Normalized->getStart(), ExpandTy, in getAddRecExprPHILiterally()
1291 const SCEV *Step = Normalized->getStepRecurrence(SE); in getAddRecExprPHILiterally()
1360 const SCEVAddRecExpr *Normalized = S; in expandAddRecExprLiterally() local
1368 const SCEV *Start = Normalized->getStart(); in expandAddRecExprLiterally()
1372 Start = SE.getConstant(Normalized->getType(), 0); in expandAddRecExprLiterally()
1373 Normalized = cast<SCEVAddRecExpr>( in expandAddRecExprLiterally()
1375 Normalized->getLoop(), in expandAddRecExprLiterally()
1380 const SCEV *Step = Normalized->getStepRecurrence(SE); in expandAddRecExprLiterally()
1384 Step = SE.getConstant(Normalized->getType(), 1); in expandAddRecExprLiterally()
[all …]
/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DConfigCompile.cpp414 std::vector<std::string> Normalized; in compile() local
423 Normalized.push_back(normalizeSuppressedCode(*Suppressed).str()); in compile()
425 if (!Normalized.empty()) in compile()
427 [Normalized(std::move(Normalized))](const Params &, Config &C) { in compile()
430 for (llvm::StringRef N : Normalized) in compile()
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DMIRPrinter.cpp631 SmallVector<BranchProbability,8> Normalized(MBB.Probs.begin(), in canPredictBranchProbabilities() local
633 BranchProbability::normalizeProbabilities(Normalized.begin(), in canPredictBranchProbabilities()
634 Normalized.end()); in canPredictBranchProbabilities()
635 SmallVector<BranchProbability,8> Equal(Normalized.size()); in canPredictBranchProbabilities()
638 return std::equal(Normalized.begin(), Normalized.end(), Equal.begin()); in canPredictBranchProbabilities()
/llvm-project-15.0.7/libclc/r600/lib/image/
H A Dread_image_impl.ll39 i32 1, i32 1, i32 1, i32 1) ; Normalized coords.
/llvm-project-15.0.7/polly/lib/Transform/
H A DZoneAlgo.cpp884 isl::union_map Normalized = in makeNormalizedValInst() local
886 return Normalized; in makeNormalizedValInst()
/llvm-project-15.0.7/llvm/include/llvm/Transforms/Utils/
H A DScalarEvolutionExpander.h488 PHINode *getAddRecExprPHILiterally(const SCEVAddRecExpr *Normalized,
/llvm-project-15.0.7/llvm/lib/Support/
H A DAPFloat.cpp4193 IEEEFloat Normalized(Arg); in ilogb() local
4196 Normalized.exponent += SignificandBits; in ilogb()
4197 Normalized.normalize(IEEEFloat::rmNearestTiesToEven, lfExactlyZero); in ilogb()
4198 return Normalized.exponent - SignificandBits; in ilogb()
/llvm-project-15.0.7/mlir/test/Dialect/Affine/
H A Dloop-coalescing.mlir96 // Normalized lower bound and step for the outer scf.