/external/chromium_org/media/base/ |
clock.cc | 95 int64 now_us = (time - reference_).InMicroseconds(); local 96 now_us = static_cast<int64>(now_us * playback_rate_); 97 return media_time_ + base::TimeDelta::FromMicroseconds(now_us);
|
/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;
|
/external/bluetooth/bluedroid/hci/src/ |
userial.c | 107 unsigned int now_us = 0; local 110 now_us = now.tv_sec*USEC_PER_SEC + now.tv_nsec/1000; 113 ALOGW("[userial] ts %08d diff : %08d len %d", now_us, diff_us,
|
/frameworks/av/media/libstagefright/ |
TimedEventQueue.cpp | 218 int64_t now_us = 0; local 244 now_us = ALooper::GetNowUs(); 251 delay_us = when_us - now_us; 277 now_us = ALooper::GetNowUs(); 292 event->fire(this, now_us);
|
/ndk/sources/cxx-stl/gabi++/tests/ |
dynamic_cast3.cpp | 2412 double now_us() { function [all...] |
dynamic_cast5.cpp | 1304 double now_us() { function [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);
|
/external/bluetooth/bluedroid/btif/src/ |
btif_media_task.c | 285 unsigned long long now_us; local 305 now_us = now.tv_sec*USEC_PER_SEC + now.tv_nsec/1000; 307 if ((now_us - cur_stat.ts_prev_us) < TPUT_STATS_INTERVAL_US) 311 (cur_stat.rx*1000000)/((now_us - cur_stat.ts_prev_us)), 312 (cur_stat.tx*1000000)/((now_us - cur_stat.ts_prev_us)), 318 cur_stat.ts_prev_us = now_us; 328 unsigned int now_us = 0; local 331 now_us = now.tv_sec*USEC_PER_SEC + now.tv_nsec/1000; 334 APPL_TRACE_DEBUG4("[%s] ts %08d, diff : %08d, queue sz %d", comment, now_us, diff_us, [all...] |