Searched refs:lost (Results 1 - 25 of 86) sorted by relevance

1234

/external/chromium_org/cc/resources/
H A Dreturned_resource.h16 ReturnedResource() : id(0), sync_point(0), count(0), lost(false) {}
20 bool lost; member in struct:cc::ReturnedResource
/external/clang/test/CodeGenCXX/
H A Ddebug-info-vtable-optzn.cpp8 // CHECK: [ DW_TAG_member ] [lost]
12 int lost; member in class:A
/external/chromium_org/net/quic/congestion_control/
H A Dtcp_loss_algorithm_test.cc69 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[] local
147 QuicPacketSequenceNumber lost[] = { 1, 2 }; local
[all...]
H A Dtime_loss_algorithm_test.cc76 // 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));
H A Dsend_algorithm_simulator.h96 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.
98 SentPacket(QuicPacketSequenceNumber sequence_number, QuicTime send_time, QuicTime ack_time, bool lost, Transfer* transfer) argument
/external/valgrind/main/memcheck/tests/
H A Dpointer-trace.stderr.exp1 1,000 bytes in 1 blocks are definitely lost in loss record ... of ...
H A Dstatic_malloc.stderr.exp1 10 bytes in 1 blocks are definitely lost in loss record ... of ...
H A Dtrivialleak.stderr.exp1 1,000 bytes in 1,000 blocks are definitely lost in loss record ... of ...
H A Dleak-cases-full.stderr.exp5 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 ...
H A Dleak-cases-possible.stderr.exp5 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 ...
H A Dleak-tree.stderr.exp5 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 ...
H A Dleak-cycle.stderr.exp5 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 ...
H A Dleak-delta.stderr.exp8 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 ...
H A Dlks.stderr.exp5 definitely lost: 48 bytes in 3 blocks
6 indirectly lost: 32 bytes in 2 blocks
7 possibly lost: 0 bytes in 0 blocks
21 16 bytes in 1 blocks are indirectly lost in loss record ... of ...
27 16 bytes in 1 blocks are indirectly lost in loss record ... of ...
33 16 bytes in 1 blocks are definitely lost in loss record ... of ...
39 32 (16 direct, 16 indirect) bytes in 1 blocks are definitely lost in loss record ... of ...
45 32 (16 direct, 16 indirect) bytes in 1 blocks are definitely lost in loss record ... of ...
52 definitely lost: 48 bytes in 3 blocks
53 indirectly lost
[all...]
H A Dmempool.stderr.exp35 10 bytes in 1 blocks are definitely lost in loss record ... of ...
40 10 bytes in 1 blocks are definitely lost in loss record ... of ...
45 20 bytes in 1 blocks are definitely lost in loss record ... of ...
50 48 (32 direct, 16 indirect) bytes in 1 blocks are definitely lost in loss record ... of ...
/external/chromium_org/third_party/opus/src/silk/
H A DPLC.h51 opus_int lost /* I Loss flag */
/external/libopus/silk/
H A DPLC.h51 opus_int lost /* I Loss flag */
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Drtcp.cc63 // 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/main/gdbserver_tests/
H A Dmcleak.stderr.exp11 expecting details +10 bytes lost, +21 bytes reachable
15 expecting details -10 bytes reachable, +10 bytes lost
16 expecting details -10 bytes lost, +10 bytes reachable
17 expecting details 32 (+32) bytes lost, 33 (-32) bytes reachable
33 32 bytes in 1 blocks are definitely lost in loss record ... of ...
H A Dmcleak.stderrB.exp8 10 (+10) bytes in 1 (+1) blocks are definitely lost in loss record ... of ...
33 10 (+10) bytes in 1 (+1) blocks are definitely lost in loss record ... of ...
38 0 (-10) bytes in 0 (-1) blocks are definitely lost in loss record ... of ...
48 32 (+32) bytes in 1 (+1) blocks are definitely lost in loss record ... of ...
68 32 bytes in 1 blocks are definitely lost in loss record ... of ...
78 32 bytes in 1 blocks are definitely lost in loss record ... of ...
93 32 bytes in 1 blocks are definitely lost in loss record ... of ...
H A Dmcblocklistsearch.stderrB.exp30 16 bytes in 1 blocks are indirectly lost in loss record ... of ...
35 16 bytes in 1 blocks are indirectly lost in loss record ... of ...
40 16 bytes in 1 blocks are definitely lost in loss record ... of ...
45 48 (16 direct, 32 indirect) bytes in 1 blocks are definitely lost in loss record ... of ...
51 16 bytes in 1 blocks are definitely lost in loss record ... of ...
58 48 (16 direct, 32 indirect) bytes in 1 blocks are definitely lost in loss record ... of ...
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/tools/
H A Dneteq_performance_test.cc78 bool lost = false; local
80 lost = ((rtp_header.header.sequenceNumber - 1) % lossrate) == 0;
82 if (!lost) {
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dtool.h36 lost, member in struct:perf_tool
/external/chromium_org/third_party/speex/libspeex/
H A Dltp.h94 int lost,
137 int lost,
/external/speex/libspeex/
H A Dltp.h94 int lost,
137 int lost,

Completed in 7735 milliseconds

1234