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

1 2 3 4 5 6 7 8 9

  /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
  /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...]
  /external/valgrind/memcheck/tests/
pointer-trace.stderr.exp 1 1,000 bytes in 1 blocks are definitely lost in loss record ... of ...
static_malloc.stderr.exp 1 10 bytes in 1 blocks are definitely lost in loss record ... of ...
trivialleak.stderr.exp 1 1,000 bytes in 1,000 blocks are definitely lost in loss record ... of ...
leak-cases-full.stderr.exp 5 16 bytes in 1 blocks are possibly lost in loss record ... of ...
11 16 bytes in 1 blocks are possibly lost in loss record ... of ...
17 16 bytes in 1 blocks are possibly lost in loss record ... of ...
23 16 bytes in 1 blocks are possibly lost in loss record ... of ...
29 16 bytes in 1 blocks are possibly lost in loss record ... of ...
35 16 bytes in 1 blocks are possibly lost in loss record ... of ...
41 16 bytes in 1 blocks are definitely lost in loss record ... of ...
47 32 (16 direct, 16 indirect) bytes in 1 blocks are definitely lost in loss record ... of ...
53 32 (16 direct, 16 indirect) bytes in 1 blocks are definitely lost in loss record ... of ...
leak-cases-possible.stderr.exp 5 16 bytes in 1 blocks are definitely lost in loss record ... of ...
11 32 (16 direct, 16 indirect) bytes in 1 blocks are definitely lost in loss record ... of ...
17 32 (16 direct, 16 indirect) bytes in 1 blocks are definitely lost in loss record ... of ...
leak-tree.stderr.exp 5 16 bytes in 1 blocks are definitely lost in loss record ... of ...
11 48 (16 direct, 32 indirect) bytes in 1 blocks are definitely lost in loss record ... of ...
leak-cycle.stderr.exp 5 48 (16 direct, 32 indirect) bytes in 1 blocks are definitely lost in loss record ... of ...
11 48 (16 direct, 32 indirect) bytes in 1 blocks are definitely lost in loss record ... of ...
17 96 (16 direct, 80 indirect) bytes in 1 blocks are definitely lost in loss record ... of ...
23 96 (16 direct, 80 indirect) bytes in 1 blocks are definitely lost in loss record ... of ...
leak-delta.stderr.exp 8 expecting details +10 bytes lost, +21 bytes reachable
9 10 (+10) bytes in 1 (+1) blocks are definitely lost in loss record ... of ...
32 expecting details -10 bytes reachable, +10 bytes lost
38 10 (+10) bytes in 1 (+1) blocks are definitely lost in loss record ... of ...
43 expecting details -10 bytes lost, +10 bytes reachable
44 0 (-10) bytes in 0 (-1) blocks are definitely lost in loss record ... of ...
54 expecting details 32 (+32) bytes lost, 33 (-32) bytes reachable
55 32 (+32) bytes in 1 (+1) blocks are definitely lost in loss record ... of ...
80 32 bytes in 1 blocks are definitely lost in loss record ... of ...
  /external/libopus/silk/
PLC.h 51 opus_int lost, /* I Loss flag */
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/sh/sh64/
crange4.s 2 ! lost because .space just emitted a frag, without calling emit_expr as
  /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);
  /external/valgrind/gdbserver_tests/
mcleak.stderr.exp 8 expecting details +10 bytes lost, +21 bytes reachable
12 expecting details -10 bytes reachable, +10 bytes lost
13 expecting details -10 bytes lost, +10 bytes reachable
14 expecting details 32 (+32) bytes lost, 33 (-32) bytes reachable
28 32 bytes in 1 blocks are definitely lost in loss record ... of ...
  /external/valgrind/memcheck/tests/solaris/
ldynsym.stderr.exp 1 10 bytes in 1 blocks are definitely lost in loss record ... of ...
  /prebuilts/go/darwin-x86/src/go/doc/testdata/
f.go 9 // Factory functions for non-exported types must not get lost.
  /prebuilts/go/linux-x86/src/go/doc/testdata/
f.go 9 // Factory functions for non-exported types must not get lost.
  /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
TcpSocketMonitor.cpp 82 "rtt=%gms sent=%u lost=%u",
117 dw.println("netId=%d sent=%d lost=%d rttMs=%gms sentAckDiff=%gms",
120 stats.second.lost,
243 lostPackets.push_back(stats.second.lost);
283 .lost = TCPINFO_GET(tcpinfo, tcpi_lost, tcpinfoLen, 0),
296 .lost = diff.lost,
303 diff.lost -= previous.lost;
310 stats.lost += diff.lost
    [all...]
  /system/media/audio_utils/include/audio_utils/
fifo.h 86 * \param lost If non-NULL, set to the approximate number of frames lost before
87 * re-synchronization when -EOVERFLOW occurs, or set to zero when no frames lost.
92 * \retval -EOVERFLOW reader doesn't throttle writer, and frames were lost because reader
93 * isn't keeping up with writer; see \p lost
95 int32_t diff(uint32_t rear, uint32_t front, size_t *lost = NULL, bool flush = false) const;
262 * \retval -EOVERFLOW reader doesn't throttle writer, and frames were lost because reader
263 * isn't keeping up with writer; see \p lost
296 * \retval -EOVERFLOW reader doesn't throttle writer, and frames were lost because reader
311 * For a reader, this includes lost and flushed frames
    [all...]
  /system/media/audio_utils/
fifo.cpp 68 int32_t audio_utils_fifo_base::diff(uint32_t rear, uint32_t front, size_t *lost, bool flush) const
72 if (lost != NULL) {
73 *lost = 0;
93 // but reader has lost frames if writer is further than one generation beyond.
95 if (lost != NULL) {
96 // Calculate the number of lost frames as the raw difference,
98 // less the wasted indices that don't count as true lost frames.
99 *lost = diff - (flush ? 0 : mFrameCount) - mFudgeFactor * (genDiff/mFrameCountP2);
113 if (lost != NULL) {
114 *lost = diff - (flush ? 0 : mFrameCount)
    [all...]
  /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) {
  /external/speex/libspeex/
ltp.h 94 int lost,
137 int lost,
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue19632.go 7 // Check that we don't crash due to "lost track of variable in
  /prebuilts/go/linux-x86/test/fixedbugs/
issue19632.go 7 // Check that we don't crash due to "lost track of variable in

Completed in 859 milliseconds

1 2 3 4 5 6 7 8 9