| /src/lib/libc/arch/i386/stdlib/ |
| abs.S | 1 /* $NetBSD: abs.S,v 1.8 2014/05/23 02:34:19 uebayasi Exp $ */ 34 * from: @(#)abs.s 5.2 (Berkeley) 12/17/90 39 RCSID("$NetBSD: abs.S,v 1.8 2014/05/23 02:34:19 uebayasi Exp $") 42 ENTRY(abs) function 48 END(abs)
|
| abs.S | 1 /* $NetBSD: abs.S,v 1.8 2014/05/23 02:34:19 uebayasi Exp $ */ 34 * from: @(#)abs.s 5.2 (Berkeley) 12/17/90 39 RCSID("$NetBSD: abs.S,v 1.8 2014/05/23 02:34:19 uebayasi Exp $") 42 ENTRY(abs) function 48 END(abs)
|
| /src/lib/libc/arch/sparc64/stdlib/ |
| abs.S | 1 /* $NetBSD: abs.S,v 1.2 2003/08/07 16:42:28 agc Exp $ */ 35 * from: Header: abs.s,v 1.1 91/07/06 18:01:57 torek Exp 41 .asciz "@(#)abs.s 8.1 (Berkeley) 6/4/93" 43 RCSID("$NetBSD: abs.S,v 1.2 2003/08/07 16:42:28 agc Exp $") 47 /* abs - int absolute value */ 50 ENTRY(abs) function
|
| abs.S | 1 /* $NetBSD: abs.S,v 1.2 2003/08/07 16:42:28 agc Exp $ */ 35 * from: Header: abs.s,v 1.1 91/07/06 18:01:57 torek Exp 41 .asciz "@(#)abs.s 8.1 (Berkeley) 6/4/93" 43 RCSID("$NetBSD: abs.S,v 1.2 2003/08/07 16:42:28 agc Exp $") 47 /* abs - int absolute value */ 50 ENTRY(abs) function
|
| /src/lib/libc/arch/x86_64/stdlib/ |
| abs.S | 1 /* $NetBSD: abs.S,v 1.3 2014/05/22 15:01:56 uebayasi Exp $ */ 34 * from: @(#)abs.s 5.2 (Berkeley) 12/17/90 39 RCSID("$NetBSD: abs.S,v 1.3 2014/05/22 15:01:56 uebayasi Exp $") 42 ENTRY(abs) function 48 END(abs)
|
| abs.S | 1 /* $NetBSD: abs.S,v 1.3 2014/05/22 15:01:56 uebayasi Exp $ */ 34 * from: @(#)abs.s 5.2 (Berkeley) 12/17/90 39 RCSID("$NetBSD: abs.S,v 1.3 2014/05/22 15:01:56 uebayasi Exp $") 42 ENTRY(abs) function 48 END(abs)
|
| /src/lib/libc/stdlib/ |
| Lint_abs.c | 12 abs(int j) function
|
| abs.c | 1 /* $NetBSD: abs.c,v 1.8 2012/06/08 11:15:26 abs Exp $ */ 35 static char sccsid[] = "@(#)abs.c 8.1 (Berkeley) 6/4/93"; 37 __RCSID("$NetBSD: abs.c,v 1.8 2012/06/08 11:15:26 abs Exp $"); 44 abs(int j) function
|
| Lint_abs.c | 12 abs(int j) function
|
| abs.c | 1 /* $NetBSD: abs.c,v 1.8 2012/06/08 11:15:26 abs Exp $ */ 35 static char sccsid[] = "@(#)abs.c 8.1 (Berkeley) 6/4/93"; 37 __RCSID("$NetBSD: abs.c,v 1.8 2012/06/08 11:15:26 abs Exp $"); 44 abs(int j) function
|
| /src/lib/libc/arch/m68k/stdlib/ |
| abs.S | 1 /* $NetBSD: abs.S,v 1.8 2013/07/16 21:48:32 matt Exp $ */ 40 RCSID("from: @(#)abs.s 5.1 (Berkeley) 5/12/90") 42 RCSID("$NetBSD: abs.S,v 1.8 2013/07/16 21:48:32 matt Exp $") 51 /* abs - int absolute value */ 53 ENTRY(abs) function 59 END(abs)
|
| abs.S | 1 /* $NetBSD: abs.S,v 1.8 2013/07/16 21:48:32 matt Exp $ */ 40 RCSID("from: @(#)abs.s 5.1 (Berkeley) 5/12/90") 42 RCSID("$NetBSD: abs.S,v 1.8 2013/07/16 21:48:32 matt Exp $") 51 /* abs - int absolute value */ 53 ENTRY(abs) function 59 END(abs)
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/ |
| std_abs.h | 44 #undef abs macro 52 using ::abs; 56 abs(long __i) { return __builtin_labs(__i); } function 61 abs(long long __x) { return __builtin_llabs (__x); } function 65 // 2192. Validity and return type of std::abs(0u) is unclear 66 // 2294. <cstdlib> should declare abs(double) 67 // 2735. std::abs(short), std::abs(signed char) and others should return int 71 abs(double __x) function 75 abs(float __x function 79 abs(long double __x) function 85 abs(__GLIBCXX_TYPE_INT_N_0 __x) { return __x >= 0 ? __x : -__x; } function 89 abs(__GLIBCXX_TYPE_INT_N_1 __x) { return __x >= 0 ? __x : -__x; } function 93 abs(__GLIBCXX_TYPE_INT_N_2 __x) { return __x >= 0 ? __x : -__x; } function 97 abs(__GLIBCXX_TYPE_INT_N_3 __x) { return __x >= 0 ? __x : -__x; } function 102 abs(_Float16 __x) function 108 abs(_Float32 __x) function 114 abs(_Float64 __x) function 120 abs(_Float128 __x) function 124 abs(_Float128 __x) function 130 abs(__gnu_cxx::__bfloat16_t __x) function 137 abs(__float128 __x) function [all...] |
| std_abs.h | 44 #undef abs macro 52 using ::abs; 56 abs(long __i) { return __builtin_labs(__i); } function 61 abs(long long __x) { return __builtin_llabs (__x); } function 65 // 2192. Validity and return type of std::abs(0u) is unclear 66 // 2294. <cstdlib> should declare abs(double) 67 // 2735. std::abs(short), std::abs(signed char) and others should return int 71 abs(double __x) function 75 abs(float __x function 79 abs(long double __x) function 85 abs(__GLIBCXX_TYPE_INT_N_0 __x) { return __x >= 0 ? __x : -__x; } function 89 abs(__GLIBCXX_TYPE_INT_N_1 __x) { return __x >= 0 ? __x : -__x; } function 93 abs(__GLIBCXX_TYPE_INT_N_2 __x) { return __x >= 0 ? __x : -__x; } function 97 abs(__GLIBCXX_TYPE_INT_N_3 __x) { return __x >= 0 ? __x : -__x; } function 102 abs(_Float16 __x) function 108 abs(_Float32 __x) function 114 abs(_Float64 __x) function 120 abs(_Float128 __x) function 124 abs(_Float128 __x) function 130 abs(__gnu_cxx::__bfloat16_t __x) function 137 abs(__float128 __x) function [all...] |
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/ |
| std_abs.h | 44 #undef abs macro 52 using ::abs; 56 abs(long __i) { return __builtin_labs(__i); } function 61 abs(long long __x) { return __builtin_llabs (__x); } function 65 // 2192. Validity and return type of std::abs(0u) is unclear 66 // 2294. <cstdlib> should declare abs(double) 67 // 2735. std::abs(short), std::abs(signed char) and others should return int 71 abs(double __x) function 75 abs(float __x function 79 abs(long double __x) function 85 abs(__GLIBCXX_TYPE_INT_N_0 __x) { return __x >= 0 ? __x : -__x; } function 89 abs(__GLIBCXX_TYPE_INT_N_1 __x) { return __x >= 0 ? __x : -__x; } function 93 abs(__GLIBCXX_TYPE_INT_N_2 __x) { return __x >= 0 ? __x : -__x; } function 97 abs(__GLIBCXX_TYPE_INT_N_3 __x) { return __x >= 0 ? __x : -__x; } function 103 abs(__float128 __x) function [all...] |
| std_abs.h | 44 #undef abs macro 52 using ::abs; 56 abs(long __i) { return __builtin_labs(__i); } function 61 abs(long long __x) { return __builtin_llabs (__x); } function 65 // 2192. Validity and return type of std::abs(0u) is unclear 66 // 2294. <cstdlib> should declare abs(double) 67 // 2735. std::abs(short), std::abs(signed char) and others should return int 71 abs(double __x) function 75 abs(float __x function 79 abs(long double __x) function 85 abs(__GLIBCXX_TYPE_INT_N_0 __x) { return __x >= 0 ? __x : -__x; } function 89 abs(__GLIBCXX_TYPE_INT_N_1 __x) { return __x >= 0 ? __x : -__x; } function 93 abs(__GLIBCXX_TYPE_INT_N_2 __x) { return __x >= 0 ? __x : -__x; } function 97 abs(__GLIBCXX_TYPE_INT_N_3 __x) { return __x >= 0 ? __x : -__x; } function 103 abs(__float128 __x) function [all...] |
| /src/external/apache2/llvm/dist/libcxx/include/ |
| stdlib.h | 66 int abs( int j); 67 long abs( long j); 68 long long abs(long long j); // C++0X 97 // abs 99 #undef abs macro 107 inline _LIBCPP_INLINE_VISIBILITY long abs(long __x) _NOEXCEPT { 111 inline _LIBCPP_INLINE_VISIBILITY long long abs(long long __x) _NOEXCEPT { 118 inline _LIBCPP_INLINE_VISIBILITY float abs(float __lcpp_x) _NOEXCEPT { 122 inline _LIBCPP_INLINE_VISIBILITY double abs(double __lcpp_x) _NOEXCEPT { 127 abs(long double __lcpp_x) _NOEXCEPT [all...] |
| stdlib.h | 66 int abs( int j); 67 long abs( long j); 68 long long abs(long long j); // C++0X 97 // abs 99 #undef abs macro 107 inline _LIBCPP_INLINE_VISIBILITY long abs(long __x) _NOEXCEPT { 111 inline _LIBCPP_INLINE_VISIBILITY long long abs(long long __x) _NOEXCEPT { 118 inline _LIBCPP_INLINE_VISIBILITY float abs(float __lcpp_x) _NOEXCEPT { 122 inline _LIBCPP_INLINE_VISIBILITY double abs(double __lcpp_x) _NOEXCEPT { 127 abs(long double __lcpp_x) _NOEXCEPT [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.fortran/ |
| intrinsic-precedence.f90 | 24 call abs(minus) !all-assigned 26 subroutine abs(i) subroutine in program:intrinsic_precedence 31 print *, i !user-abs 32 end subroutine abs
|
| intrinsic-precedence.f90 | 24 call abs(minus) !all-assigned 26 subroutine abs(i) subroutine in program:intrinsic_precedence 31 print *, i !user-abs 32 end subroutine abs
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.fortran/ |
| intrinsic-precedence.f90 | 24 call abs(minus) !all-assigned 26 subroutine abs(i) subroutine in program:intrinsic_precedence 31 print *, i !user-abs 32 end subroutine abs
|
| intrinsic-precedence.f90 | 24 call abs(minus) !all-assigned 26 subroutine abs(i) subroutine in program:intrinsic_precedence 31 print *, i !user-abs 32 end subroutine abs
|
| /src/external/bsd/ntp/dist/util/ |
| timetrim.c | 40 #define abs(X) (((X) < 0) ? -(X) : (X)) macro
|
| timetrim.c | 40 #define abs(X) (((X) < 0) ? -(X) : (X)) macro
|
| /src/lib/libc/time/ |
| tzselect.ksh | 276 function abs(x) { function 324 return abs(long1 - long2) * min(cos(lat1), cos(lat2))
|