HomeSort by relevance Sort by last modified time
    Searched defs:lost (Results 1 - 25 of 28) sorted by null

1 2

  /external/clang/test/CodeGenCXX/
debug-info-vtable-optzn.cpp 8 // CHECK: [ DW_TAG_member ] [lost]
12 int lost; member in class:A
  /external/chromium_org/cc/resources/
returned_resource.h 16 ReturnedResource() : id(0), sync_point(0), count(0), lost(false) {}
20 bool lost; member in struct:cc::ReturnedResource
resource_provider.h 419 bool lost : 1; member in struct:cc::ResourceProvider::Resource
  /external/chromium_org/net/quic/congestion_control/
tcp_loss_algorithm_test.cc 69 QuicPacketSequenceNumber lost[] = { 1 }; local
70 VerifyLosses(4, lost, arraysize(lost));
88 QuicPacketSequenceNumber lost[] = { 1 }; local
89 VerifyLosses(4, lost, arraysize(lost));
106 QuicPacketSequenceNumber lost[] = { 1 }; local
107 VerifyLosses(4, lost, arraysize(lost));
125 QuicPacketSequenceNumber lost[] = { 1 } local
147 QuicPacketSequenceNumber lost[] = { 1, 2 }; local
    [all...]
time_loss_algorithm_test.cc 76 // The packet should not be lost until 1.25 RTTs pass.
86 QuicPacketSequenceNumber lost[] = { 1 }; local
87 VerifyLosses(2, lost, arraysize(lost));
100 // The packet should not be lost without a nack.
122 // The packet should not be lost until 1.25 RTTs pass.
132 QuicPacketSequenceNumber lost[] = { 1, 2, 3, 4, 5, 6, 7, 8, 9 }; local
133 VerifyLosses(10, lost, arraysize(lost));
send_algorithm_simulator.h 96 lost(false),
101 bool lost,
106 lost(lost),
112 bool lost; member in struct:net::SendAlgorithmSimulator::SentPacket
197 // next_acked have been lost.
211 // Whether the next ack should be lost.
213 // The times acks are expected, assuming acks are not lost and every packet
220 float loss_correlation_; // Likelihood the subsequent packet is lost.
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
rtcp.cc 63 // packets that were actually received. The cumulative number of lost packets
68 // No packets received, assume none lost.
79 // Fraction lost since last report.
86 int32_t lost = expected_since_last - received_since_last; local
87 if (expected_since_last == 0 || lost <= 0 || received_packets_ == 0) {
90 stats->fraction_lost = std::min(0xFFU, (lost << 8) / expected_since_last);
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
tool.h 36 lost, member in struct:perf_tool
event.h 49 u64 lost; member in struct:lost_event
178 struct lost_event lost; member in union:perf_event
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/tools/
neteq_performance_test.cc 78 bool lost = false; local
80 lost = ((rtp_header.header.sequenceNumber - 1) % lossrate) == 0;
82 if (!lost) {
neteq_quality_test.cc 80 // lost only if all |units| drawings within the duration of the packet result in
157 bool NoLoss::Lost() {
165 bool UniformLoss::Lost() {
177 bool GilbertElliotLoss::Lost() {
180 // packet state (lost or received).
184 return lost_last_ = uniform_loss_model_->Lost();
187 return lost_last_ = uniform_loss_model_->Lost();
257 bool lost = false; local
259 if (loss_model_->Lost()) {
260 // The packet will be lost if any of the drawings indicates a loss, bu
    [all...]
  /external/chromium_org/mojo/services/public/cpp/surfaces/tests/
surface_unittest.cc 438 bool lost = false; local
443 resource.lost = lost;
449 EXPECT_EQ(lost, mojo_resource->lost);
456 EXPECT_EQ(lost, round_trip_resource.lost);
  /external/chromium_org/net/quic/
quic_sent_packet_manager_test.cc 449 // Since 1 has been retransmitted, it has already been lost, and so the
492 // Ensure packet 2 is lost when 4 is sent and 3 and 4 are acked.
536 // Ack the 4th packet and expect the 1st to be considered lost.
552 // Ack 2, 3, and 4, and expect the 1st to be considered lost.
557 QuicPacketSequenceNumber lost[] = { 1 }; local
558 ExpectAcksAndLosses(true, acked, arraysize(acked), lost, arraysize(lost));
585 // Truncated ack with 4 NACKs, so the first packet is lost.
594 QuicPacketSequenceNumber lost[] = { 1 }; local
595 ExpectAcksAndLosses(true, NULL, 0, lost, arraysize(lost))
851 QuicPacketSequenceNumber lost[] = { 1, 2 }; local
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/test/
insert_packet_with_timing.cc 174 bool lost = false; local
179 lost = true;
187 if (!lost) {
266 // some complication to account for lost and reordered packets.
  /external/chromium_org/third_party/webrtc/modules/video_coding/codecs/test_framework/
normal_async_test.cc 344 int lost = DoPacketLoss(); local
345 if (lost == 2)
347 // Lost the whole frame, continue
353 int ret = Decode(lost);
  /external/libpcap/msdos/
pktdrvr.h 80 DWORD lost; /* # of packets lost (RX) */ member in struct:__anon4147
  /external/chromium_org/third_party/opus/src/src/
opus_demo.c 250 int lost = 0, lost_prev = 1; local
770 lost = len[toggle]==0 || (packet_loss_perc>0 && rand()%100 < packet_loss_perc);
771 if (lost)
781 output_samples = opus_decode(dec, lost ? NULL : data[toggle], len[toggle], out, output_samples, 1);
788 output_samples = opus_decode(dec, lost ? NULL : data[toggle], len[toggle], out, output_samples, 0);
826 && !lost && !lost_prev
    [all...]
  /external/libopus/src/
opus_demo.c 250 int lost = 0, lost_prev = 1; local
770 lost = len[toggle]==0 || (packet_loss_perc>0 && rand()%100 < packet_loss_perc);
771 if (lost)
781 output_samples = opus_decode(dec, lost ? NULL : data[toggle], len[toggle], out, output_samples, 1);
788 output_samples = opus_decode(dec, lost ? NULL : data[toggle], len[toggle], out, output_samples, 0);
826 && !lost && !lost_prev
    [all...]
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 1418 bool lost = false; local
1559 bool lost = false; local
    [all...]
  /bionic/libc/kernel/uapi/linux/
audit.h 14 *** Any manual change here will be lost the next time this script will
342 __u32 lost; member in struct:audit_status
i2o-dev.h 14 *** Any manual change here will be lost the next time this script will
112 int lost; member in struct:i2o_evt_get
  /development/ndk/platforms/android-L/include/linux/
audit.h 14 *** Any manual change here will be lost the next time this script will
334 __u32 lost; member in struct:audit_status
i2o-dev.h 14 *** Any manual change here will be lost the next time this script will
112 int lost; member in struct:i2o_evt_get
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
Renderer9.cpp 149 // If the device is lost, reset it first to prevent leaving the driver in an unstable state
206 // inclined to report a lost context, for example when the user switches
365 // NOTE: this is also needed after a device lost/reset
475 // lost at unexpected times.
485 // EndScene can fail if the device was lost, for example due
514 // some drivers seem to return S_FALSE even if the device is lost
2160 bool lost = testDeviceLost(false); local
    [all...]
  /external/kernel-headers/original/uapi/linux/
audit.h 382 __u32 lost; /* messages lost */ member in struct:audit_status

Completed in 1924 milliseconds

1 2