Home
last modified time | relevance | path

Searched full:lost (Results 1 – 25 of 3793) sorted by relevance

12345678910>>...152

/external/e2fsprogs/tests/f_expand/
Dexpect.1.gz
/external/e2fsprogs/tests/f_rebuild_csum_rootdir/
Dexpect.117 Connect to /lost+found? yes
19 /lost+found not found. Create? yes
26 Connect to /lost+found? yes
31 Connect to /lost+found? yes
36 Connect to /lost+found? yes
41 Connect to /lost+found? yes
46 Connect to /lost+found? yes
51 Connect to /lost+found? yes
56 Connect to /lost+found? yes
61 Connect to /lost+found? yes
[all …]
/external/libopus/dnn/torch/plc/
Dplc_dataset.py20 self.lost = np.memmap(loss_file, dtype='int8', mode='r')
21 self.lost = self.lost.astype('float32')
29 #self.lost = self.lost[:(len(self.lost)//features.shape[1]-1)*features.shape[1]]
30 #self.lost = self.lost.reshape((-1, self.sequence_length))
41 lost_offset = np.random.randint(0, high=self.lost.shape[0]-self.sequence_length)
42 lost = self.lost[lost_offset:lost_offset+self.sequence_length]
44 lost = lost * (np.random.rand(lost.shape[-1]) > .02).astype('float32')
46 lost = 1 - ((1-lost) * (np.random.rand(lost.shape[-1]) > .1).astype('float32'))
47 lost = np.reshape(lost, (features.shape[0], 1))
48 lost_mask = np.tile(lost, (1,features.shape[-1]))
[all …]
/external/cronet/third_party/apache-portable-runtime/src/atomic/unix/
Dppc.c46 asm volatile ("1:\n" /* lost reservation */ in apr_atomic_add32()
51 " bne- 1b\n" /* loop if lost */ in apr_atomic_add32()
63 asm volatile ("1:\n" /* lost reservation */ in apr_atomic_sub32()
68 " bne- 1b\n" /* loop if lost */ in apr_atomic_sub32()
78 asm volatile ("1:\n" /* lost reservation */ in apr_atomic_inc32()
83 " bne- 1b\n" /* loop if lost */ in apr_atomic_inc32()
96 asm volatile ("1:\n" /* lost reservation */ in apr_atomic_dec32()
101 " bne- 1b\n" /* loop if lost */ in apr_atomic_dec32()
114 asm volatile ("1:\n" /* lost reservation */ in apr_atomic_cas32()
120 " bne- 1b\n" /* loop if lost */ in apr_atomic_cas32()
[all …]
/external/libopus/dnn/training_tf2/
Dplc_loader.py32 def __init__(self, features, lost, nb_burg_features, batch_size): argument
36 self.lost = lost.astype('float')
37 self.lost = self.lost[:(len(self.lost)//features.shape[1]-1)*features.shape[1]]
45 …self.lost_offset = np.reshape(self.lost[offset:-self.features.shape[1]+offset], (-1, self.features…
54lost = self.lost_offset[self.lost_indices[index*self.batch_size:(index+1)*self.batch_size], :]
55 lost = np.reshape(lost, (features.shape[0], features.shape[1], 1))
56 lost_mask = np.tile(lost, (1,1,features.shape[2]))
62 out_lost = np.copy(lost)
67 … # last dim is 1 for received packet, 0 for lost packet, and -1 when just the Burg info is missing
68 inputs = [in_features*lost_mask, lost*burg_sign]
/external/e2fsprogs/tests/f_lpffile/
Dexpect.14 /lost+found is not a directory (ino=11)
7 /lost+found not found. Create? yes
11 Connect to /lost+found? yes
14 Connect to /lost+found? yes
19 Connect to /lost+found? yes
24 Connect to /lost+found? yes
/external/webrtc/modules/rtp_rtcp/source/
Drtp_fec_unittest.cc67 // Media packet "i" is lost if media_loss_mask_[i] = 1, received if
69 // FEC packet "i" is lost if fec_loss_mask_[i] = 1, received if
278 // No packets lost. in TYPED_TEST()
287 // No packets lost, expect complete recovery. in TYPED_TEST()
308 // 1 media packet lost in TYPED_TEST()
318 // One packet lost, one FEC packet, expect complete recovery. in TYPED_TEST()
322 // 2 media packets lost. in TYPED_TEST()
333 // 2 packets lost, one FEC packet, cannot get complete recovery. in TYPED_TEST()
363 // the two media packet were lost). in TYPED_TEST()
375 // No packets lost in TYPED_TEST()
[all …]
Dpacket_loss_stats.h27 // Adds a lost packet to the stats by sequence number.
30 // Queries the number of packets that were lost by themselves, no neighboring
31 // packets were lost.
35 // were lost. This is the number of events with more than one packet lost,
39 // Queries the number of packets lost in multiple packet loss events. Combined
/external/e2fsprogs/tests/f_bad_encryption/
Dexpect.158 Connect to /lost+found? yes
61 Connect to /lost+found? yes
64 Connect to /lost+found? yes
68 Connect to /lost+found? yes
75 Connect to /lost+found? yes
82 Connect to /lost+found? yes
87 Connect to /lost+found? yes
94 Connect to /lost+found? yes
99 Connect to /lost+found? yes
/external/webrtc/modules/audio_coding/neteq/tools/
Dneteq_quality_test.h39 virtual bool Lost(int now_ms) = 0;
44 bool Lost(int now_ms) override;
50 bool Lost(int now_ms) override;
61 bool Lost(int now_ms) override;
64 // Prob. of losing current packet, when previous packet is lost.
66 // Prob. of losing current packet, when previous packet is not lost.
90 bool Lost(int now_ms) override;
121 // lost or not.
Dneteq_quality_test.cc129 // lost only if all `units` drawings within the duration of the packet result in
260 bool NoLoss::Lost(int now_ms) { in Lost() function in webrtc::test::NoLoss
266 bool UniformLoss::Lost(int now_ms) { in Lost() function in webrtc::test::UniformLoss
279 bool GilbertElliotLoss::Lost(int now_ms) { in Lost() function in webrtc::test::GilbertElliotLoss
282 // packet state (lost or received). in Lost()
286 return lost_last_ = uniform_loss_model_->Lost(now_ms); in Lost()
289 return lost_last_ = uniform_loss_model_->Lost(now_ms); in Lost()
301 bool FixedLossModel::Lost(int now_ms) { in Lost() function in webrtc::test::FixedLossModel
397 bool lost = false; in PacketLost() local
399 if (loss_model_->Lost(decoded_time_ms_)) { in PacketLost()
[all …]
/external/bpftool/src/
Dmap_perf_ring.c42 __u64 lost; member
63 struct perf_event_lost *lost = container_of(event, in print_bpf_output() local
83 jsonw_name(json_wtr, "lost"); in print_bpf_output()
86 jsonw_uint(json_wtr, lost->id); in print_bpf_output()
88 jsonw_uint(json_wtr, lost->lost); in print_bpf_output()
100 printf("lost %lld events\n", lost->lost); in print_bpf_output()
/external/e2fsprogs/tests/f_nospc_create_lnf/
Dexpect.14 /lost+found not found. Create? yes
6 Cannot allocate space for /lost+found.
7 Place lost files in root directory instead? yes
9 Insufficient space to recover lost files!
15 Connect to /lost+found? yes
Dexpect.24 /lost+found not found. Create? yes
6 Cannot allocate space for /lost+found.
7 Place lost files in root directory instead? yes
9 Insufficient space to recover lost files!
/external/e2fsprogs/tests/f_noroot/
Dexpect.17 Entry '..' in /lost+found (11) has deleted/unused inode 2. Clear? yes
15 Connect to /lost+found? yes
17 /lost+found not found. Create? yes
19 Unconnected directory inode 12 (was in /lost+found)
20 Connect to /lost+found? yes
/external/oj-libjdwp/src/share/classes/com/sun/jdi/
DPrimitiveValue.java54 * may be lost (as if the primitive had been cast to a byte).
64 * may be lost (as if the primitive had been cast to a char,
75 * may be lost (as if the primitive had been cast to a short,
86 * may be lost (as if the primitive had been cast to an int,
97 * may be lost (as if the primitive had been cast to a long,
108 * may be lost (as if the primitive had been cast to a float,
119 * may be lost.
/external/e2fsprogs/tests/f_encrypted_lpf/
Dexpect.15 Connect to /lost+found? yes
7 /lost+found is encrypted
10 /lost+found not found. Create? yes
17 Connect to /lost+found? yes
/external/cronet/net/third_party/quiche/src/quiche/quic/core/
Dquic_connection_stats.h45 // Number of packets abandoned as lost by the loss detection algorithm.
49 // The sum of loss detection response times of all lost packets, in number of
51 // Given a packet detected as lost:
57 // T(D) is the time of detection, i.e. when the packet is declared as lost.
73 // Number of packets lost exiting slow start.
75 // Number of bytes lost exiting slow start.
96 // be lost when the alarm fires.
125 // Number of times that a packet is not detected as lost per reordering_shift,
131 // one or more lost packets.
Dquic_transmission_info.h41 // In flight packets have not been abandoned or lost.
49 // Records the first sent packet after this packet was detected lost. Zero if
50 // this packet has not been detected lost. This is used to keep lost packet
/external/e2fsprogs/misc/
Dmklost+found.8.in7 mklost+found \- create a lost+found directory on a mounted Linux
14 .I lost+found
17 .I lost+found
22 .I lost+found
/external/e2fsprogs/tests/f_lpf/
Dexpect.18 /lost+found not found. Create? yes
12 Connect to /lost+found? yes
17 Connect to /lost+found? yes
22 Connect to /lost+found? yes
/external/e2fsprogs/e2fsck/
Dpass3.c22 * will offer to reconnect it to /lost+found. While it is chasing
25 * offer to reconnect the directory to /lost+found in order to break the
29 * reconnect inodes to /lost+found; this subroutine is also used by
31 * is responsible for creating /lost+found if it does not exist.
114 * Force the creation of /lost+found if not present in e2fsck_pass3()
277 * the lost+found. We have to do loop detection; if we ever discover
279 * reparent it to lost+found.
302 * lost+found. in check_directory()
318 * reparent it to lost+found in check_directory()
397 static const char name[] = "lost+found"; in e2fsck_get_lost_and_found()
[all …]
/external/e2fsprogs/tests/f_reconnect/
Dexpect.16 Connect to /lost+found? yes
11 Connect to /lost+found? yes
16 Connect to /lost+found? yes
/external/e2fsprogs/tests/f_badroot/
Dexpect.113 Connect to /lost+found? yes
15 /lost+found not found. Create? yes
21 Connect to /lost+found? yes
/external/cronet/third_party/libc++/src/utils/ci/
Dbuildkite-pipeline-clang.yml29 - exit_status: -1 # Agent was lost
54 - exit_status: -1 # Agent was lost
79 - exit_status: -1 # Agent was lost
102 - exit_status: -1 # Agent was lost
125 - exit_status: -1 # Agent was lost

12345678910>>...152