HomeSort by: relevance | last modified time | path
    Searched refs:abs (Results 1 - 25 of 687) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /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
  /src/usr.bin/make/unit-tests/
varmod-to-abs.exp 1 make: varmod-to-abs.mk:19: does-not-exist.c
2 make: varmod-to-abs.mk:21: does-not-exist.c
3 cached_realpath: varmod-to-abs.mk -> varmod-to-abs.mk
4 make: varmod-to-abs.mk:26: varmod-to-abs.mk
  /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)
  /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)
  /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...]
  /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...]
  /src/tests/lib/libm/
t_cabsl.cxx 47 sum += std::abs(cld);
49 sum += std::abs(cd);
52 sum += std::abs(cf);
  /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)
  /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
  /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...]
  /src/external/bsd/ntp/dist/tests/libntp/
realpath.c 67 char abs[512];
85 strlcpy(abs, resolved, sizeof(abs));
89 if (strcmp(nam, abs))
90 printf(" '%s' --> '%s'\n", nam, abs);
92 TEST_ASSERT_TRUE_MESSAGE(isValidAbsPath(abs), errMsg("could not validate '%s'", abs));
  /src/external/mpl/bind/dist/bin/tests/system/dnssec/
ntadiff.pl 22 my $diff = abs($actual - $expected);
  /src/sys/arch/arm/acpi/
acpipchb.c 220 struct acpipchb_bus_space * const abs = t; local
226 if ((abs->flags & PCI_FLAGS_IO_OKAY) != 0) {
231 for (i = 0; i < abs->nrange; i++) {
232 struct acpipchb_bus_range * const range = &abs->range[i];
234 return abs->map(t, bpa + range->offset, size,
248 struct acpipchb_bus_space *abs; local
260 abs = &sc->sc_pciio_bst;
265 abs = &sc->sc_pcimem_bst;
273 if (abs->nrange == ACPIPCHB_MAX_RANGES) {
279 range = &abs->range[abs->nrange]
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/tr1/
stdlib.h 42 using std::tr1::abs;
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/tr1/
stdlib.h 44 using std::tr1::abs;
  /src/games/backgammon/common_source/
one.c 53 n = abs(mm->g[i] - mm->p[i]);
80 if (abs(bar - mm->g[i]) < 7) {
87 if (abs(home - mm->g[i]) < 7 && abs(home - mm->p[i]) > 6) {
136 return (abs(home - i));
155 if (abs(mm->g[i] - home) < 7 && abs(mm->p[i] - home) > 6) {
167 if (abs(bar - mm->g[i]) < 7) {
odds.c 96 place = abs(25 - b - i);
97 menstuck = abs(board[b]);
100 diff = abs(j - i);
  /src/lib/libc/arch/mips/gen/
fabs.S 61 abs.d $f0, $f12 # compute absolute value of x
  /src/external/mpl/bind/dist/bin/tests/system/cds/
checktime.pl 27 die "bad inception time $delta" unless abs($delta - $target) <= 10;
  /src/share/doc/papers/diskperf/
Makefile 6 SRCS= abs.ms motivation.ms equip.ms methodology.ms tests.ms results.ms \
  /src/external/gpl3/gdb/dist/gdbsupport/
pathstuff.cc 249 std::string abs = gdb_abspath (xdg_cache_home); local
250 return path_join (abs.c_str (), "gdb");
258 std::string abs = gdb_abspath (home); local
259 return path_join (abs.c_str (), HOME_CACHE_DIR, "gdb");
267 std::string abs = gdb_abspath (win_home); local
268 return path_join (abs.c_str (), "gdb");
316 std::string abs = gdb_abspath (xdg_config_home); local
317 return path_join (abs.c_str (), "gdb");
325 std::string abs = gdb_abspath (home); local
326 return path_join (abs.c_str (), HOME_CONFIG_DIR, "gdb")
367 std::string abs = gdb_abspath (homedir); local
    [all...]
  /src/external/gpl3/gdb.old/dist/gdbsupport/
pathstuff.cc 243 std::string abs = gdb_abspath (xdg_cache_home); local
244 return path_join (abs.c_str (), "gdb");
252 std::string abs = gdb_abspath (home); local
253 return path_join (abs.c_str (), HOME_CACHE_DIR, "gdb");
261 std::string abs = gdb_abspath (win_home); local
262 return path_join (abs.c_str (), "gdb");
310 std::string abs = gdb_abspath (xdg_config_home); local
311 return path_join (abs.c_str (), "gdb");
319 std::string abs = gdb_abspath (home); local
320 return path_join (abs.c_str (), HOME_CONFIG_DIR, "gdb")
361 std::string abs = gdb_abspath (homedir); local
    [all...]
  /src/sys/arch/arm/sunxi/
sunxi_ccu_display.c 54 diff = abs(new_rate - rate);
57 diff_x2 = abs(new_rate - rate_x2);
88 diff = abs(try_rate - rate);
91 diff_x2 = abs(try_rate - rate_x2);
120 diff = abs(rate - new_rate);
  /src/sys/arch/atari/dev/
grfabs.c 195 dx = abs(dm->size.width - dim->width);
196 dy = abs(dm->size.height - dim->height);
197 dd = abs(dm->depth - depth);
217 dx = abs(curr_mode->size.width - dim->width);
218 dy = abs(curr_mode->size.height - dim->height);
219 dd = abs(curr_mode->depth - depth);

Completed in 41 milliseconds

1 2 3 4 5 6 7 8 91011>>