Home
last modified time | relevance | path

Searched refs:amt (Results 1 – 3 of 3) sorted by relevance

/system/extras/tests/include/
DtestUtil.h28 struct timespec double2ts(double amt);
29 struct timeval double2tv(double amt);
37 void testDelay(float amt);
38 void testDelaySpin(float amt);
/system/extras/tests/lib/testUtil/
DtestUtil.c68 struct timespec double2ts(double amt) in double2ts() argument
72 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() argument
88 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() argument
277 if (ts2double(&delta) > amt) { break; } in testDelay()
280 remaining = double2ts(amt - ts2double(&delta)); in testDelay()
289 void testDelaySpin(float amt) in testDelaySpin() argument
[all …]
/system/libhwbinder/include/hwbinder/
DParcel.h127 void remove(size_t start, size_t amt);