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

  /external/chromium_org/net/quic/
quic_fec_group_test.cc 44 void RunTest(size_t num_packets, size_t lost_packet, bool out_of_order) {
47 for (size_t packet = 0; packet < num_packets; ++packet) {
66 for (size_t packet = 0; packet < num_packets; packet++) {
72 ASSERT_TRUE(group.UpdateFec(ENCRYPTION_FORWARD_SECURE, num_packets,
81 ASSERT_TRUE(group.CanRevive() == (packet == num_packets - 1));
85 for (size_t packet = 0; packet < num_packets; packet++) {
104 ASSERT_TRUE(group.UpdateFec(ENCRYPTION_FORWARD_SECURE, num_packets,
113 << num_packets; local
116 << num_packets; local
quic_time_wait_list_manager.h 133 : num_packets(num_packets_),
137 int num_packets; member in struct:net::QuicTimeWaitListManager::ConnectionIdData
quic_time_wait_list_manager.cc 112 int num_packets = 0; local
115 num_packets = it->second.num_packets;
119 ConnectionIdData data(num_packets,
162 ++((it->second).num_packets);
163 if (!ShouldSendResponse((it->second).num_packets)) {
quic_connection_test.cc 1095 QuicPacketSequenceNumber num_packets = 256 * 2 + 1; local
    [all...]
  /external/chromium_org/net/tools/quic/
quic_time_wait_list_manager.h 137 : num_packets(num_packets_),
141 int num_packets; member in struct:net::tools::QuicTimeWaitListManager::ConnectionIdData
quic_time_wait_list_manager.cc 116 int num_packets = 0; local
119 num_packets = it->second.num_packets;
123 ConnectionIdData data(num_packets, version, clock_.ApproximateNow(),
164 ++((it->second).num_packets);
165 if (!ShouldSendResponse((it->second).num_packets)) {
  /external/chromium_org/media/cast/transport/rtp_sender/rtp_packetizer/
rtp_packetizer.cc 59 size_t num_packets = (frame.data.size() + max_length) / max_length; local
60 size_t payload_length = (frame.data.size() + num_packets) / num_packets;
89 big_endian_writer.WriteU16(static_cast<uint16>(num_packets - 1));
108 DCHECK(packet_id_ == num_packets) << "Invalid state";
  /external/chromium_org/content/browser/speech/
speech_recognizer_impl_unittest.cc 415 int num_packets = (SpeechRecognizerImpl::kNoSpeechTimeoutMs) / local
418 for (int i = 0; i < num_packets; ++i) {
442 int num_packets = (SpeechRecognizerImpl::kNoSpeechTimeoutMs) / local
446 for (int i = 0; i < num_packets / 2; ++i) {
451 for (int i = 0; i < num_packets / 2; ++i) {
479 int num_packets = SpeechRecognizerImpl::kEndpointerEstimationTimeMs / local
482 for (int i = 0; i < num_packets; ++i) {
  /external/chromium_org/media/cast/logging/
logging_impl_unittest.cc 182 int num_packets = 0; local
189 ++num_packets;
208 EXPECT_EQ(num_packets, static_cast<int>(packet_events.size()));
stats_event_subscriber_unittest.cc 265 int num_packets = 10; local
276 for (int i = 0; i < num_packets; i++) {
286 num_packets - 1,
312 num_packets - 1,
329 num_packets - 1,
346 num_packets - 1,
359 num_packets - 1,
  /external/chromium_org/third_party/webrtc/modules/pacing/
paced_sender_unittest.cc 45 int num_packets = (bytes + kPaddingPacketSize - 1) / kPaddingPacketSize; local
46 padding_sent_ += kPaddingPacketSize * num_packets;
47 return kPaddingPacketSize * num_packets;
  /external/chromium_org/media/audio/win/
audio_low_latency_output_win.cc 444 // |num_packets| will always be one for exclusive-mode streams and
448 size_t num_packets = (num_available_frames / packet_size_frames_); local
450 for (size_t n = 0; n < num_packets; ++n) {
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
turnport_unittest.cc 302 size_t num_packets = 256; local
303 for (size_t i = 0; i < num_packets; ++i) {
314 ASSERT_EQ_WAIT(num_packets, turn_packets_.size(), kTimeout);
315 ASSERT_EQ_WAIT(num_packets, udp_packets_.size(), kTimeout);
316 for (size_t i = 0; i < num_packets; ++i) {
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
rtp_sender_video.cc 345 uint32_t num_packets = (size + max_length - 1) / max_length; local
346 uint32_t payload_length = (size + num_packets - 1) / num_packets;
  /external/linux-tools-perf/perf-3.12.0/tools/perf/bench/
sched-messaging.c 47 unsigned int num_packets; member in struct:receiver_context
127 for (i = 0; i < ctx->num_packets; i++) {
223 ctx->num_packets = num_fds * loops;
  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/
acm_receiver.cc 779 int num_packets; local
782 neteq_->PacketBufferStatistics(&num_packets, &max_num_packets);
783 if (num_packets > max_num_packets * kBufferingThresholdScale) {
  /external/qemu/android/
shaper.c 100 int num_packets; member in struct:NetShaperRec_
148 shaper->num_packets--;
169 shaper->num_packets = 0;
192 shaper->num_packets = 0;
251 shaper->num_packets += 1;
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
neteq_unittest.cc 650 int num_packets = (frame_index % 10 == 0 ? 2 : 1); local
651 for (int n = 0; n < num_packets; ++n) {
681 int num_packets = (i % 10 == 9 ? 0 : 1); local
682 for (int n = 0; n < num_packets; ++n) {
    [all...]
  /external/chromium_org/third_party/webrtc/test/
rtcp_packet_parser.h 31 int num_packets() const { return num_packets_; } function in class:webrtc::test::PacketType
  /external/libusb/libusb/os/
linux_usbfs.c 1460 int num_packets = transfer->num_iso_packets; local
    [all...]
  /external/chromium_org/third_party/libusb/src/libusb/os/
linux_usbfs.c 1864 int num_packets = transfer->num_iso_packets; local
    [all...]
  /external/qemu/include/hw/
bt.h 1460 uint16_t num_packets; member in struct:__anon33562::__anon33563
    [all...]

Completed in 582 milliseconds