/external/valgrind/main/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-delta.stderr.exp | 2 10 bytes in 1 blocks are still reachable in loss record ... of ... 9 10 (+10) bytes in 1 (+1) blocks are definitely lost in loss record ... of ... 14 21 (+21) bytes in 1 (+1) blocks are still reachable in loss record ... of ... 20 65 (+65) bytes in 2 (+2) blocks are still reachable in loss record ... of ... 27 10 (+10) bytes in 1 (+1) blocks are still reachable in loss record ... of ... 33 0 (-10) bytes in 0 (-1) blocks are still reachable in loss record ... of ... 38 10 (+10) bytes in 1 (+1) blocks are definitely lost in loss record ... of ... 44 0 (-10) bytes in 0 (-1) blocks are definitely lost in loss record ... of ... 49 10 (+10) bytes in 1 (+1) blocks are still reachable in loss record ... of ... 55 32 (+32) bytes in 1 (+1) blocks are definitely lost in loss record ... of .. [all...] |
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 ...
|
mempool.stderr.exp | 35 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/valgrind/main/gdbserver_tests/ |
mcleak.stderrB.exp | 3 10 bytes in 1 blocks are still reachable in loss record ... of ... 8 10 (+10) bytes in 1 (+1) blocks are definitely lost in loss record ... of ... 13 21 (+21) bytes in 1 (+1) blocks are still reachable in loss record ... of ... 18 65 (+65) bytes in 2 (+2) blocks are still reachable in loss record ... of ... 23 10 (+10) bytes in 1 (+1) blocks are still reachable in loss record ... of ... 28 0 (-10) bytes in 0 (-1) blocks are still reachable 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 ... 43 10 (+10) bytes in 1 (+1) blocks are still reachable in loss record ... of ... 48 32 (+32) bytes in 1 (+1) blocks are definitely lost in loss record ... of .. [all...] |
mcleak.stderr.exp | 5 10 bytes in 1 blocks are still reachable in loss record ... of ... 23 10 bytes in 1 blocks are still reachable in loss record ... of ... 28 21 bytes in 1 blocks are still reachable in loss record ... of ... 33 32 bytes in 1 blocks are definitely lost in loss record ... of ... 38 33 bytes in 1 blocks are still reachable in loss record ... of ...
|
/external/ceres-solver/examples/ |
circle_fit.cc | 23 // SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 68 DEFINE_double(robust_threshold, 0.0, "Robust loss parameter. Set to 0 for " 130 // Configure the loss function. 131 LossFunction* loss = NULL; local 133 loss = new CauchyLoss(FLAGS_robust_threshold); 143 problem.AddResidualBlock(cost, loss, &x, &y, &m);
|
/frameworks/ml/bordeaux/learning/multiclass_pa/native/ |
multiclass_pa.cpp | 114 float loss = 1.0 - target_class_score + other_class_score; local 115 if (loss > 0.0) { 121 float rate = loss / twice_norm_square; 125 // VLOG(1) << "loss = " << loss << " rate = " << rate; 133 return loss; 147 float loss = 1.0 - target_class_score + other_class_score; local 148 if (loss > 0.0) { 154 float rate = loss / twice_norm_square; 158 // VLOG(1) << "loss = " << loss << " rate = " << rate [all...] |
/frameworks/ml/bordeaux/learning/stochastic_linear_ranker/native/ |
stochastic_linear_ranker.cpp | 37 const double loss = std::max(0.0, (1 - positive_score + negative_score)); local 45 std::min(lambda_, loss / (gradient_norm * gradient_norm)); 48 loss / (gradient_norm * gradient_norm + 1 / (2 * lambda_)); 101 ALOGE("Unknown rank loss type: %d", rank_loss_type_);
|
/external/ceres-solver/internal/ceres/ |
loss_function_test.cc | 23 // SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 47 void AssertLossFunctionIsValid(const LossFunction& loss, double s) { 52 loss.Evaluate(s, rho); 61 loss.Evaluate(s + kH, fwd); 62 loss.Evaluate(s - kH, bwd); 78 // Note that for the Huber loss the test exercises both code paths 125 // Check that loss before and after the approximation threshold are good. 151 // Wrap a few loss functions, and a few scale factors. This can't combine
|
/external/chromium_org/media/tools/constrained_network_server/ |
cns.py | 195 def ServeConstrained(self, f=None, bandwidth=None, latency=None, loss=None, 208 loss: percentage of packets to drop (integer, 0-100). 226 if bandwidth is None and latency is None and loss is None: 230 f, bandwidth=bandwidth, latency=latency, loss=loss, new_port=new_port, 234 # parameters except the network constraints (bandwidth, latency, and loss). 296 def _GetConstrainedPort(self, f=None, bandwidth=None, latency=None, loss=None, 307 loss = self._ParseIntParameter( 308 loss, 'Invalid loss constraint.', lambda x: x <= 100 and x >= 0 [all...] |
cn.py | 11 The configuration includes bandwidth, latency, and packet loss. 73 parser.add_option('--loss', type='int', 74 help='Packet-loss percentage on outgoing packets. ') 100 'loss': options.loss
|
traffic_control.py | 60 Imposes packet level constraints such as bandwidth, latency, and packet loss 71 loss: Percentage of packets to drop (integer 0-100). 184 The class specifies bandwidth, and qdisc specifies delay and packet loss. The 218 loss: Percentage of packets to drop (integer 0-100). 225 # Check if packet-loss is set in the configuration. 226 if 'loss' in config.keys() and config['loss']: 227 loss = '%d%%' % config['loss'] 228 command.extend(['loss', loss] [all...] |
/external/chromium_org/chrome/test/functional/media/ |
cns_test_base.py | 167 def GetFileURL(file_name, bandwidth=0, latency=0, loss=0, new_port=False): 178 if loss > 0: 179 video_url.append('loss=%d' % loss)
|
media_seek_perf.py | 58 loss=settings[2])
|
media_constrained_network_perf.py | 9 bandwidth, latency, and packet loss settings. Tests running media files defined 34 # Previous tests with 2% and 5% packet loss resulted in inconsistent data. Thus 35 # packet loss is not used often in perf tests. Tests with very low bandwidth, 133 loss=settings[2], new_port=True) 178 """Runs a dummy test with high bandwidth and no latency or packet loss.
|
/external/iproute2/tc/ |
q_netem.c | 38 " [ loss random PERCENT [CORRELATION]]\n" \ 39 " [ loss state P13 [P31 [P32 [P23 P14]]]\n" \ 40 " [ loss gemodel PERCENT [R [1-H [1-K]]]\n" \ 221 } else if (matches(*argv, "loss") == 0 || 223 if (opt.loss > 0 || loss_type != NETEM_LOSS_UNSPEC) { 224 explain1("duplicate loss argument\n"); 229 /* Old (deprecated) random loss model syntax */ 236 if (get_percent(&opt.loss, *argv)) { 237 explain1("loss percent"); 244 explain1("loss correllation") [all...] |
/external/valgrind/main/memcheck/ |
mc_errors.c | 391 const HChar *loss = "?"; local 393 case Unreached: loss = "definitely lost"; break; 394 case IndirectLeak: loss = "indirectly lost"; break; 395 case Possible: loss = "possibly lost"; break; 396 case Reachable: loss = "still reachable"; break; 398 return loss; 403 const HChar *loss = "?"; local 405 case Unreached: loss = "Leak_DefinitelyLost"; break; 406 case IndirectLeak: loss = "Leak_IndirectlyLost"; break; 407 case Possible: loss = "Leak_PossiblyLost"; break [all...] |
/external/chromium_org/third_party/opus/src/tests/ |
test_opus_encode.c | 21 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 311 int len,out_samples,frame_size,loss; local 323 loss=(fast_rand()&63)==0; 324 out_samples = opus_multistream_decode(MSdec_err, packet, loss?0:len, out2buf, frame_size*6, (fast_rand()&3)!=0); 381 if(out_samples<0||out_samples>MAX_FRAME_SAMP)test_failed(); /*FIXME, use factor, lastframe for loss*/
|
/external/ceres-solver/scripts/ |
ceres-solver.spec | 39 - Robust loss functions
|