Searched refs:amt (Results 1 – 3 of 3) sorted by relevance
28 struct timespec double2ts(double amt);29 struct timeval double2tv(double amt);37 void testDelay(float amt);38 void testDelaySpin(float amt);
68 struct timespec double2ts(double amt) in double2ts() argument72 rv.tv_sec = floor(amt); in double2ts()73 rv.tv_nsec = (amt - rv.tv_sec) * nSecsPerSec; in double2ts()84 struct timeval double2tv(double amt) in double2tv() argument88 rv.tv_sec = floor(amt); in double2tv()89 rv.tv_usec = (amt - rv.tv_sec) * uSecsPerSec; in double2tv()263 void testDelay(float amt) in testDelay() argument277 if (ts2double(&delta) > amt) { break; } in testDelay()280 remaining = double2ts(amt - ts2double(&delta)); in testDelay()289 void testDelaySpin(float amt) in testDelaySpin() argument[all …]
127 void remove(size_t start, size_t amt);