/external/llvm-project/clang/test/SemaCXX/ |
D | warn-absolute-value.cpp | 14 double cabs(double _Complex); 59 (void)cabs(x); in test_int() 123 (void)cabs(x); in test_long() 194 (void)cabs(x); in test_long_long() 264 (void)cabs(x); in test_float() 331 (void)cabs(x); in test_double() 404 (void)cabs(x); in test_long_double() 452 (void)cabs(x); in test_complex_float() 465 (void)cabs(x); in test_complex_double() 482 (void)cabs(x); in test_complex_long_double() [all …]
|
/external/clang/test/Sema/ |
D | warn-absolute-value.c | 13 double cabs(double _Complex); 38 (void)cabs(x); in test_int() 100 (void)cabs(x); in test_long() 169 (void)cabs(x); in test_long_long() 237 (void)cabs(x); in test_float() 302 (void)cabs(x); in test_double() 373 (void)cabs(x); in test_long_double() 447 (void)cabs(x); in test_complex_float() 512 (void)cabs(x); in test_complex_double() 580 (void)cabs(x); in test_complex_long_double() [all …]
|
D | typo-correction.c | 48 extern double cabs(_Complex double z); 50 cabs(errij); // expected-error {{use of undeclared identifier 'errij'}} in fn1()
|
/external/llvm-project/clang/test/Sema/ |
D | warn-absolute-value.c | 13 double cabs(double _Complex); 38 (void)cabs(x); in test_int() 100 (void)cabs(x); in test_long() 169 (void)cabs(x); in test_long_long() 237 (void)cabs(x); in test_float() 302 (void)cabs(x); in test_double() 373 (void)cabs(x); in test_long_double() 447 (void)cabs(x); in test_complex_float() 512 (void)cabs(x); in test_complex_double() 580 (void)cabs(x); in test_complex_long_double() [all …]
|
D | typo-correction.c | 48 extern double cabs(_Complex double z); 50 cabs(errij); // expected-error {{use of undeclared identifier 'errij'}} in fn1()
|
/external/clang/test/SemaCXX/ |
D | warn-absolute-value.cpp | 14 double cabs(double _Complex); 59 (void)cabs(x); in test_int() 123 (void)cabs(x); in test_long() 194 (void)cabs(x); in test_long_long() 264 (void)cabs(x); in test_float() 331 (void)cabs(x); in test_double() 404 (void)cabs(x); in test_long_double() 478 (void)cabs(x); in test_complex_float() 543 (void)cabs(x); in test_complex_double() 611 (void)cabs(x); in test_complex_long_double() [all …]
|
/external/llvm-project/llvm/test/Transforms/InstCombine/ |
D | cabs-discrete.ll | 6 ; CHECK-NEXT: [[CALL:%.*]] = tail call double @cabs(double [[REAL:%.*]], double [[IMAG:%.*]]) 9 %call = tail call double @cabs(double %real, double %imag) 39 %call = tail call fast double @cabs(double %real, double %imag) 67 declare double @cabs(double %real, double %imag)
|
D | cabs-array.ll | 6 ; CHECK-NEXT: [[CALL:%.*]] = tail call double @cabs([2 x double] [[Z:%.*]]) 9 %call = tail call double @cabs([2 x double] %z) 41 %call = tail call fast double @cabs([2 x double] %z) 73 declare double @cabs([2 x double])
|
/external/llvm-project/clang/test/CodeGen/ |
D | complex-libcalls.c | 7 cabs(f); cabsf(f); cabsl(f); in foo()
|
D | libcall-declarations.c | 181 double cabs(double _Complex); 298 F(truncl), F(cabs), F(cabsf), F(cabsl), F(cacos),
|
/external/clang/test/CodeGen/ |
D | libcall-declarations.c | 181 double cabs(double _Complex); 298 F(truncl), F(cabs), F(cabsf), F(cabsl), F(cacos),
|
/external/compiler-rt/test/builtins/Unit/ |
D | divdc3_test.c | 103 if (cabs((r-z)/r) > 1.e-6) in test__divdc3()
|
D | divxc3_test.c | 105 if (cabs((r - z)/r) > 1.e-6) in test__divxc3()
|
/external/llvm-project/compiler-rt/test/builtins/Unit/ |
D | divdc3_test.c | 95 if (cabs((r-z)/r) > 1.e-6) in test__divdc3()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | TargetLibraryInfo.def | 547 /// double cabs(double complex z) 548 TLI_DEFINE_ENUM_INTERNAL(cabs) 549 TLI_DEFINE_STRING_INTERNAL("cabs") 550 /// float cabs(float complex z) 553 /// long double cabs(long double complex z)
|
/external/llvm-project/llvm/include/llvm/Analysis/ |
D | TargetLibraryInfo.def | 574 /// double cabs(double complex z) 575 TLI_DEFINE_ENUM_INTERNAL(cabs) 576 TLI_DEFINE_STRING_INTERNAL("cabs") 577 /// float cabs(float complex z) 580 /// long double cabs(long double complex z)
|
/external/ImageMagick/MagickCore/ |
D | fourier.c | 71 #define cabs(z) (sqrt(z[0]*z[0]+z[1]*z[1])) macro 833 magnitude_pixels[i]=cabs(forward_pixels[i]); in ForwardFourierTransform()
|
/external/llvm-project/clang/lib/Headers/ |
D | tgmath.h | 542 __tg_fabs(double _Complex __x) {return cabs(__x);} in __tg_fabs()
|
/external/clang/lib/Headers/ |
D | tgmath.h | 549 __tg_fabs(double _Complex __x) {return cabs(__x);} in __tg_fabs()
|
/external/ImageMagick/config/ |
D | config.h.in | 100 /* Define to 1 if you have the `cabs' function. */
|
/external/llvm-project/clang-tools-extra/clangd/ |
D | CSymbolMap.inc | 317 SYMBOL(cabs, None, <complex.h>)
|
/external/clang/include/clang/Basic/ |
D | Builtins.def | 1121 LIBBUILTIN(cabs, "dXd", "fnc", "complex.h", ALL_LANGUAGES)
|
/external/llvm-project/clang/include/clang/Basic/ |
D | Builtins.def | 1398 LIBBUILTIN(cabs, "dXd", "fne", "complex.h", ALL_LANGUAGES)
|
/external/python/cpython3/Lib/test/ |
D | cmath_testcases.txt | 2468 -- imaginary parts of polar (as cabs and carg, respectively, which in turn
|
/external/python/cpython2/Lib/test/ |
D | cmath_testcases.txt | 2322 -- imaginary parts of polar (as cabs and carg, respectively, which in turn
|