HomeSort by: relevance | last modified time | path
    Searched refs:abs (Results 1 - 25 of 477) 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/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/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/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);
fancy.c 214 n = abs(b); /* initialize n and pc */
320 ov = abs(cur);
321 nv = abs(new);
334 abs(ov - nv), ' ', inc);
337 abs(ov - nv), col, inc);
343 fixcol(r, c, abs(nv - 5), col,
347 c + 1, abs(ov - 5),
350 fixcol(r, c, abs(ov - 5), ' ',
354 c + 1, abs(nv - 5),
362 abs(ov - 10), col, inc)
    [all...]
  /src/lib/libc/arch/mips/gen/
fabs.S 61 abs.d $f0, $f12 # compute absolute value of x
  /src/share/doc/papers/diskperf/
Makefile 6 SRCS= abs.ms motivation.ms equip.ms methodology.ms tests.ms results.ms \
  /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);
  /src/games/sail/
misc.c 50 (abs(x) >= abs(y) ? abs(x) + abs(y)/2 : abs(y) + abs(x)/2)
122 Dr = abs(Dr);
123 Dc = abs(Dc);
  /src/sys/lib/libkern/arch/m68k/
divsi3.S 59 negl 4(%sp) | store abs(dividend)
62 negl 8(%sp) | store abs(divisor)
modsi3.S 66 negl 4(%sp) | store abs(divisor)
70 negl 4(%sp) | store abs(dividend)
  /src/external/bsd/libevent/dist/test/
check-dumpevents.py 37 if .9 < abs(t-T) < 1.1:
39 elif 2.4 < abs(t-T) < 2.6:
  /src/external/bsd/ntp/dist/sntp/libevent/test/
check-dumpevents.py 37 if .9 < abs(t-T) < 1.1:
39 elif 2.4 < abs(t-T) < 2.6:

Completed in 47 milliseconds

1 2 3 4 5 6 7 8 91011>>