/frameworks/native/opengl/tests/testFramerate/src/com/android/testframerate/ |
TestFramerateView.java | 50 private void registerTime(long now_us) { 52 long elapsedTime_us = now_us - mLastTime_us; 64 mLastTime_us = now_us; 73 long now_us = System.nanoTime() / 1000; local 74 registerTime(now_us); 76 float red = (now_us % 1000000) / 1000000.f; 77 float green = (now_us % 2000000) / 2000000.f; 78 float blue = (now_us % 3000000) / 3000000.f;
|
/frameworks/av/media/libstagefright/ |
TimedEventQueue.cpp | 196 int64_t now_us = 0; local 221 now_us = ALooper::GetNowUs(); 228 delay_us = when_us - now_us; 254 now_us = ALooper::GetNowUs(); 269 event->fire(this, now_us);
|
AwesomePlayer.cpp | 79 virtual void fire(TimedEventQueue *queue, int64_t /* now_us */) { [all...] |
/frameworks/av/media/libstagefright/include/ |
TimedEventQueue.h | 45 virtual void fire(TimedEventQueue *queue, int64_t now_us) = 0; 106 virtual void fire(TimedEventQueue *queue, int64_t now_us) {
|
/external/bluetooth/bluedroid/hci/src/ |
userial.c | 106 unsigned int now_us = 0; local 109 now_us = now.tv_sec*USEC_PER_SEC + now.tv_nsec/1000; 112 ALOGW("[userial] ts %08d diff : %08d len %d", now_us, diff_us,
|
/external/bluetooth/bluedroid/btif/src/ |
btif_media_task.c | 290 unsigned long long now_us; local 310 now_us = now.tv_sec*USEC_PER_SEC + now.tv_nsec/1000; 312 if ((now_us - cur_stat.ts_prev_us) < TPUT_STATS_INTERVAL_US) 316 (cur_stat.rx*1000000)/((now_us - cur_stat.ts_prev_us)), 317 (cur_stat.tx*1000000)/((now_us - cur_stat.ts_prev_us)), 323 cur_stat.ts_prev_us = now_us; 333 unsigned int now_us = 0; local 336 now_us = now.tv_sec*USEC_PER_SEC + now.tv_nsec/1000; 339 APPL_TRACE_DEBUG4("[%s] ts %08d, diff : %08d, queue sz %d", comment, now_us, diff_us, [all...] |
/external/bluetooth/bluedroid/audio_a2dp_hw/ |
audio_a2dp_hw.c | 151 unsigned long long now_us; local 156 now_us = now.tv_sec*USEC_PER_SEC + now.tv_nsec/1000; 162 DEBUG("[%s] ts %08lld, *diff %08lld, val %d", tag, now_us, diff_us, val); 168 DEBUG("[%s] ts %08lld, diff %08lld, val %d", tag, now_us, diff_us, val);
|
/frameworks/av/libvideoeditor/lvpp/ |
PreviewPlayer.cpp | 66 virtual void fire(TimedEventQueue *queue, int64_t /* now_us */) { [all...] |