Home
last modified time | relevance | path

Searched defs:abs (Results 1 – 25 of 47) sorted by relevance

12

/openbsd-src/gnu/llvm/libcxx/include/
H A Dstdlib.h113 _LIBCPP_NODISCARD_EXT inline _LIBCPP_INLINE_VISIBILITY long abs(long __x) _NOEXCEPT { in abs() function
116 _LIBCPP_NODISCARD_EXT inline _LIBCPP_INLINE_VISIBILITY long long abs(long long __x) _NOEXCEPT { in abs() function
122 _LIBCPP_NODISCARD_EXT inline _LIBCPP_INLINE_VISIBILITY float abs(float __lcpp_x) _NOEXCEPT { in abs() function
126 _LIBCPP_NODISCARD_EXT inline _LIBCPP_INLINE_VISIBILITY double abs(double __lcpp_x) _NOEXCEPT { in abs() function
131 abs(long double __lcpp_x) _NOEXCEPT { in abs() function
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.jason/
H A Dc-inline.C6 inline double abs (double) { return 0.0; } in abs() function
7 inline short abs (short) { return 0; } in abs() function
10 inline int abs (int) { return 0; } // causes segfault - in abs() function
H A Dloverload4.C4 inline char abs (char x) { return 0; } in abs() function
7 inline int abs (int x) { return 1; } in abs() function
H A Doverload22.C5 inline double abs (double x) { return x;} in abs() function
6 inline int abs (int i) { return i; } in abs() function
/openbsd-src/gnu/lib/libstdc++/libstdc++/include/c/
H A Dstd_cmath.h85 abs(double __x) in abs() function
89 abs(float __x) in abs() function
93 abs(long double __x) in abs() function
/openbsd-src/gnu/gcc/libstdc++-v3/include/c/
H A Dstd_cmath.h85 abs(double __x) in abs() function
89 abs(float __x) in abs() function
93 abs(long double __x) in abs() function
/openbsd-src/lib/libcrypto/asn1/
H A Da_bitstr.c93 asn1_abs_clear_unused_bits(ASN1_BIT_STRING *abs) in asn1_abs_clear_unused_bits()
99 asn1_abs_set_unused_bits(ASN1_BIT_STRING *abs, uint8_t unused_bits) in asn1_abs_set_unused_bits()
246 ASN1_BIT_STRING *abs = NULL; in c2i_ASN1_BIT_STRING_cbs() local
303 ASN1_BIT_STRING *abs = NULL; in c2i_ASN1_BIT_STRING() local
/openbsd-src/lib/librthread/
H A Drthread_rwlock.c116 const struct timespec *abs, int timed) in _rthread_rwlock_timedrdlock()
169 const struct timespec *abs) in pthread_rwlock_timedrdlock()
193 const struct timespec *abs, int timed) in _rthread_rwlock_timedwrlock()
245 const struct timespec *abs) in pthread_rwlock_timedwrlock()
H A Dsynch.h29 _twait(volatile uint32_t *p, int val, clockid_t clockid, const struct timespec *abs) in _twait()
/openbsd-src/lib/libc/thread/
H A Drthread_mutex.c97 const struct timespec *abs) in _rthread_mutex_trylock() argument
137 const struct timespec *abs, int timed) in _rthread_mutex_timedlock() argument
214 pthread_mutex_timedlock(pthread_mutex_t *mutexp, const struct timespec *abs) in pthread_mutex_timedlock() argument
H A Drthread_cond.c72 const struct timespec *abs) in _rthread_cond_timedwait()
134 const struct timespec *abs) in pthread_cond_timedwait()
H A Dsynch.h29 _twait(volatile uint32_t *p, int val, clockid_t clockid, const struct timespec *abs) in _twait()
/openbsd-src/gnu/lib/libstdc++/libstdc++/include/c_std/
H A Dstd_cstdlib.h119 abs(long __i) { return labs(__i); } in abs() function
149 abs(long long __x) { return __x >= 0 ? __x : -__x; } in abs() function
/openbsd-src/gnu/llvm/clang/lib/Headers/
H A D__clang_hip_cmath.h44 __DEVICE__ __CONSTEXPR__ double abs(double __x) { return ::fabs(__x); } in abs() function
45 __DEVICE__ __CONSTEXPR__ float abs(float __x) { return ::fabsf(__x); } in abs() function
46 __DEVICE__ __CONSTEXPR__ long long abs(long long __n) { return ::llabs(__n); } in abs() function
47 __DEVICE__ __CONSTEXPR__ long abs(long __n) { return ::labs(__n); } in abs() function
H A D__clang_cuda_cmath.h41 __DEVICE__ long long abs(long long __n) { return ::llabs(__n); } in abs() function
42 __DEVICE__ long abs(long __n) { return ::labs(__n); } in abs() function
43 __DEVICE__ float abs(float __x) { return ::fabsf(__x); } in abs() function
44 __DEVICE__ double abs(double __x) { return ::fabs(__x); } in abs() function
H A D__clang_hip_stdlib.h26 int abs(int __x) { in abs() function
/openbsd-src/lib/libc/stdlib/
H A Dabs.c34 abs(int j) in abs() function
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/
H A Dno-builtin-1.c33 abs (int x) in abs() function
/openbsd-src/gnu/llvm/lld/Common/
H A DReproduce.cpp25 SmallString<128> abs = path; in relativeToRoot() local
/openbsd-src/gnu/gcc/libstdc++-v3/include/std/
H A Dstd_complex.h577 abs(const complex<_Tp>& __z) { return __complex_abs(__z.__rep()); } in abs() function
581 abs(const complex<_Tp>& __z) { return __complex_abs(__z); } in abs() function
/openbsd-src/gnu/lib/libstdc++/libstdc++/include/std/
H A Dstd_complex.h410 abs(const complex<_Tp>& __z) in abs() function
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A Dbuiltin-abs-1.c127 abs (int x) in abs() function
H A Dbuiltin-abs-2.c123 abs (int x) in abs() function
/openbsd-src/gnu/gcc/libstdc++-v3/include/c_std/
H A Dstd_cmath.h89 abs(double __x) in abs() function
93 abs(float __x) in abs() function
97 abs(long double __x) in abs() function
/openbsd-src/gnu/usr.bin/binutils-2.17/opcodes/
H A Dh8500-dis.c98 int abs = 0; in print_insn_h8500() local

12