Home
last modified time | relevance | path

Searched refs:remquo (Results 1 – 25 of 79) sorted by relevance

1234

/external/llvm-project/libclc/generic/include/clc/math/
Dremquo.h1 #define __CLC_FUNCTION remquo
3 #define __CLC_BODY <clc/math/remquo.inc>
8 #define __CLC_BODY <clc/math/remquo.inc>
13 #define __CLC_BODY <clc/math/remquo.inc>
/external/llvm-project/libclc/generic/lib/math/
Dremquo.cl4 #define __CLC_BODY <remquo.inc>
9 #define __CLC_BODY <remquo.inc>
14 #define __CLC_BODY <remquo.inc>
Dremquo.inc3 _CLC_OVERLOAD _CLC_DEF __CLC_GENTYPE remquo(__CLC_GENTYPE x, __CLC_GENTYPE y, __CLC_ADDRESS_SPACE _…
/external/llvm-project/libc/src/math/
Dremquo.cpp14 double LLVM_LIBC_ENTRYPOINT(remquo)(double x, double y, int *exp) { in LLVM_LIBC_ENTRYPOINT() argument
15 return fputil::remquo(x, y, *exp); in LLVM_LIBC_ENTRYPOINT()
Dremquo.h14 double remquo(double x, double y, int *exp);
Dremainderf.cpp16 return fputil::remquo(x, y, quotient); in LLVM_LIBC_ENTRYPOINT()
Dremainderl.cpp16 return fputil::remquo(x, y, quotient); in LLVM_LIBC_ENTRYPOINT()
Dremquof.cpp15 return fputil::remquo(x, y, *exp); in LLVM_LIBC_ENTRYPOINT()
Dremquol.cpp16 return fputil::remquo(x, y, *exp); in LLVM_LIBC_ENTRYPOINT()
Dremainder.cpp16 return fputil::remquo(x, y, quotient); in LLVM_LIBC_ENTRYPOINT()
DCMakeLists.txt610 remquo
612 remquo.cpp
614 remquo.h
/external/rust/crates/libm/src/math/
Dremquo.rs2 pub fn remquo(mut x: f64, mut y: f64) -> (f64, i32) { in remquo() function
103 use super::remquo;
108 let _ = remquo(-2.0000000000000004, 8.406091369059082e-286); in test_q_overflow()
Dremainder.rs3 let (result, _) = super::remquo(x, y); in remainder()
Dmod.rs155 mod remquo; module
269 pub use self::remquo::remquo;
/external/llvm-project/libc/fuzzing/math/
Dmath_differential_fuzz.cpp148 RemQuoDiff<double>(&__llvm_libc::remquo, &::remquo, data, size); in LLVMFuzzerTestOneInput()
/external/clang/lib/Headers/
D__clang_cuda_math_forward_declares.h159 __DEVICE__ double remquo(double, double, int *);
160 __DEVICE__ float remquo(float, float, int *);
246 using ::remquo;
/external/llvm-project/clang/lib/Headers/
D__clang_cuda_math_forward_declares.h153 __DEVICE__ double remquo(double, double, int *);
154 __DEVICE__ float remquo(float, float, int *);
256 using ::remquo;
D__clang_hip_cmath.h99 __DEVICE__ float remquo(float __x, float __y, int *__quo) { in remquo() function
432 remquo(__T1 __x, __T2 __y, int *__quo) {
434 return ::remquo((__result_type)__x, (__result_type)__y, __quo);
442 remquo(__T1 __x, __T2 __y, int *__quo) {
443 return ::remquo((double)__x, (double)__y, __quo);
538 using ::remquo;
D__clang_cuda_cmath.h182 __DEVICE__ float remquo(float __n, float __d, int *__q) { in remquo() function
336 remquo(__T1 __x, __T2 __y, int *__quo) {
337 return std::remquo((double)__x, (double)__y, __quo);
419 using ::remquo;
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/
Dperformance-type-promotion-in-math-fn.cpp47 double remquo(double, double, int *);
197 remquo(a, b, int_ptr); in check_all_fns()
/external/llvm-project/libc/test/src/math/
Dremquo_test.cpp13 LIST_REMQUO_TESTS(double, __llvm_libc::remquo)
/external/llvm-project/libclc/generic/include/math/
Dclc_remquo.h3 #define __CLC_BODY <clc/math/remquo.inc>
/external/llvm-project/clang/test/Headers/Inputs/include/
Dcmath131 double remquo(double, double, int *);
132 float remquo(float, float, int *);
216 using ::remquo;
/external/llvm-project/libcxx/test/std/depr/depr.c.headers/
Dmath_h.pass.cpp93 Ambiguous remquo(Ambiguous, Ambiguous, int*){ return Ambiguous(); } in remquo() function
1364 static_assert((std::is_same<decltype(remquo((float)0, (float)0, &ip)), float>::value), ""); in test_remquo()
1365 static_assert((std::is_same<decltype(remquo((bool)0, (float)0, &ip)), double>::value), ""); in test_remquo()
1366 …static_assert((std::is_same<decltype(remquo((unsigned short)0, (double)0, &ip)), double>::value), … in test_remquo()
1367 …static_assert((std::is_same<decltype(remquo((int)0, (long double)0, &ip)), long double>::value), "… in test_remquo()
1368 …static_assert((std::is_same<decltype(remquo((float)0, (unsigned int)0, &ip)), double>::value), ""); in test_remquo()
1369 static_assert((std::is_same<decltype(remquo((double)0, (long)0, &ip)), double>::value), ""); in test_remquo()
1370 …static_assert((std::is_same<decltype(remquo((long double)0, (unsigned long)0, &ip)), long double>:… in test_remquo()
1371 static_assert((std::is_same<decltype(remquo((int)0, (long long)0, &ip)), double>::value), ""); in test_remquo()
1372 …static_assert((std::is_same<decltype(remquo((int)0, (unsigned long long)0, &ip)), double>::value),… in test_remquo()
[all …]
/external/libcxx/test/std/depr/depr.c.headers/
Dmath_h.pass.cpp93 Ambiguous remquo(Ambiguous, Ambiguous, int*){ return Ambiguous(); } in remquo() function
1332 static_assert((std::is_same<decltype(remquo((float)0, (float)0, &ip)), float>::value), ""); in test_remquo()
1333 static_assert((std::is_same<decltype(remquo((bool)0, (float)0, &ip)), double>::value), ""); in test_remquo()
1334 …static_assert((std::is_same<decltype(remquo((unsigned short)0, (double)0, &ip)), double>::value), … in test_remquo()
1335 …static_assert((std::is_same<decltype(remquo((int)0, (long double)0, &ip)), long double>::value), "… in test_remquo()
1336 …static_assert((std::is_same<decltype(remquo((float)0, (unsigned int)0, &ip)), double>::value), ""); in test_remquo()
1337 static_assert((std::is_same<decltype(remquo((double)0, (long)0, &ip)), double>::value), ""); in test_remquo()
1338 …static_assert((std::is_same<decltype(remquo((long double)0, (unsigned long)0, &ip)), long double>:… in test_remquo()
1339 static_assert((std::is_same<decltype(remquo((int)0, (long long)0, &ip)), double>::value), ""); in test_remquo()
1340 …static_assert((std::is_same<decltype(remquo((int)0, (unsigned long long)0, &ip)), double>::value),… in test_remquo()
[all …]

1234