/llvm-project/llvm/unittests/TargetParser/ |
H A D | TripleTest.cpp | 1383 EXPECT_EQ("unknown", Triple::normalize("")); in TEST() 1384 EXPECT_EQ("unknown-unknown", Triple::normalize("-")); in TEST() 1385 EXPECT_EQ("unknown-unknown-unknown", Triple::normalize("--")); in TEST() 1386 EXPECT_EQ("unknown-unknown-unknown-unknown", Triple::normalize("---")); in TEST() 1388 Triple::normalize("----")); in TEST() 1390 EXPECT_EQ("a", Triple::normalize("a")); in TEST() 1391 EXPECT_EQ("a-b", Triple::normalize("a-b")); in TEST() 1392 EXPECT_EQ("a-b-c", Triple::normalize("a-b-c")); in TEST() 1393 EXPECT_EQ("a-b-c-d", Triple::normalize("a-b-c-d")); in TEST() 1395 EXPECT_EQ("i386-b-c", Triple::normalize("i38 in TEST() [all...] |
/llvm-project/libc/src/__support/FPUtil/generic/ |
H A D | sqrt.h | 41 LIBC_INLINE void normalize(int &exponent, 52 LIBC_INLINE void normalize<long double>(int &exponent, uint64_t &mantissa) { 53 normalize<double>(exponent, mantissa); 57 LIBC_INLINE void normalize<long double>(int &exponent, UInt128 &mantissa) { 112 internal::normalize<InType>(x_exp, x_mant);
|
H A D | sqrt_80_bit_long_double.h | 24 LIBC_INLINE void normalize(int &exponent, in normalize() 67 normalize(x_exp, x_mant); in sqrt() 23 LIBC_INLINE void normalize(int &exponent, UInt128 &mantissa) { normalize() function
|
/llvm-project/libclc/generic/lib/geometric/ |
H A D | normalize.cl | 25 _CLC_OVERLOAD _CLC_DEF float normalize(float p) { 29 _CLC_OVERLOAD _CLC_DEF float2 normalize(float2 p) { 49 _CLC_OVERLOAD _CLC_DEF float3 normalize(float3 p) { 69 _CLC_OVERLOAD _CLC_DEF float4 normalize(float4 p) { 93 _CLC_OVERLOAD _CLC_DEF double normalize(double p) { 97 _CLC_OVERLOAD _CLC_DEF double2 normalize(double2 p) { 117 _CLC_OVERLOAD _CLC_DEF double3 normalize(double3 p) { 137 _CLC_OVERLOAD _CLC_DEF double4 normalize(double4 p) {
|
/llvm-project/libc/fuzzing/string/ |
H A D | bcmp_fuzz.cpp | 29 const auto normalize = [](int value) -> int { in LLVMFuzzerTestOneInput() local 40 if (normalize(actual) == normalize(reference)) in LLVMFuzzerTestOneInput()
|
/llvm-project/clang/test/AST/ |
H A D | gen_ast_dump_json_test.py | 15 def normalize(dict_var): function 18 normalize(v) 22 normalize(e) 206 normalize(j) 212 normalize(j)
|
/llvm-project/llvm/unittests/MIR/ |
H A D | MachineMetadata.cpp | 203 auto TM = createTargetMachine(Triple::normalize("aarch64--"), "", ""); 293 auto TM = createTargetMachine(Triple::normalize("x86_64--"), "", ""); 352 auto TM = createTargetMachine(Triple::normalize("x86_64--"), "", ""); 443 auto TM = createTargetMachine(Triple::normalize("amdgcn-amd-amdhsa"), 542 auto TM = createTargetMachine(Triple::normalize("powerpc64--"), "", ""); 573 auto TM = createTargetMachine(Triple::normalize("powerpc64--"), "", "");
|
/llvm-project/llvm/test/Transforms/MergeFunc/ |
H A D | external-before-local.ll | 3 ; We should normalize to test2 rather than test1, 31 ; We should normalize to the existing test6 rather than
|
/llvm-project/libc/src/__support/FPUtil/ |
H A D | dyadic_float.h | 56 normalize(); in DyadicFloat() 61 normalize(); in normalize() 66 LIBC_INLINE constexpr DyadicFloat &normalize() { in normalize() 379 // Quick add - Add 2 dyadic floats with rounding toward 0 and then normalize the 389 // don't need to normalize the inputs again in this function. If the inputs are 433 return result.normalize(); 437 // floats with rounding toward 0 and then normalize the output: 444 // don't need to normalize the inputs again in this function. If the inputs are 456 // normalize(). 60 LIBC_INLINE constexpr DyadicFloat &normalize() { normalize() function
|
/llvm-project/llvm/tools/llvm-isel-fuzzer/ |
H A D | llvm-isel-fuzzer.cpp | 94 M->setTargetTriple(TM->getTargetTriple().normalize()); in LLVMFuzzerTestOneInput() 144 Triple::normalize(TargetTriple), OLvl)); in LLVMFuzzerInitialize()
|
/llvm-project/llvm/tools/llvm-mc-assemble-fuzzer/ |
H A D | llvm-mc-assemble-fuzzer.cpp | 134 Triple TheTriple(Triple::normalize(TripleName)); in AssembleOneInput() 151 errs() << "error: this target '" << TheTriple.normalize() in AssembleOneInput() 186 << TheTriple.normalize() << "' with assembly variant " in AssembleOneInput()
|
/llvm-project/compiler-rt/lib/builtins/ |
H A D | fp_mul_impl.inc | 68 scale += normalize(&aSignificand); 70 scale += normalize(&bSignificand); 74 // denormal path it was already set by normalize( ), but setting it twice
|
H A D | fp_add_impl.inc | 75 aExponent = normalize(&aSignificand); 77 bExponent = normalize(&bSignificand); 87 // was already set by normalize( ), but setting it twice won't hurt
|
H A D | fp_lib.h | 230 static __inline int normalize(rep_t *significand) { 284 // Subnormal number; normalize and repeat in __compiler_rt_logbX() 286 const int shift = 1 - normalize(&rep); in __compiler_rt_logbX() 304 exp += normalize(&sig); in __compiler_rt_scalbnX() 236 static __inline int normalize(rep_t *significand) { normalize() function
|
/llvm-project/llvm/tools/llvm-exegesis/lib/ |
H A D | LlvmState.cpp | 29 TripleName = Triple::normalize(sys::getDefaultTargetTriple()); in Create() 96 TheTargetMachine->getTargetTriple().normalize(), in createTargetMachine()
|
/llvm-project/llvm/tools/llvm-opt-fuzzer/ |
H A D | llvm-opt-fuzzer.cpp | 127 M->setTargetTriple(TM->getTargetTriple().normalize()); in LLVMFuzzerTestOneInput() 203 Triple::normalize(TargetTripleStr))); in LLVMFuzzerInitialize()
|
/llvm-project/libclc/generic/include/clc/geometric/ |
H A D | normalize.h | 1 #define __CLC_BODY <clc/geometric/normalize.inc>
|
H A D | normalize.inc | 1 _CLC_OVERLOAD _CLC_DECL __CLC_FLOATN normalize(__CLC_FLOATN p);
|
/llvm-project/clang/lib/Basic/ |
H A D | DarwinSDKInfo.cpp | 25 auto KV = Mapping.find(Key.normalize()); in map() 50 Mapping[KeyVersion.normalize()] = ValueVersion; in parseJSON()
|
/llvm-project/libc/benchmarks/automemcpy/lib/ |
H A D | ResultAnalyzer.cpp |
|
/llvm-project/llvm/unittests/DebugInfo/DWARF/ |
H A D | DwarfUtils.cpp | 30 Triple T(Triple::normalize(sys::getDefaultTargetTriple())); in getNormalizedDefaultTargetTriple()
|
/llvm-project/llvm/unittests/Target/AArch64/ |
H A D | Immediates.cpp | 91 auto TT = Triple::normalize("aarch64"); in TEST()
|
/llvm-project/llvm/unittests/ExecutionEngine/MCJIT/ |
H A D | MCJITTestAPICommon.h | 54 HostTriple = Triple::normalize(HostTriple); in MCJITTestAPICommon()
|
/llvm-project/llvm/test/ExecutionEngine/MCJIT/ |
H A D | lit.local.cfg | 13 # FIXME: autoconf and cmake produce different arch names. We should normalize
|
/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | CalcSpillWeights.h | 103 virtual float normalize(float UseDefFreq, unsigned Size, in normalize() 100 virtual float normalize(float UseDefFreq, unsigned Size, normalize() function
|