Searched refs:subtrahend (Results 1 - 12 of 12) sorted by relevance

/netbsd-current/external/bsd/jemalloc/dist/src/
H A Dnstime.c66 nstime_subtract(nstime_t *time, const nstime_t *subtrahend) { argument
67 assert(nstime_compare(time, subtrahend) >= 0);
69 time->ns -= subtrahend->ns;
73 nstime_isubtract(nstime_t *time, uint64_t subtrahend) { argument
74 assert(time->ns >= subtrahend);
76 time->ns -= subtrahend;
/netbsd-current/external/bsd/jemalloc/include/jemalloc/internal/
H A Dnstime.h22 void nstime_subtract(nstime_t *time, const nstime_t *subtrahend);
23 void nstime_isubtract(nstime_t *time, uint64_t subtrahend);
/netbsd-current/external/bsd/jemalloc/dist/include/jemalloc/internal/
H A Dnstime.h22 void nstime_subtract(nstime_t *time, const nstime_t *subtrahend);
23 void nstime_isubtract(nstime_t *time, uint64_t subtrahend);
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.compile/
H A Dcompile.c87 func_global (int subtrahend) argument
89 globalvar -= subtrahend;
H A Dcompile-cplus.c90 func_global (int subtrahend) argument
92 globalvar -= subtrahend;
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.compile/
H A Dcompile.c87 func_global (int subtrahend) argument
89 globalvar -= subtrahend;
H A Dcompile-cplus.c90 func_global (int subtrahend) argument
92 globalvar -= subtrahend;
/netbsd-current/sys/external/bsd/drm2/include/linux/
H A Datomic.h97 atomic_sub(int subtrahend, atomic_t *atomic) argument
100 atomic_add_int(&atomic->a_u.au_uint, -subtrahend);
116 atomic_sub_return(int subtrahend, atomic_t *atomic) argument
121 v = (int)atomic_add_int_nv(&atomic->a_u.au_uint, -subtrahend);
/netbsd-current/external/bsd/libbind/dist/isc/
H A Dev_timers.c89 evSubTime(struct timespec minuend, struct timespec subtrahend) { argument
92 x.tv_sec = minuend.tv_sec - subtrahend.tv_sec;
93 if (minuend.tv_nsec >= subtrahend.tv_nsec)
94 x.tv_nsec = minuend.tv_nsec - subtrahend.tv_nsec;
96 x.tv_nsec = BILLION - subtrahend.tv_nsec + minuend.tv_nsec;
/netbsd-current/lib/libc/isc/
H A Dev_timers.c96 evSubTime(struct timespec minuend, struct timespec subtrahend) { argument
99 x.tv_sec = minuend.tv_sec - subtrahend.tv_sec;
100 if (minuend.tv_nsec >= subtrahend.tv_nsec)
101 x.tv_nsec = minuend.tv_nsec - subtrahend.tv_nsec;
103 x.tv_nsec = BILLION - subtrahend.tv_nsec + minuend.tv_nsec;
/netbsd-current/external/cddl/osnet/dist/lib/libdtrace/common/
H A Ddt_consume.c161 dt_subtract_128(uint64_t *minuend, uint64_t *subtrahend, uint64_t *difference) argument
165 result[0] = minuend[0] - subtrahend[0];
166 result[1] = minuend[1] - subtrahend[1] -
167 (minuend[0] < subtrahend[0] ? 1 : 0);
226 * We initialize subtrahend by shifting divisor left as far as possible. We
227 * loop, comparing subtrahend to dividend: if subtrahend is smaller, we
229 * subtrahend right by one bit for the next comparison.
236 uint64_t subtrahend[2]; local
249 subtrahend[
[all...]
/netbsd-current/external/mit/isl/dist/
H A Disl_test.c4288 const char *subtrahend; member in struct:__anon53
4311 subtract_domain_tests[i].subtrahend);
4329 subtract_domain_tests[i].subtrahend);

Completed in 224 milliseconds