/external/curl/tests/unit/ |
unit1303.c | 63 int now_us; member in struct:timetest 138 NOW(run[i].now_s, run[i].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;
|
/prebuilts/ndk/r11/sources/cxx-stl/gabi++/tests/ |
dynamic_cast3.cpp | 2412 double now_us() { function [all...] |
dynamic_cast5.cpp | 1304 double now_us() { function [all...] |
/prebuilts/ndk/r13/sources/cxx-stl/gabi++/tests/ |
dynamic_cast3.cpp | 2412 double now_us() { function [all...] |
dynamic_cast5.cpp | 1304 double now_us() { function [all...] |
/external/webrtc/webrtc/modules/pacing/ |
paced_sender.cc | 357 int64_t now_us = clock_->TimeInMicroseconds(); local 359 int64_t elapsed_time_ms = (now_us - time_last_update_us_ + 500) / 1000; 360 time_last_update_us_ = now_us;
|
/system/bt/stack/a2dp/ |
a2dp_aac_encoder.cc | 522 uint64_t now_us = timestamp_us; local 525 (now_us - a2dp_aac_encoder_cb.aac_feeding_state.last_frame_us); 526 a2dp_aac_encoder_cb.aac_feeding_state.last_frame_us = now_us;
|
a2dp_sbc_encoder.cc | 439 uint64_t now_us = timestamp_us; local 441 us_this_tick = (now_us - a2dp_sbc_encoder_cb.feeding_state.last_frame_us); 442 a2dp_sbc_encoder_cb.feeding_state.last_frame_us = now_us; [all...] |
a2dp_vendor_ldac_encoder.cc | 579 uint64_t now_us = timestamp_us; local 582 (now_us - a2dp_ldac_encoder_cb.ldac_feeding_state.last_frame_us); 583 a2dp_ldac_encoder_cb.ldac_feeding_state.last_frame_us = now_us;
|
/system/bt/audio_a2dp_hw/src/ |
audio_a2dp_hw.cc | 172 unsigned long long now_us; local 177 now_us = now.tv_sec * USEC_PER_SEC + now.tv_nsec / 1000; 183 DEBUG("[%s] ts %08lld, *diff %08lld, val %d", tag, now_us, diff_us, val); 188 DEBUG("[%s] ts %08lld, diff %08lld, val %d", tag, now_us, diff_us, val); [all...] |
/system/bt/btif/src/ |
btif_a2dp_source.cc | 188 static void update_scheduling_stats(scheduling_stats_t* stats, uint64_t now_us, 707 uint64_t now_us = time_get_os_boottime_us(); local 721 btif_a2dp_source_cb.stats.tx_queue_last_flushed_us = now_us; 738 btif_a2dp_source_cb.stats.tx_queue_last_dropouts_us = now_us; 824 uint64_t now_us = time_get_os_boottime_us(); local 829 btif_a2dp_source_cb.stats.tx_queue_last_readbuf_us = now_us; 833 now_us, 848 static void update_scheduling_stats(scheduling_stats_t* stats, uint64_t now_us, 853 stats->last_update_us = now_us; 858 if (deadline_us < now_us) { 890 uint64_t now_us = time_get_os_boottime_us(); local [all...] |
/device/generic/goldfish/audio/ |
audio_hw.c | 460 const int64_t now_us = (curtime.tv_sec * 1000000000LL + curtime.tv_nsec) / 1000; local 470 position_since_underrun = (now_us - first_us) * 510 const uint64_t now_us = (current_time.tv_sec * 1000000000LL + local 539 uint64_t time_since_last_write_us = now_us - out->last_write_time_us; 545 out->last_write_time_us = now_us + sleep_time_us; 886 const int64_t now_us = (t.tv_sec * 1000000000LL + t.tv_nsec) / 1000; local 896 position_since_standby = (now_us - first_us) * [all...] |