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

/systemd/src/libsystemd/sd-event/
H A Dsd-event.c204 usec_t perturb; member in struct:sd_event
441 e->perturb = USEC_INFINITY;
1012 if (_likely_(e->perturb != USEC_INFINITY))
1016 e->perturb = (bootid.qwords[0] ^ bootid.qwords[1]) % USEC_PER_MINUTE;
1915 c = (b / USEC_PER_MINUTE) * USEC_PER_MINUTE + e->perturb;
1926 c = (b / (USEC_PER_SEC*10)) * (USEC_PER_SEC*10) + (e->perturb % (USEC_PER_SEC*10));
1937 c = (b / USEC_PER_SEC) * USEC_PER_SEC + (e->perturb % USEC_PER_SEC);
1948 c = (b / (USEC_PER_MSEC*250)) * (USEC_PER_MSEC*250) + (e->perturb % (USEC_PER_MSEC*250));

Completed in 1008 milliseconds