Searched refs:subtrahend (Results 1 – 2 of 2) sorted by relevance
66 nstime_subtract(nstime_t *time, const nstime_t *subtrahend) { in nstime_subtract() argument67 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() argument74 assert(time->ns >= subtrahend); in nstime_isubtract()76 time->ns -= subtrahend; in nstime_isubtract()
22 void nstime_subtract(nstime_t *time, const nstime_t *subtrahend);23 void nstime_isubtract(nstime_t *time, uint64_t subtrahend);