| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/tr1/ |
| H A D | beta_function.tcc | 81 __beta_gamma(_Tp __x, _Tp __y) in __beta_gamma() argument 86 if (__x > __y) in __beta_gamma() 89 / _GLIBCXX_MATH_NS::tgamma(__x + __y); in __beta_gamma() 90 __bet *= _GLIBCXX_MATH_NS::tgamma(__y); in __beta_gamma() 94 __bet = _GLIBCXX_MATH_NS::tgamma(__y) in __beta_gamma() 95 / _GLIBCXX_MATH_NS::tgamma(__x + __y); in __beta_gamma() 99 if (__x > __y) in __beta_gamma() 101 __bet = __gamma(__x) / __gamma(__x + __y); in __beta_gamma() 102 __bet *= __gamma(__y); in __beta_gamma() 106 __bet = __gamma(__y) / __gamma(__x + __y); in __beta_gamma() [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/tr1/ |
| H A D | beta_function.tcc | 81 __beta_gamma(_Tp __x, _Tp __y) in __beta_gamma() argument 86 if (__x > __y) in __beta_gamma() 89 / _GLIBCXX_MATH_NS::tgamma(__x + __y); in __beta_gamma() 90 __bet *= _GLIBCXX_MATH_NS::tgamma(__y); in __beta_gamma() 94 __bet = _GLIBCXX_MATH_NS::tgamma(__y) in __beta_gamma() 95 / _GLIBCXX_MATH_NS::tgamma(__x + __y); in __beta_gamma() 99 if (__x > __y) in __beta_gamma() 101 __bet = __gamma(__x) / __gamma(__x + __y); in __beta_gamma() 102 __bet *= __gamma(__y); in __beta_gamma() 106 __bet = __gamma(__y) / __gamma(__x + __y); in __beta_gamma() [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/bits/ |
| H A D | fs_fwd.h | 90 operator&(copy_options __x, copy_options __y) noexcept in _GLIBCXX_VISIBILITY() 94 static_cast<__utype>(__x) & static_cast<__utype>(__y)); in _GLIBCXX_VISIBILITY() 98 operator|(copy_options __x, copy_options __y) noexcept in _GLIBCXX_VISIBILITY() 102 static_cast<__utype>(__x) | static_cast<__utype>(__y)); in _GLIBCXX_VISIBILITY() 106 operator^(copy_options __x, copy_options __y) noexcept in _GLIBCXX_VISIBILITY() 110 static_cast<__utype>(__x) ^ static_cast<__utype>(__y)); in _GLIBCXX_VISIBILITY() 121 operator&=(copy_options& __x, copy_options __y) noexcept in _GLIBCXX_VISIBILITY() 122 { return __x = __x & __y; } in _GLIBCXX_VISIBILITY() 125 operator|=(copy_options& __x, copy_options __y) noexcept in _GLIBCXX_VISIBILITY() 126 { return __x = __x | __y; } in _GLIBCXX_VISIBILITY() [all …]
|
| H A D | stl_iterator.h | 351 const reverse_iterator<_Iter2>& __y) in _GLIBCXX_VISIBILITY() 358 auto __ytmp = __y.base(); in _GLIBCXX_VISIBILITY() 389 const reverse_iterator<_Iterator>& __y) in _GLIBCXX_VISIBILITY() 390 { return __x.base() == __y.base(); } in _GLIBCXX_VISIBILITY() 395 const reverse_iterator<_Iterator>& __y) in _GLIBCXX_VISIBILITY() 396 { return __y.base() < __x.base(); } in _GLIBCXX_VISIBILITY() 401 const reverse_iterator<_Iterator>& __y) in _GLIBCXX_VISIBILITY() 402 { return !(__x == __y); } in _GLIBCXX_VISIBILITY() 407 const reverse_iterator<_Iterator>& __y) in _GLIBCXX_VISIBILITY() 408 { return __y < __x; } in _GLIBCXX_VISIBILITY() [all …]
|
| H A D | stl_pair.h | 322 constexpr pair(_U1&& __x, const _T2& __y) in _GLIBCXX_VISIBILITY() 323 : first(std::forward<_U1>(__x)), second(__y) { } in _GLIBCXX_VISIBILITY() 329 explicit constexpr pair(_U1&& __x, const _T2& __y) in _GLIBCXX_VISIBILITY() 330 : first(std::forward<_U1>(__x)), second(__y) { } in _GLIBCXX_VISIBILITY() 336 constexpr pair(const _T1& __x, _U2&& __y) in _GLIBCXX_VISIBILITY() 337 : first(__x), second(std::forward<_U2>(__y)) { } in _GLIBCXX_VISIBILITY() 343 explicit pair(const _T1& __x, _U2&& __y) in _GLIBCXX_VISIBILITY() 344 : first(__x), second(std::forward<_U2>(__y)) { } in _GLIBCXX_VISIBILITY() 352 constexpr pair(_U1&& __x, _U2&& __y) in _GLIBCXX_VISIBILITY() 353 : first(std::forward<_U1>(__x)), second(std::forward<_U2>(__y)) { } in _GLIBCXX_VISIBILITY() [all …]
|
| H A D | valarray_before.h | 189 _Tp operator()(const _Tp& __x, const _Tp& __y) const in _GLIBCXX_VISIBILITY() 190 { return __x + __y; } in _GLIBCXX_VISIBILITY() 196 _Tp operator()(const _Tp& __x, const _Tp& __y) const in _GLIBCXX_VISIBILITY() 197 { return __x - __y; } in _GLIBCXX_VISIBILITY() 203 _Tp operator()(const _Tp& __x, const _Tp& __y) const in _GLIBCXX_VISIBILITY() 204 { return __x * __y; } in _GLIBCXX_VISIBILITY() 210 _Tp operator()(const _Tp& __x, const _Tp& __y) const in _GLIBCXX_VISIBILITY() 211 { return __x / __y; } in _GLIBCXX_VISIBILITY() 217 _Tp operator()(const _Tp& __x, const _Tp& __y) const in _GLIBCXX_VISIBILITY() 218 { return __x % __y; } in _GLIBCXX_VISIBILITY() [all …]
|
| H A D | stl_relops.h | 87 operator!=(const _Tp& __x, const _Tp& __y) in _GLIBCXX_VISIBILITY() 88 { return !(__x == __y); } in _GLIBCXX_VISIBILITY() 100 operator>(const _Tp& __x, const _Tp& __y) in _GLIBCXX_VISIBILITY() 101 { return __y < __x; } in _GLIBCXX_VISIBILITY() 113 operator<=(const _Tp& __x, const _Tp& __y) in _GLIBCXX_VISIBILITY() 114 { return !(__y < __x); } in _GLIBCXX_VISIBILITY() 126 operator>=(const _Tp& __x, const _Tp& __y) in _GLIBCXX_VISIBILITY() 127 { return !(__x < __y); } in _GLIBCXX_VISIBILITY()
|
| H A D | stl_stack.h | 319 operator==(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y) in _GLIBCXX_VISIBILITY() 320 { return __x.c == __y.c; } in _GLIBCXX_VISIBILITY() 337 operator<(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y) in _GLIBCXX_VISIBILITY() 338 { return __x.c < __y.c; } in _GLIBCXX_VISIBILITY() 343 operator!=(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y) in _GLIBCXX_VISIBILITY() 344 { return !(__x == __y); } in _GLIBCXX_VISIBILITY() 349 operator>(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y) in _GLIBCXX_VISIBILITY() 350 { return __y < __x; } in _GLIBCXX_VISIBILITY() 355 operator<=(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y) in _GLIBCXX_VISIBILITY() 356 { return !(__y < __x); } in _GLIBCXX_VISIBILITY() [all …]
|
| H A D | stl_deque.h | 147 _Deque_iterator(_Elt_pointer __x, _Map_pointer __y) _GLIBCXX_NOEXCEPT in _GLIBCXX_VISIBILITY() 148 : _M_cur(__x), _M_first(*__y), in _GLIBCXX_VISIBILITY() 149 _M_last(*__y + _S_buffer_size()), _M_node(__y) { } in _GLIBCXX_VISIBILITY() 268 operator==(const _Self& __x, const _Self& __y) _GLIBCXX_NOEXCEPT in _GLIBCXX_VISIBILITY() 269 { return __x._M_cur == __y._M_cur; } in _GLIBCXX_VISIBILITY() 277 const _Deque_iterator<_Tp, _RefR, _PtrR>& __y) in _GLIBCXX_VISIBILITY() 279 { return __x._M_cur == __y._M_cur; } in _GLIBCXX_VISIBILITY() 283 operator<=>(const _Self& __x, const _Self& __y) noexcept in _GLIBCXX_VISIBILITY() 285 if (const auto __cmp = __x._M_node <=> __y._M_node; __cmp != 0) in _GLIBCXX_VISIBILITY() 287 return __x._M_cur <=> __y._M_cur; in _GLIBCXX_VISIBILITY() [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/bits/ |
| H A D | fs_fwd.h | 90 operator&(copy_options __x, copy_options __y) noexcept in _GLIBCXX_VISIBILITY() 94 static_cast<__utype>(__x) & static_cast<__utype>(__y)); in _GLIBCXX_VISIBILITY() 98 operator|(copy_options __x, copy_options __y) noexcept in _GLIBCXX_VISIBILITY() 102 static_cast<__utype>(__x) | static_cast<__utype>(__y)); in _GLIBCXX_VISIBILITY() 106 operator^(copy_options __x, copy_options __y) noexcept in _GLIBCXX_VISIBILITY() 110 static_cast<__utype>(__x) ^ static_cast<__utype>(__y)); in _GLIBCXX_VISIBILITY() 121 operator&=(copy_options& __x, copy_options __y) noexcept in _GLIBCXX_VISIBILITY() 122 { return __x = __x & __y; } in _GLIBCXX_VISIBILITY() 125 operator|=(copy_options& __x, copy_options __y) noexcept in _GLIBCXX_VISIBILITY() 126 { return __x = __x | __y; } in _GLIBCXX_VISIBILITY() [all …]
|
| H A D | stl_iterator.h | 351 const reverse_iterator<_Iter2>& __y) in _GLIBCXX_VISIBILITY() 358 auto __ytmp = __y.base(); in _GLIBCXX_VISIBILITY() 389 const reverse_iterator<_Iterator>& __y) in _GLIBCXX_VISIBILITY() 390 { return __x.base() == __y.base(); } in _GLIBCXX_VISIBILITY() 395 const reverse_iterator<_Iterator>& __y) in _GLIBCXX_VISIBILITY() 396 { return __y.base() < __x.base(); } in _GLIBCXX_VISIBILITY() 401 const reverse_iterator<_Iterator>& __y) in _GLIBCXX_VISIBILITY() 402 { return !(__x == __y); } in _GLIBCXX_VISIBILITY() 407 const reverse_iterator<_Iterator>& __y) in _GLIBCXX_VISIBILITY() 408 { return __y < __x; } in _GLIBCXX_VISIBILITY() [all …]
|
| H A D | stl_pair.h | 322 constexpr pair(_U1&& __x, const _T2& __y) in _GLIBCXX_VISIBILITY() 323 : first(std::forward<_U1>(__x)), second(__y) { } in _GLIBCXX_VISIBILITY() 329 explicit constexpr pair(_U1&& __x, const _T2& __y) in _GLIBCXX_VISIBILITY() 330 : first(std::forward<_U1>(__x)), second(__y) { } in _GLIBCXX_VISIBILITY() 336 constexpr pair(const _T1& __x, _U2&& __y) in _GLIBCXX_VISIBILITY() 337 : first(__x), second(std::forward<_U2>(__y)) { } in _GLIBCXX_VISIBILITY() 343 explicit pair(const _T1& __x, _U2&& __y) in _GLIBCXX_VISIBILITY() 344 : first(__x), second(std::forward<_U2>(__y)) { } in _GLIBCXX_VISIBILITY() 352 constexpr pair(_U1&& __x, _U2&& __y) in _GLIBCXX_VISIBILITY() 353 : first(std::forward<_U1>(__x)), second(std::forward<_U2>(__y)) { } in _GLIBCXX_VISIBILITY() [all …]
|
| H A D | valarray_before.h | 189 _Tp operator()(const _Tp& __x, const _Tp& __y) const in _GLIBCXX_VISIBILITY() 190 { return __x + __y; } in _GLIBCXX_VISIBILITY() 196 _Tp operator()(const _Tp& __x, const _Tp& __y) const in _GLIBCXX_VISIBILITY() 197 { return __x - __y; } in _GLIBCXX_VISIBILITY() 203 _Tp operator()(const _Tp& __x, const _Tp& __y) const in _GLIBCXX_VISIBILITY() 204 { return __x * __y; } in _GLIBCXX_VISIBILITY() 210 _Tp operator()(const _Tp& __x, const _Tp& __y) const in _GLIBCXX_VISIBILITY() 211 { return __x / __y; } in _GLIBCXX_VISIBILITY() 217 _Tp operator()(const _Tp& __x, const _Tp& __y) const in _GLIBCXX_VISIBILITY() 218 { return __x % __y; } in _GLIBCXX_VISIBILITY() [all …]
|
| H A D | stl_relops.h | 87 operator!=(const _Tp& __x, const _Tp& __y) in _GLIBCXX_VISIBILITY() 88 { return !(__x == __y); } in _GLIBCXX_VISIBILITY() 100 operator>(const _Tp& __x, const _Tp& __y) in _GLIBCXX_VISIBILITY() 101 { return __y < __x; } in _GLIBCXX_VISIBILITY() 113 operator<=(const _Tp& __x, const _Tp& __y) in _GLIBCXX_VISIBILITY() 114 { return !(__y < __x); } in _GLIBCXX_VISIBILITY() 126 operator>=(const _Tp& __x, const _Tp& __y) in _GLIBCXX_VISIBILITY() 127 { return !(__x < __y); } in _GLIBCXX_VISIBILITY()
|
| H A D | stl_stack.h | 319 operator==(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y) in _GLIBCXX_VISIBILITY() 320 { return __x.c == __y.c; } in _GLIBCXX_VISIBILITY() 337 operator<(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y) in _GLIBCXX_VISIBILITY() 338 { return __x.c < __y.c; } in _GLIBCXX_VISIBILITY() 343 operator!=(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y) in _GLIBCXX_VISIBILITY() 344 { return !(__x == __y); } in _GLIBCXX_VISIBILITY() 349 operator>(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y) in _GLIBCXX_VISIBILITY() 350 { return __y < __x; } in _GLIBCXX_VISIBILITY() 355 operator<=(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y) in _GLIBCXX_VISIBILITY() 356 { return !(__y < __x); } in _GLIBCXX_VISIBILITY() [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/experimental/bits/ |
| H A D | fs_fwd.h | 97 operator&(copy_options __x, copy_options __y) noexcept in _GLIBCXX_VISIBILITY() 101 static_cast<__utype>(__x) & static_cast<__utype>(__y)); in _GLIBCXX_VISIBILITY() 105 operator|(copy_options __x, copy_options __y) noexcept in _GLIBCXX_VISIBILITY() 109 static_cast<__utype>(__x) | static_cast<__utype>(__y)); in _GLIBCXX_VISIBILITY() 113 operator^(copy_options __x, copy_options __y) noexcept in _GLIBCXX_VISIBILITY() 117 static_cast<__utype>(__x) ^ static_cast<__utype>(__y)); in _GLIBCXX_VISIBILITY() 128 operator&=(copy_options& __x, copy_options __y) noexcept in _GLIBCXX_VISIBILITY() 129 { return __x = __x & __y; } in _GLIBCXX_VISIBILITY() 132 operator|=(copy_options& __x, copy_options __y) noexcept in _GLIBCXX_VISIBILITY() 133 { return __x = __x | __y; } in _GLIBCXX_VISIBILITY() [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/experimental/bits/ |
| H A D | fs_fwd.h | 97 operator&(copy_options __x, copy_options __y) noexcept in _GLIBCXX_VISIBILITY() 101 static_cast<__utype>(__x) & static_cast<__utype>(__y)); in _GLIBCXX_VISIBILITY() 105 operator|(copy_options __x, copy_options __y) noexcept in _GLIBCXX_VISIBILITY() 109 static_cast<__utype>(__x) | static_cast<__utype>(__y)); in _GLIBCXX_VISIBILITY() 113 operator^(copy_options __x, copy_options __y) noexcept in _GLIBCXX_VISIBILITY() 117 static_cast<__utype>(__x) ^ static_cast<__utype>(__y)); in _GLIBCXX_VISIBILITY() 128 operator&=(copy_options& __x, copy_options __y) noexcept in _GLIBCXX_VISIBILITY() 129 { return __x = __x & __y; } in _GLIBCXX_VISIBILITY() 132 operator|=(copy_options& __x, copy_options __y) noexcept in _GLIBCXX_VISIBILITY() 133 { return __x = __x | __y; } in _GLIBCXX_VISIBILITY() [all …]
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/ |
| H A D | math.h | 239 #define isfinite(__y) \ argument 240 (__extension__ ({int __cy = fpclassify(__y); \ 270 #define isgreater(__x,__y) (__builtin_isgreater (__x, __y)) argument 271 #define isgreaterequal(__x,__y) (__builtin_isgreaterequal (__x, __y)) argument 272 #define isless(__x,__y) (__builtin_isless (__x, __y)) argument 273 #define islessequal(__x,__y) (__builtin_islessequal (__x, __y)) argument 274 #define islessgreater(__x,__y) (__builtin_islessgreater (__x, __y)) argument 275 #define isunordered(__x,__y) (__builtin_isunordered (__x, __y)) argument 278 (__extension__ ({__typeof__(x) __x = (x); __typeof__(y) __y = (y); \ 279 !isunordered(__x,__y) && (__x > __y);})) [all …]
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/ |
| H A D | math.h | 239 #define isfinite(__y) \ argument 240 (__extension__ ({int __cy = fpclassify(__y); \ 270 #define isgreater(__x,__y) (__builtin_isgreater (__x, __y)) argument 271 #define isgreaterequal(__x,__y) (__builtin_isgreaterequal (__x, __y)) argument 272 #define isless(__x,__y) (__builtin_isless (__x, __y)) argument 273 #define islessequal(__x,__y) (__builtin_islessequal (__x, __y)) argument 274 #define islessgreater(__x,__y) (__builtin_islessgreater (__x, __y)) argument 275 #define isunordered(__x,__y) (__builtin_isunordered (__x, __y)) argument 278 (__extension__ ({__typeof__(x) __x = (x); __typeof__(y) __y = (y); \ 279 !isunordered(__x,__y) && (__x > __y);})) [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/ |
| H A D | cmath | 144 atan2(float __y, float __x) 145 { return __builtin_atan2f(__y, __x); } 148 atan2(long double __y, long double __x) 149 { return __builtin_atan2l(__y, __x); } 155 atan2(_Tp __y, _Up __x) 158 return atan2(__type(__y), __type(__x)); 279 fmod(float __x, float __y) 280 { return __builtin_fmodf(__x, __y); } 283 fmod(long double __x, long double __y) 284 { return __builtin_fmodl(__x, __y); } [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/ |
| H A D | cmath | 144 atan2(float __y, float __x) 145 { return __builtin_atan2f(__y, __x); } 148 atan2(long double __y, long double __x) 149 { return __builtin_atan2l(__y, __x); } 155 atan2(_Tp __y, _Up __x) 158 return atan2(__type(__y), __type(__x)); 279 fmod(float __x, float __y) 280 { return __builtin_fmodf(__x, __y); } 283 fmod(long double __x, long double __y) 284 { return __builtin_fmodl(__x, __y); } [all …]
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/libcxx/include/ |
| H A D | typeindex | 63 type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {} 66 bool operator==(const type_index& __y) const _NOEXCEPT 67 {return *__t_ == *__y.__t_;} 69 bool operator!=(const type_index& __y) const _NOEXCEPT 70 {return *__t_ != *__y.__t_;} 72 bool operator< (const type_index& __y) const _NOEXCEPT 73 {return __t_->before(*__y.__t_);} 75 bool operator<=(const type_index& __y) const _NOEXCEPT 76 {return !__y.__t_->before(*__t_);} 78 bool operator> (const type_index& __y) const _NOEXCEPT [all …]
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/libcxx/include/ |
| H A D | typeindex | 63 type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {} 66 bool operator==(const type_index& __y) const _NOEXCEPT 67 {return *__t_ == *__y.__t_;} 69 bool operator!=(const type_index& __y) const _NOEXCEPT 70 {return *__t_ != *__y.__t_;} 72 bool operator< (const type_index& __y) const _NOEXCEPT 73 {return __t_->before(*__y.__t_);} 75 bool operator<=(const type_index& __y) const _NOEXCEPT 76 {return !__y.__t_->before(*__t_);} 78 bool operator> (const type_index& __y) const _NOEXCEPT [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/bits/ |
| H A D | mathcalls.h | 59 __MATHCALL (atan2,, (_Mdouble_ __y, _Mdouble_ __x)); 140 __MATHCALL_VEC (pow,, (_Mdouble_ __x, _Mdouble_ __y)); 147 __MATHCALL (hypot,, (_Mdouble_ __x, _Mdouble_ __y)); 168 __MATHCALL (fmod,, (_Mdouble_ __x, _Mdouble_ __y)); 187 __MATHCALL (drem,, (_Mdouble_ __x, _Mdouble_ __y)); 198 __MATHCALLX (copysign,, (_Mdouble_ __x, _Mdouble_ __y), (__const__)); 262 __MATHCALL (nextafter,, (_Mdouble_ __x, _Mdouble_ __y)); 264 __MATHCALL (nexttoward,, (_Mdouble_ __x, long double __y)); 275 __MATHCALL (remainder,, (_Mdouble_ __x, _Mdouble_ __y)); 310 __MATHCALL (remquo,, (_Mdouble_ __x, _Mdouble_ __y, int *__quo)); [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/bits/ |
| H A D | mathcalls.h | 59 __MATHCALL (atan2,, (_Mdouble_ __y, _Mdouble_ __x)); 140 __MATHCALL_VEC (pow,, (_Mdouble_ __x, _Mdouble_ __y)); 147 __MATHCALL (hypot,, (_Mdouble_ __x, _Mdouble_ __y)); 168 __MATHCALL (fmod,, (_Mdouble_ __x, _Mdouble_ __y)); 187 __MATHCALL (drem,, (_Mdouble_ __x, _Mdouble_ __y)); 198 __MATHCALLX (copysign,, (_Mdouble_ __x, _Mdouble_ __y), (__const__)); 262 __MATHCALL (nextafter,, (_Mdouble_ __x, _Mdouble_ __y)); 264 __MATHCALL (nexttoward,, (_Mdouble_ __x, long double __y)); 275 __MATHCALL (remainder,, (_Mdouble_ __x, _Mdouble_ __y)); 310 __MATHCALL (remquo,, (_Mdouble_ __x, _Mdouble_ __y, int *__quo)); [all …]
|