HomeSort by relevance Sort by last modified time
    Searched defs:time_ms (Results 1 - 16 of 16) sorted by null

  /external/webrtc/webrtc/modules/audio_coding/codecs/tools/
audio_codec_speed_test.cc 101 float time_ms; local
108 time_ms = EncodeABlock(&in_data_[data_pointer_], &bit_stream_[0],
110 encoding_time_ms_ += time_ms;
111 time_ms = DecodeABlock(&bit_stream_[0], encoded_bytes_, &out_data_[0]);
112 decoding_time_ms_ += time_ms;
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
rtp_packet_history.h 93 int64_t time_ms = 0; member in struct:webrtc::RTPPacketHistory::StoredPacket
rtcp_sender_unittest.cc 652 int64_t time_ms; local
653 EXPECT_FALSE(rtcp_sender_->SendTimeOfXrRrReport(initial_mid_ntp, &time_ms));
661 EXPECT_TRUE(rtcp_sender_->SendTimeOfXrRrReport(mid_ntp, &time_ms));
662 EXPECT_EQ(clock_.CurrentNtpInMilliseconds(), time_ms);
666 EXPECT_FALSE(rtcp_sender_->SendTimeOfXrRrReport(initial_mid_ntp, &time_ms));
  /external/webrtc/webrtc/test/
rtp_file_reader.h 31 uint32_t time_ms; member in struct:webrtc::test::RtpPacket
  /external/webrtc/webrtc/modules/audio_coding/neteq/tools/
packet.h 34 // when the Packet object is deleted. The |time_ms| is an extra time
39 double time_ms,
51 double time_ms,
58 Packet(uint8_t* packet_memory, size_t allocated_bytes, double time_ms);
63 double time_ms);
98 double time_ms() const { return time_ms_; } function in class:webrtc::test::Packet
  /external/v8/src/heap/
memory-reducer.cc 30 double time_ms = heap->MonotonicallyIncreasingTimeInMs(); local
31 heap->tracer()->SampleAllocation(time_ms, heap->NewSpaceAllocationCounter(),
33 double js_call_rate = memory_reducer_->SampleAndGetJsCallsPerMs(time_ms);
43 event.time_ms = time_ms;
55 double MemoryReducer::SampleAndGetJsCallsPerMs(double time_ms) {
58 double time_delta_ms = time_ms - js_calls_sample_time_ms_;
60 js_calls_sample_time_ms_ = time_ms;
95 ScheduleTimer(event.time_ms, state_.next_gc_start_ms - event.time_ms);
    [all...]
memory-reducer.h 103 double time_ms; member in struct:v8::internal::MemoryReducer::Event
122 void ScheduleTimer(double time_ms, double delay_ms);
152 double SampleAndGetJsCallsPerMs(double time_ms);
  /external/webrtc/webrtc/modules/bitrate_controller/
bitrate_controller_unittest.cc 105 int64_t time_ms = 1001; local
112 bandwidth_observer_->OnReceivedRtcpReceiverReport(report_blocks, 50, time_ms);
114 time_ms += 2000;
121 bandwidth_observer_->OnReceivedRtcpReceiverReport(report_blocks, 50, time_ms);
125 time_ms += 1000;
129 bandwidth_observer_->OnReceivedRtcpReceiverReport(report_blocks, 50, time_ms);
133 time_ms += 1000;
137 bandwidth_observer_->OnReceivedRtcpReceiverReport(report_blocks, 50, time_ms);
139 time_ms += 1000;
143 bandwidth_observer_->OnReceivedRtcpReceiverReport(report_blocks, 50, time_ms);
177 int64_t time_ms = 1; local
280 int64_t time_ms = 1001; local
    [all...]
  /external/v8/src/
date.h 56 // Computes floor(time_ms / kMsPerDay).
57 static int DaysFromTime(int64_t time_ms) {
58 if (time_ms < 0) time_ms -= (kMsPerDay - 1);
59 return static_cast<int>(time_ms / kMsPerDay);
63 // Computes modulo(time_ms, kMsPerDay) given that
64 // days = floor(time_ms / kMsPerDay).
65 static int TimeInDay(int64_t time_ms, int days) {
66 return static_cast<int>(time_ms - days * kMsPerDay);
92 const char* LocalTimezone(int64_t time_ms) {
206 double time_ms = static_cast<double>(time_sec * 1000); local
    [all...]
builtins.cc 2159 int64_t time_ms = static_cast<int64_t>(time_val); local
2385 int64_t const time_ms = static_cast<int64_t>(time_val); local
2407 int64_t const time_ms = static_cast<int64_t>(date->value()->Number()); local
2441 int64_t const time_ms = static_cast<int64_t>(time_val); local
2477 int64_t const time_ms = static_cast<int64_t>(time_val); local
2499 int64_t const time_ms = static_cast<int64_t>(time_val); local
2532 int64_t const time_ms = static_cast<int64_t>(time_val); local
2560 int64_t const time_ms = static_cast<int64_t>(time_val); local
2596 int64_t const time_ms = static_cast<int64_t>(date->value()->Number()); local
2617 int64_t const time_ms = static_cast<int64_t>(date->value()->Number()); local
2650 int64_t const time_ms = static_cast<int64_t>(time_val); local
2685 int64_t const time_ms = static_cast<int64_t>(time_val); local
2706 int64_t const time_ms = static_cast<int64_t>(time_val); local
2738 int64_t const time_ms = static_cast<int64_t>(time_val); local
2765 int64_t const time_ms = static_cast<int64_t>(time_val); local
2803 int64_t const time_ms = static_cast<int64_t>(time_val); local
2855 int64_t time_ms = static_cast<int64_t>(time_val); local
2913 int64_t const time_ms = static_cast<int64_t>(date->value()->Number()); local
    [all...]
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
metric_recorder.h 49 time_ms(0),
54 time_ms = now_ms;
60 int64_t time_ms; member in struct:webrtc::testing::bwe::PlotInformation
79 int64_t time_ms,
85 void UpdateTimeMs(int64_t time_ms);
packet_sender.h 74 void RunFor(int64_t time_ms, Packets* in_out) override;
89 void ProcessFeedbackAndGeneratePackets(int64_t time_ms,
110 void RunFor(int64_t time_ms, Packets* in_out) override;
145 void RunFor(int64_t time_ms, Packets* in_out) override;
155 time_ms(packet.send_time_ms()) {}
158 : sequence_number(seq_num), time_ms(now_ms) {}
166 int64_t time_ms; // Time of when the packet left the sender, or when the member in struct:webrtc::testing::bwe::TcpSender::InFlight
  /hardware/intel/common/omx-components/videocodec/
OMXVideoDecoderVP9Hybrid.cpp 364 int32_t time_ms; local
390 time_ms = (int32_t)(tv_end.tv_sec - tv_start.tv_sec) * 1000 + (int32_t)(tv_end.tv_usec - tv_start.tv_usec)/1000;
391 LOGI("vpx_codec_decode: %d ms", time_ms);
  /development/ndk/platforms/android-9/samples/native-plasma/jni/
plasma.c 399 int64_t time_ms = (((int64_t)t.tv_sec)*1000000000LL + t.tv_nsec)/1000000; local
402 fill_plasma(&buffer, time_ms);
  /bionic/tests/
gtest_main.cpp 1047 int time_ms = atoi(args[i] + strlen("--deadline=")); local
1054 int time_ms = atoi(args[i] + strlen("--warnline=")); local
    [all...]
  /hardware/invensense/6515/libsensors_iio/software/simple_apps/playback/linux/
main.c 312 double time_ms; local
317 time_ms = 0;
319 time_ms = get_counter(&counter_start, &pc_freq);
321 PRINT("%6.0f, ", time_ms);
323 unsigned long time_ms;
328 time_ms = 0;
330 time_ms = get_counter();
332 PRINT("%6ld, ", time_ms);

Completed in 881 milliseconds