Lines Matching refs:sec
226 time_t sec = newTs.tv_sec - mOldTs.tv_sec; in threadLoop() local
228 ALOGE_IF(sec < 0 || (sec == 0 && nsec < 0), in threadLoop()
232 --sec; in threadLoop()
243 mMeasuredWarmupTs.tv_sec += sec; in threadLoop()
269 if (sec > 0 || nsec > mUnderrunNs) { in threadLoop()
273 (int) sec, nsec / 1000000L); in threadLoop()
283 (int) sec, nsec / 1000000L); in threadLoop()
311 if (sec > 0 && sec < 4) { in threadLoop()
312 monotonicNs += sec * 1000000000U; // unsigned to prevent signed overflow. in threadLoop()
320 sec = newLoad.tv_sec - mOldLoad.tv_sec; in threadLoop()
323 --sec; in threadLoop()
327 if (sec > 0 && sec < 4) { in threadLoop()
328 loadNs += sec * 1000000000U; // unsigned to prevent signed overflow. in threadLoop()