Home
last modified time | relevance | path

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

12

/freebsd-src/contrib/llvm-project/libcxx/include/__math/
H A Dremainder.h47 // remquo
49 inline _LIBCPP_HIDE_FROM_ABI float remquo(float __x, float __y, int* __z) _NOEXCEPT { in remquo() function
54 _LIBCPP_HIDE_FROM_ABI double remquo(double __x, double __y, int* __z) _NOEXCEPT { in remquo() function
58 inline _LIBCPP_HIDE_FROM_ABI long double remquo(long double __x, long double __y, int* __z) _NOEXCEPT { in remquo() function
63 inline _LIBCPP_HIDE_FROM_ABI typename __promote<_A1, _A2>::type remquo(_A1 __x, _A2 __y, int* __z) _NOEXCEPT { in remquo() function
66 return __math::remquo((__result_type)__x, (__result_type)__y, __z); in remquo()
/freebsd-src/lib/msun/i387/
H A Ds_remquo.S32 ENTRY(remquo)
61 END(remquo)
/freebsd-src/lib/msun/amd64/
H A Ds_remquo.S32 ENTRY(remquo)
64 END(remquo)
/freebsd-src/contrib/llvm-project/clang/lib/Headers/
H A D__clang_cuda_math_forward_declares.h153 __DEVICE__ double remquo(double, double, int *);
154 __DEVICE__ float remquo(float, float, int *);
259 using ::remquo;
H A 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;
H A D__clang_hip_cmath.h158 __DEVICE__ __CONSTEXPR__ float remquo(float __x, float __y, int *__quo) { in remquo() function
598 remquo(__T1 __x, __T2 __y, int *__quo) {
600 return ::remquo((__result_type)__x, (__result_type)__y, __quo);
608 remquo(__T1 __x, __T2 __y, int *__quo) {
609 return ::remquo((double)__x, (double)__y, __quo);
707 using ::remquo;
H A Dtgmath.h1103 {return remquo(__x, __y, __z);} in __tg_remquo()
1110 #undef remquo
1111 #define remquo(__x, __y, __z) \ macro
H A Dopencl-c.h8125 * The remquo function computes the value r such
8131 * remquo also calculates the lower seven bits of the
8137 float __ovld remquo(float, float, int *);
8138 float2 __ovld remquo(float2, float2, int2 *);
8139 float3 __ovld remquo(float3, float3, int3 *);
8140 float4 __ovld remquo(float4, float4, int4 *);
8141 float8 __ovld remquo(float8, float8, int8 *);
8142 float16 __ovld remquo(float16, float16, int16 *);
8144 double __ovld remquo(double, double, int *);
8145 double2 __ovld remquo(double
[all...]
H A D__clang_cuda_math.h242 __DEVICE__ double remquo(double __a, double __b, int *__c) { in remquo() function
H A D__clang_hip_math.h998 double remquo(double __x, double __y, int *__quo) {
/freebsd-src/lib/msun/src/
H A Ds_remquo.c28 remquo(double x, double y, int *quo) in remquo() function
154 __weak_reference(remquo, remquol);
H A Dmath.h289 double remquo(double, double, int *);
/freebsd-src/lib/msun/tests/
H A Drem_test.c113 ATF_CHECK(isnan(remquo(x, y, &q))); in test_invalid()
170 rem = remquo(x, y, &q); in testd()
/freebsd-src/include/
H A Dtgmath.h194 #define remquo(x, y, z) __tg_impl_simple(x, x, y, remquol, remquo, \ macro
/freebsd-src/lib/msun/
H A DSymbol.map148 remquo;
H A DMakefile257 remainder.3 remquo.3 remainder.3 remquof.3 remainder.3 remquol.3
/freebsd-src/contrib/llvm-project/libcxx/include/
H A Dmath.h264 floating_point remquo (arithmetic x, arithmetic y, int* pquo);
488 using std::__math::remquo;
H A Dcmath279 floating_point remquo (arithmetic x, arithmetic y, int* pquo);
481 using ::remquo _LIBCPP_USING_IF_EXISTS;
/freebsd-src/contrib/llvm-project/libcxx/modules/std.compat/
H A Dcmath.inc211 using ::remquo _LIBCPP_USING_IF_EXISTS;
/freebsd-src/tools/regression/include/tgmath/
H A Dtgmath.c143 double (remquo)(double x, double y, int *q) { n_double++; }
575 PASS_REAL_REAL_FIXED_ARG_REAL_RET(remquo, &i)); in main()
/freebsd-src/contrib/llvm-project/libcxx/modules/std/
H A Dcmath.inc212 using std::remquo _LIBCPP_USING_IF_EXISTS;
/freebsd-src/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/
H A DCSymbolMap.inc703 SYMBOL(remquo, None, <math.h>)
H A DStdSymbolMap.inc2489 SYMBOL(remquo, std::, <cmath>)
2490 SYMBOL(remquo, None, <cmath>)
2491 SYMBOL(remquo, None, <math.h>)
/freebsd-src/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVBuiltins.td264 defm : DemangledExtendedBuiltin<"remquo", OpenCL_std, 52>;
/freebsd-src/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc5156 INTERCEPTOR(double, remquo, double x, double y, int *quo) {
5158 COMMON_INTERCEPTOR_ENTER(ctx, remquo, x, y, quo);
5162 double res = REAL(remquo)(x, y, quo);
5177 COMMON_INTERCEPT_FUNCTION(remquo); \

12