Searched defs:amt (Results 1 - 1 of 1) sorted by relevance

/system/extras/tests/lib/testUtil/
H A DtestUtil.c66 struct timespec double2ts(double amt) argument
70 rv.tv_sec = floor(amt);
71 rv.tv_nsec = (amt - rv.tv_sec) * nSecsPerSec;
72 // TODO: Handle cases where amt is negative
82 struct timeval double2tv(double amt) argument
86 rv.tv_sec = floor(amt);
87 rv.tv_usec = (amt - rv.tv_sec) * uSecsPerSec;
88 // TODO: Handle cases where amt is negative
257 // Delays for the number of seconds specified by amt or a greater amount.
258 // The amt variabl
261 testDelay(float amt) argument
287 testDelaySpin(float amt) argument
[all...]

Completed in 786 milliseconds