Home
last modified time | relevance | path

Searched refs:subtrahend (Results 1 – 2 of 2) sorted by relevance

/f-stack/app/redis-5.0.5/deps/jemalloc/src/
H A Dnstime.c66 nstime_subtract(nstime_t *time, const nstime_t *subtrahend) { in nstime_subtract() argument
67 assert(nstime_compare(time, subtrahend) >= 0); in nstime_subtract()
69 time->ns -= subtrahend->ns; in nstime_subtract()
73 nstime_isubtract(nstime_t *time, uint64_t subtrahend) { in nstime_isubtract() argument
74 assert(time->ns >= subtrahend); in nstime_isubtract()
76 time->ns -= subtrahend; in nstime_isubtract()
/f-stack/app/redis-5.0.5/deps/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);