/freebsd/contrib/llvm-project/libcxx/include/__math/ |
H A D | remainder.h | 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) _NOEXCE… in remquo() function 63 inline _LIBCPP_HIDE_FROM_ABI typename __promote<_A1, _A2>::type remquo(_A1 __x, _A2 __y, int* __z) … in remquo() function 66 return __math::remquo((__result_type)__x, (__result_type)__y, __z); in remquo()
|
/freebsd/lib/msun/i387/ |
H A D | s_remquo.S | 32 ENTRY(remquo) 61 END(remquo)
|
/freebsd/lib/msun/amd64/ |
H A D | s_remquo.S | 32 ENTRY(remquo) 64 END(remquo)
|
/freebsd/contrib/llvm-project/clang/lib/Headers/ |
H A D | __clang_cuda_math_forward_declares.h | 153 __DEVICE__ double remquo(double, double, int *); 154 __DEVICE__ float remquo(float, float, int *); 259 using ::remquo;
|
H A D | __clang_cuda_cmath.h | 182 __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.h | 158 __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 D | tgmath.h | 1103 {return remquo(__x, __y, __z);} in __tg_remquo() 1110 #undef remquo 1111 #define remquo(__x, __y, __z) \ macro
|
H A D | opencl-c.h | 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(double2, double2, int2 *); 8146 double3 __ovld remquo(double3, double3, int3 *); 8147 double4 __ovld remquo(double4, double4, int4 *); [all …]
|
/freebsd/lib/msun/src/ |
H A D | s_remquo.c | 28 remquo(double x, double y, int *quo) in remquo() function 154 __weak_reference(remquo, remquol);
|
H A D | math.h | 289 double remquo(double, double, int *);
|
/freebsd/lib/msun/tests/ |
H A D | rem_test.c | 113 ATF_CHECK(isnan(remquo(x, y, &q))); in test_invalid() 170 rem = remquo(x, y, &q); in testd()
|
/freebsd/include/ |
H A D | tgmath.h | 194 #define remquo(x, y, z) __tg_impl_simple(x, x, y, remquol, remquo, \ macro
|
/freebsd/lib/msun/ |
H A D | Symbol.map | 148 remquo;
|
H A D | Makefile | 257 remainder.3 remquo.3 remainder.3 remquof.3 remainder.3 remquol.3
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | math.h | 488 using std::__math::remquo;
|
H A D | cmath | 279 floating_point remquo (arithmetic x, arithmetic y, int* pquo); 481 using ::remquo _LIBCPP_USING_IF_EXISTS;
|
/freebsd/tools/regression/include/tgmath/ |
H A D | tgmath.c | 143 double (remquo)(double x, double y, int *q) { n_double++; } 575 PASS_REAL_REAL_FIXED_ARG_REAL_RET(remquo, &i)); in main()
|
/freebsd/contrib/llvm-project/libcxx/modules/std.compat/ |
H A D | cmath.inc | 211 using ::remquo _LIBCPP_USING_IF_EXISTS;
|
/freebsd/contrib/llvm-project/libcxx/modules/std/ |
H A D | cmath.cppm |
|
H A D | cmath.inc | 212 using std::remquo _LIBCPP_USING_IF_EXISTS;
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | TargetLibraryInfo.def | 1956 /// double remquo(double x, double y, int *quo); 1957 TLI_DEFINE_ENUM_INTERNAL(remquo) 1958 TLI_DEFINE_STRING_INTERNAL("remquo")
|
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/ |
H A D | CSymbolMap.inc | 703 SYMBOL(remquo, None, <math.h>)
|
H A D | StdSymbolMap.inc | 2489 SYMBOL(remquo, std::, <cmath>) 2490 SYMBOL(remquo, None, <cmath>) 2491 SYMBOL(remquo, None, <math.h>)
|
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/ |
H A D | SPIRVBuiltins.td | 264 defm : DemangledExtendedBuiltin<"remquo", OpenCL_std, 52>;
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_common_interceptors.inc | 5156 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); \
|