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

1 2 3

  /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/quake/quake/src/QW/
qwcl.spec.sh 29 packet loss - the game would freeze and resume several seconds later; and
qwsv.spec.sh 29 packet loss - the game would freeze and resume several seconds later; and
  /external/iproute2/tc/
q_netem.c 175 } else if (matches(*argv, "loss") == 0 ||
178 if (get_percent(&opt.loss, *argv)) {
179 explain1("loss");
186 explain1("loss");
356 if (qopt.loss) {
357 fprintf(f, " loss %s", sprint_percent(qopt.loss, b1));
  /external/ceres-solver/docs/
reference-overview.tex 9 Where $f_i(\cdot)$ is a cost function that depends on the parameter blocks $\left[x_{i_1}, \hdots , x_{i_k}\right]$ and $\rho_i$ is a loss function. In most optimization problems small groups of scalars occur together. For example the three components of a translation vector and the four components of the quaternion that define the pose of a camera. We refer to such a group of small scalars as a Parameter Block. Of course a parameter block can just have a single parameter.
modeling.tex 182 measurements, it is important to use a loss function that reduces
202 Using a robust loss function, the cost for large residuals is
236 \includegraphics[width=\textwidth]{loss.pdf}
237 \caption{Shape of the various common loss functions.}
238 \label{fig:loss}
245 Here are some common loss functions implemented in Ceres. For simplicity we described their unscaled versions. Figure~\ref{fig:loss} illustrates their shape graphically.
257 Ceres includes a number of other loss functions, the descriptions and
258 documentation for which can be found in \texttt{loss\_function.h}.
430 \texttt{AddResidualBlock} as the name implies, adds a residual block to the problem. It adds a cost function, an optional loss function, and connects the cost function to a set of parameter blocks
    [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/ping/
ping_common.c 800 printf(", %d%% packet loss",
835 int loss = 0; local
841 loss = (((long long)(ntransmitted - nreceived)) * 100) / ntransmitted;
843 fprintf(stderr, "\r%ld/%ld packets, %d%% loss", ntransmitted, nreceived, loss);
  /external/opencv/ml/src/
mlcnn.cpp 34 // loss of use, data, or profits; or business interruption) however caused
253 float loss, max_loss = 0;
259 // Find the worst image (which produces the greatest loss) or use the random image
272 loss = (float)cvNorm( dE_dX[n_layers], &etalon );
273 if( loss > max_loss )
275 max_loss = loss;
331 float loss, min_loss = FLT_MAX;
366 loss = (float)cvNorm( X[n_layers], &etalon );
367 if( loss < min_loss )
369 min_loss = loss;
    [all...]
  /bionic/libc/kernel/common/linux/
pkt_sched.h 449 __u32 loss; member in struct:tc_netem_qopt
  /development/ndk/platforms/android-3/include/linux/
pkt_sched.h 378 __u32 loss; member in struct:tc_netem_qopt

Completed in 2144 milliseconds

1 2 3