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

1 2

  /external/clang/test/CodeGenCXX/
debug-info-vtable-optzn.cpp 8 // CHECK: !DIDerivedType(tag: DW_TAG_member, name: "lost"
12 int lost; member in class:A
  /external/webrtc/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);
  /frameworks/av/media/libnbaio/
PipeReader.cpp 52 size_t lost; local
53 ssize_t avail = mFifoReader.available(&lost);
54 if (avail == -EOVERFLOW || lost > 0) {
55 mFramesOverrun += lost;
64 size_t lost; local
65 ssize_t actual = mFifoReader.read(buffer, count, NULL /*timeout*/, &lost);
67 if (actual == -EOVERFLOW || lost > 0) {
68 mFramesOverrun += lost;
84 size_t lost; local
85 ssize_t flushed = mFifoReader.flush(&lost);
    [all...]
  /system/netd/server/
TcpSocketMonitor.h 53 // Number of packets lost. Tracks struct tcp_sock lost_out.
54 uint32_t lost; member in struct:android::net::TcpSocketMonitor::TcpStats
68 // Number of packets lost. Tracks struct tcp_sock lost_out.
69 uint32_t lost; member in struct:android::net::TcpSocketMonitor::SocketEntry
  /external/webrtc/webrtc/modules/audio_coding/neteq/tools/
neteq_performance_test.cc 80 bool lost = false; local
82 lost = ((rtp_header.header.sequenceNumber - 1) % lossrate) == 0;
84 if (!lost) {
neteq_quality_test.cc 169 // lost only if all |units| drawings within the duration of the packet result in
260 bool NoLoss::Lost() {
268 bool UniformLoss::Lost() {
280 bool GilbertElliotLoss::Lost() {
283 // packet state (lost or received).
287 return lost_last_ = uniform_loss_model_->Lost();
290 return lost_last_ = uniform_loss_model_->Lost();
358 bool lost = false; local
360 if (loss_model_->Lost()) {
361 // The packet will be lost if any of the drawings indicates a loss, bu
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/test/
insert_packet_with_timing.cc 170 bool lost = false; local
175 lost = true;
179 if (!lost) {
258 // some complication to account for lost and reordered packets.
  /external/libpcap/msdos/
pktdrvr.h 80 DWORD lost; /* # of packets lost (RX) */ member in struct:__anon25658
  /system/extras/simpleperf/
cmd_report_sample.cpp 308 auto& lost = proto_record.lost(); local
311 lost.sample_count());
313 lost.lost_count());
414 lost_count_ += static_cast<const LostRecord*>(record.get())->lost;
533 proto::LostSituation* lost = proto_record.mutable_lost(); local
534 lost->set_sample_count(sample_count_);
535 lost->set_lost_count(lost_count_);
record.h 361 uint64_t lost; member in struct:LostRecord
  /external/libopus/src/
opus_demo.c 250 int lost = 0, lost_prev = 1; local
776 lost = len[toggle]==0 || (packet_loss_perc>0 && rand()%100 < packet_loss_perc);
777 if (lost)
787 output_samples = opus_decode(dec, lost ? NULL : data[toggle], len[toggle], out, output_samples, 1);
794 output_samples = opus_decode(dec, lost ? NULL : data[toggle], len[toggle], out, output_samples, 0);
    [all...]
  /external/perf_data_converter/src/quipper/
perf_serializer.cc 619 const struct lost_event& lost = event.lost; local
620 sample->set_id(lost.id);
621 sample->set_lost(lost.lost);
628 struct lost_event& lost = event->lost; local
629 lost.id = sample.id();
630 lost.lost = sample.lost()
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
ConstantFolding.cpp 1181 bool lost = false; local
1287 bool lost = false; local
    [all...]
  /frameworks/av/media/libnblog/include/media/nblog/
NBLog.h 424 // amount of data lost (given by audio_utils_fifo_reader)
425 size_t lost() const { return mLost; } function in class:android::NBLog::Reader::Snapshot
463 int mLost; // bytes of data lost before buffer was read
  /frameworks/base/services/core/java/com/android/server/connectivity/
NetdEventListenerService.java 288 int lost = lostPackets[i]; local
292 .addTcpStatsResult(sent, lost, rttUs, sentAckDiffMs);
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 1474 bool lost = false; local
1652 bool lost = false; local
    [all...]
  /frameworks/av/media/libnblog/
NBLog.cpp 752 size_t lost; local
754 ssize_t availToRead = mFifoReader->obtain(iovec, capacity, NULL /*timeout*/, &lost);
801 snapshot->mLost = lost;
    [all...]
  /external/perf_data_converter/src/quipper/kernel/
perf_internals.h 142 u64 lost; member in struct:quipper::lost_event
363 struct lost_event lost; member in union:quipper::perf_event
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
audit.h 327 __u32 lost; /* messages lost */ member in struct:audit_status
cdk.h 398 unsigned long lost; member in struct:asystats
i2o-dev.h 114 int lost; member in struct:i2o_evt_get
  /bionic/libc/kernel/uapi/linux/
audit.h 14 *** Any manual change here will be lost the next time this script will
313 __u32 lost; member in struct:audit_status
i2o-dev.h 14 *** Any manual change here will be lost the next time this script will
94 int lost; member in struct:i2o_evt_get
  /external/kernel-headers/original/uapi/linux/
audit.h 438 __u32 lost; /* messages lost */ member in struct:audit_status
i2o-dev.h 115 int lost; member in struct:i2o_evt_get

Completed in 810 milliseconds

1 2