Searched refs:abs (Results 1 - 25 of 265) sorted by relevance

1234567891011

/freebsd-11-stable/lib/libc/stdlib/
H A Dabs.c31 static char sccsid[] = "@(#)abs.c 8.1 (Berkeley) 6/4/93";
39 abs(int j) function
/freebsd-11-stable/contrib/llvm-project/lld/Common/
H A DReproduce.cpp25 SmallString<128> abs = path; local
26 if (fs::make_absolute(abs))
28 path::remove_dots(abs, /*remove_dot_dot=*/true);
34 StringRef root = path::root_name(abs);
40 path::append(res, path::relative_path(abs));
/freebsd-11-stable/lib/libc/mips/gen/
H A Dfabs.S57 abs.d $f0, $f12 # compute absolute value of x
/freebsd-11-stable/contrib/libstdc++/include/tr1/
H A Dstdlib.h47 using std::tr1::abs;
/freebsd-11-stable/share/doc/papers/diskperf/
H A DMakefile6 SRCS= abs.ms motivation.ms equip.ms methodology.ms tests.ms \
/freebsd-11-stable/share/doc/papers/malloc/
H A DMakefile6 SRCS= abs.ms intro.ms kernel.ms malloc.ms problems.ms alternatives.ms \
/freebsd-11-stable/stand/mips/uboot/
H A DMakefile43 ldscript.abs:
49 ubldr: ${OBJS} ldscript.abs ${.CURDIR}/ldscript.${MACHINE_CPUARCH} ${DPADD}
50 ${CC} ${CFLAGS} -T ldscript.abs ${LDFLAGS} \
54 CLEANFILES+= ldscript.abs ldscript.pie ubldr ubldr.pie ubldr.bin
/freebsd-11-stable/lib/libc/sys/
H A D__vdso_gettimeofday.c59 binuptime(struct bintime *bt, struct vdso_timekeep *tk, int abs) argument
80 if (abs)
122 int abs, error; local
136 abs = 1;
144 abs = 0;
149 error = binuptime(&bt, tk, abs);
/freebsd-11-stable/crypto/heimdal/lib/krb5/
H A Dtest_time.c57 diff2 = abs(sec - tv.tv_sec);
61 abs(sec - tv.tv_sec));
/freebsd-11-stable/contrib/libstdc++/include/c/
H A Dstd_cmath.h44 #undef abs macro
85 abs(double __x) function in namespace:std
89 abs(float __x) function in namespace:std
93 abs(long double __x) function in namespace:std
/freebsd-11-stable/contrib/nvi/ex/
H A Dex_z.c37 MARK abs; local
94 abs.lno = sp->lno;
95 abs.cno = sp->cno;
96 (void)mark_set(sp, ABSMARK1, &abs, 1);
/freebsd-11-stable/stand/arm/uboot/
H A DMakefile49 ldscript.abs:
55 ubldr: ${OBJS} ldscript.abs ${.CURDIR}/ldscript.${MACHINE_CPUARCH} ${DPADD}
56 ${CC} ${CFLAGS} -T ldscript.abs ${LDFLAGS} \
66 CLEANFILES+= ldscript.abs ldscript.pie ubldr ubldr.pie ubldr.bin
/freebsd-11-stable/contrib/ntp/sntp/libevent/test/
H A Dcheck-dumpevents.py37 if .9 < abs(t-T) < 1.1:
39 elif 2.4 < abs(t-T) < 2.6:
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/hexagon/
H A Ddivdi3.S28 r1:0 = abs(r1:0)
29 r3:2 = abs(r3:2)
H A Dmoddi3.S27 r1:0 = abs(r1:0)
28 r3:2 = abs(r3:2)
H A Dmodsi3.S27 r2 = abs(r0)
28 r1 = abs(r1)
H A Ddivsi3.S28 r1 = abs(r0)
29 r2 = abs(r1)
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/
H A D__clang_cuda_math_forward_declares.h40 __DEVICE__ long abs(long);
41 __DEVICE__ long long abs(long long);
42 __DEVICE__ double abs(double);
43 __DEVICE__ float abs(float);
50 __DEVICE__ const double abs(const double);
51 __DEVICE__ const float abs(const float);
53 __DEVICE__ int abs(int) __NOEXCEPT;
223 using ::abs;
/freebsd-11-stable/contrib/libstdc++/include/c_std/
H A Dstd_cstdlib.h76 #undef abs
110 using ::abs;
143 abs(long __i) { return labs(__i); }
174 abs(long long __x) { return __x >= 0 ? __x : -__x; }
209 using ::__gnu_cxx::abs;
/freebsd-11-stable/usr.bin/locate/locate/
H A Dutil.c246 MAXPATHLEN, abs(i) < abs(hi) ? i : hi);
272 MAXPATHLEN, abs(word) < abs(hword) ? word : hword);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/
H A DStack.cpp56 size_t StackUsage = (size_t)std::abs(StackDiff);
/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Dvasprintf.c87 total_width += abs (va_arg (ap, int));
97 total_width += abs (va_arg (ap, int));
/freebsd-11-stable/contrib/binutils/libiberty/
H A Dvasprintf.c87 total_width += abs (va_arg (ap, int));
97 total_width += abs (va_arg (ap, int));
/freebsd-11-stable/usr.sbin/rtprio/
H A Drtprio.c73 proc = abs(proc);
113 proc = abs(proc);
/freebsd-11-stable/sys/dev/videomode/
H A Dpickmode.c83 diff = abs(mref - refresh);
173 rtemp = abs(refresh -
183 if (abs(abest - atemp) > (abest / 8) &&
184 abs(aspect - atemp) < abs(aspect - abest)) {
189 abs(abest - atemp) <= (abest / 8)) {

Completed in 520 milliseconds

1234567891011