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

1 2 3 4 5

  /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...]
NBLog.cpp 635 size_t lost; local
637 ssize_t availToRead = mFifoReader->obtain(iovec, capacity, NULL /*timeout*/, &lost);
684 snapshot->mLost = lost;
715 size_t lost = snapshot.lost() + (snapshot.begin() - FormatEntry::iterator(snapshot.data())); local
716 if (lost > 0) {
717 body.appendFormat("warning: lost %zu bytes worth of events", lost);
  /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.
  /system/extras/simpleperf/
cmd_report_sample.cpp 298 auto& lost = proto_record.lost(); local
301 lost.sample_count());
303 lost.lost_count());
350 lost_count_ += static_cast<const LostRecord*>(record.get())->lost;
449 proto::LostSituation* lost = proto_record.mutable_lost(); local
450 lost->set_sample_count(sample_count_);
451 lost->set_lost_count(lost_count_);
454 LOG(ERROR) << "failed to write lost situation to protobuf";
record.h 356 uint64_t lost; member in struct:LostRecord
  /external/libpcap/msdos/
pktdrvr.h 80 DWORD lost; /* # of packets lost (RX) */ member in struct:__anon23993
  /external/libopus/src/
opus_demo.c 250 int lost = 0, lost_prev = 1; local
768 lost = len[toggle]==0 || (packet_loss_perc>0 && rand()%100 < packet_loss_perc);
769 if (lost)
779 output_samples = opus_decode(dec, lost ? NULL : data[toggle], len[toggle], out, output_samples, 1);
786 output_samples = opus_decode(dec, lost ? NULL : data[toggle], len[toggle], out, output_samples, 0);
824 && !lost && !lost_prev
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
ConstantFolding.cpp 1181 bool lost = false; local
1287 bool lost = false; local
    [all...]
  /frameworks/av/media/libnbaio/include/
NBLog.h 332 // amount of data lost (given by audio_utils_fifo_reader)
333 size_t lost() const { return mLost; } function in class:android::NBLog::Reader::Snapshot
  /system/extras/perfprofd/quipper/kernel-headers/tools/perf/util/
event.h 14 *** Any manual change here will be lost the next time this script will
65 u64 lost; member in struct:lost_event
187 struct lost_event lost; member in union:perf_event
  /system/extras/perfprofd/quipper/original-kernel-headers/tools/perf/util/
event.h 49 u64 lost; member in struct:lost_event
178 struct lost_event lost; member in union:perf_event
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 1474 bool lost = false; local
1652 bool lost = false; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
audit.h 332 __u32 lost; /* messages lost */ member in struct:audit_status
cdk.h 398 unsigned long lost; member in struct:asystats
  /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
  /bionic/libc/kernel/uapi/linux/
audit.h 14 *** Any manual change here will be lost the next time this script will
377 __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-21/include/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
  /external/kernel-headers/original/uapi/linux/
audit.h 427 __u32 lost; /* messages lost */ member in struct:audit_status
i2o-dev.h 114 int lost; member in struct:i2o_evt_get

Completed in 4080 milliseconds

1 2 3 4 5