Home
last modified time | relevance | path

Searched refs:Normalize (Results 1 – 21 of 21) sorted by relevance

/llvm-project/llvm/lib/Analysis/
H A DScalarEvolutionNormalization.cpp24 Normalize, enumerator
69 assert(Kind == Normalize && "Only two possibilities!"); in visitAddRecExpr()
107 NormalizeDenormalizeRewriter(Normalize, Pred, SE).visit(S); in normalizeForPostIncUse()
117 return NormalizeDenormalizeRewriter(Normalize, Pred, SE).visit(S); in normalizeForPostIncUseIf()
/llvm-project/clang-tools-extra/clangd/refactor/tweaks/
H A DPopulateSwitch.cpp132 auto Normalize = [&](llvm::APSInt Val) { in REGISTER_TWEAK() local
140 std::make_pair(Normalize(EnumConstant->getInitVal()), EnumConstant)); in REGISTER_TWEAK()
161 auto Iter = ExpectedCases.find(Normalize(Enumerator->getInitVal())); in REGISTER_TWEAK()
181 auto Iter = ExpectedCases.find(Normalize(CE->getResultAsAPSInt())); in REGISTER_TWEAK()
/llvm-project/flang/include/flang/Evaluate/
H A Dreal.h191 epsilon.Normalize( in EPSILON()
197 huge.Normalize(false, maxExponent - 1, Fraction::MASKR(binaryPrecision)); in HUGE()
202 tiny.Normalize(false, 1, Fraction::MASKL(1)); // minimum *normal* number in TINY()
220 // Normalize a fraction with just its LSB set and then multiply.
251 twoPow.Normalize(false, static_cast<int>(expo), Fraction::MASKR(rMask));
308 result.flags |= result.value.Normalize(
312 result.flags |= result.value.Normalize(isNegative, exponent, fraction);
392 result.flags |= result.value.Normalize(isNegative, exponent, fraction);
396 result.flags |= result.value.Normalize(isNegative, exponent, fraction);
482 RealFlags Normalize(boo
[all...]
/llvm-project/flang/lib/Evaluate/
H A Dreal.cpp294 scaled.Normalize(false, expo - 2 * adjust + exponentBias, GetFraction()); in SQRT()
296 result.value.Normalize(false, in SQRT()
361 result.value.Normalize(isNegative, expo, nearest); in NEAREST()
398 one.Normalize(false, exponentBias, Fraction::MASKL(1)); // 1.0 in HYPOT()
432 half.Normalize(false, exponentBias - 1, Fraction::MASKL(1)); // 0.5 in MOD()
433 for (adj.Normalize(false, Exponent(), pAbs.GetFraction()); in MOD()
496 adjust.Normalize(IsSignBitSet(), noClipExponent, Fraction::MASKL(1)); in ToWholeNumber()
510 RealFlags Real<W, P>::Normalize(bool negative, int exponent, in Normalize()
596 flags |= Normalize(IsNegative(), newExponent, sum.value); in Round()
620 result.flags |= result.value.Normalize( in MapRoundingMode()
503 RealFlags Real<W, P>::Normalize(bool negative, int exponent, Normalize() function in Fortran::evaluate::value::Real
[all...]
/llvm-project/third-party/unittest/googletest/include/gtest/internal/
H A Dgtest-filepath.h75 Normalize(); in FilePath()
200 void Normalize();
/llvm-project/llvm/unittests/Support/
H A DUnicodeTest.cpp353 auto Normalize = [](StringRef Name) { in TEST() local
366 auto A = Normalize(r.Name); in TEST()
367 auto B = Normalize(name); in TEST()
/llvm-project/flang/lib/Decimal/
H A Dbig-radix-floating-point.h209 RT_API_ATTRS void Normalize() { in RemoveLeastOrderZeroDigits() function
288 Normalize(); in RemoveLeastOrderZeroDigits()
H A Dbinary-to-decimal.cpp76 Normalize();
277 Normalize(); in Minimize()
H A Ddecimal-to-binary.cpp362 Normalize(); in ConvertToBinary()
/llvm-project/flang/lib/Semantics/
H A Dcheck-io.cpp103 static std::string Normalize(const std::string &value) { in Normalize() function
163 std::string s{Normalize(*charConst)}; in Enter()
495 flags_.set(Flag::AsynchronousYes, Normalize(*charConst) == "YES"); in Enter()
531 flags_.set(Flag::AdvanceYes, Normalize(*charConst) == "YES"); in Enter()
643 std::string s{Normalize(*charConst)}; in Enter()
936 auto upper{Normalize(value)}; in CheckStringValue()
/llvm-project/llvm/lib/Support/
H A DUnicodeNameToCodepoint.cpp463 auto Normalize = [](StringRef Name) { in nearestMatchesForCodepointName() local
472 std::string NormalizedName = Normalize(Pattern); in nearestMatchesForCodepointName()
/llvm-project/third-party/unittest/googletest/src/
H A Dgtest-filepath.cc386 void FilePath::Normalize() { in Normalize() function in testing::internal::FilePath
/llvm-project/compiler-rt/lib/builtins/
H A Dfp_mul_impl.inc87 // Normalize the significand and adjust the exponent if needed.
H A Dfp_add_impl.inc73 // Normalize any denormals, and adjust the exponent accordingly.
/llvm-project/mlir/include/mlir/Dialect/MemRef/Transforms/
H A DPasses.td48 let summary = "Normalize memrefs";
/llvm-project/third-party/benchmark/
H A DCMakeLists.txt113 # Normalize version: drop "v" prefix, replace first "-" with ".",
/llvm-project/mlir/test/Dialect/Affine/
H A Daffine-loop-normalize.mlir4 // Normalize steps to 1 and lower bounds to 0.
/llvm-project/clang/docs/
H A DMultilib.rst63 #. Normalize command line options. Clang can accept the same
/llvm-project/clang/include/clang/Basic/
H A DCodeGenOptions.def276 CODEGENOPT(SanitizeCfiICallNormalizeIntegers, 1, 0) ///< Normalize integer types in
/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVBuiltins.td443 defm : DemangledExtendedBuiltin<"Normalize", GLSL_std_450, 69>;
/llvm-project/clang/include/clang/Driver/
H A DOptions.td2613 HelpText<"Normalize integers in CFI indirect call type signature checks">,