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

/system/extras/tests/include/
H A 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/
H A DtestUtil.c68 struct timespec double2ts(double amt) argument
72 rv.tv_sec = floor(amt);
73 rv.tv_nsec = (amt - rv.tv_sec) * nSecsPerSec;
74 // TODO: Handle cases where amt is negative
84 struct timeval double2tv(double amt) argument
88 rv.tv_sec = floor(amt);
89 rv.tv_usec = (amt - rv.tv_sec) * uSecsPerSec;
90 // TODO: Handle cases where amt is negative
259 // Delays for the number of seconds specified by amt or a greater amount.
260 // The amt variabl
263 testDelay(float amt) argument
289 testDelaySpin(float amt) argument
[all...]
/system/media/mca/filterpacks/imageproc/java/
H A DFillLightFilter.java132 float amt = 1.0f - mBacklight;
133 float mult = 1.0f / (amt * 0.7f + 0.3f);
/system/extras/tests/wifi/stress/
H A DwifiLoadScanAssoc.c453 float fract, biasedFract, amt; local
464 amt = delayMin + ((delayMax - delayMin) * biasedFract);
467 testDelay(amt);
/system/core/debuggerd/
H A Ddebuggerd.c617 ssize_t amt; local
622 amt = write(fd, string, len);
624 return amt >= 0 ? 0 : -errno;
/system/core/adb/
H A Dfile_sync_client.c317 int amt; local
342 amt = adb_read(lfd, file_buffer, size);
343 if (amt != size) {

Completed in 174 milliseconds