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

/frameworks/base/libs/utils/
H A DTimers.cpp113 /*static*/ void DurationTimer::addToTimeval(struct timeval* ptv, long usec) argument
115 if (usec < 0) {
126 ptv->tv_usec += usec % 1000000;
131 ptv->tv_sec += usec / 1000000;
/frameworks/base/native/android/
H A Dsensor.cpp99 int32_t usec)
102 static_cast<Sensor const*>(sensor), us2ns(usec));
98 ASensorEventQueue_setEventRate(ASensorEventQueue* queue, ASensor const* sensor, int32_t usec) argument
/frameworks/base/opengl/libagl/
H A Ddxt.cpp184 long usec = (end_t.tv_sec - start_t.tv_sec)*1000000 + local
187 printf("Scanned w=%d h=%d in %ld usec\n", width, height, usec);
629 long usec = (end_t.tv_sec - start_t.tv_sec)*1000000 + local
632 printf("Loaded w=%d h=%d in %ld usec\n", width, height, usec);

Completed in 173 milliseconds