HomeSort by relevance Sort by last modified time
    Searched refs:Plus (Results 26 - 50 of 76) sorted by null

12 3 4

  /external/ceres-solver/internal/ceres/
parameter_block.h 212 // LocalParameterization::Plus() followed by projection onto the
214 bool Plus(const double *x, const double* delta, double* x_plus_delta) {
216 if (!local_parameterization_->Plus(x, delta, x_plus_delta)) {
program_evaluator.h 283 bool Plus(const double* state,
286 return program_->Plus(state, delta, state_plus_delta);
trust_region_minimizer.cc 183 if (!evaluator->Plus(x.data(), delta.data(), x_plus_delta.data())) {
210 if (!evaluator->Plus(x.data(),
396 if (evaluator->Plus(x.data(), delta.data(), x_plus_delta.data())) {
407 LOG(WARNING) << "x_plus_delta = Plus(x, delta) failed. "
587 if (!evaluator->Plus(x.data(),
591 "projected_gradient_step = Plus(x, -gradient) failed.";
line_search_minimizer.cc 84 if (!evaluator->Plus(x.data(),
87 *message = "projected_gradient_step = Plus(x, -gradient) failed.";
335 if (!evaluator->Plus(x.data(), delta.data(), x_plus_delta.data())) {
338 "x_plus_delta = Plus(x, delta) failed. This should not happen "
program.cc 110 bool Program::Plus(const double* state,
114 if (!parameter_blocks_[i]->Plus(state, delta, state_plus_delta)) {
  /external/openfst/src/include/fst/
shortest-path.h 144 if (f_distance != Plus(f_distance, w)) {
145 f_distance = Plus(f_distance, w);
168 if (nd != Plus(nd, w)) {
169 nd = Plus(nd, w);
451 d = Plus(d, Times(arc.weight.Reverse(), (*distance)[s]));
lexicographic-weight.h 121 inline LexicographicWeight<W1, W2> Plus(const LexicographicWeight<W1, W2> &w,
lookahead-matcher.h 354 SetLookAheadWeight(Plus(LookAheadWeight(),
364 SetLookAheadWeight(Plus(LookAheadWeight(), matcher_.Value().weight));
389 SetLookAheadWeight(Plus(LookAheadWeight(), arc.weight));
397 SetLookAheadWeight(Plus(LookAheadWeight(),
619 Plus(LookAheadWeight(), lfinal) : lfinal);
string-weight.h 38 // (suffixes) would otherwise be returned by Plus, useful with various
370 Plus(const StringWeight<L, S> &w1,
380 FSTERROR() << "StringWeight::Plus: unequal arguments "
393 Plus(const StringWeight<L, STRING_LEFT> &w1,
414 Plus(const StringWeight<L, STRING_RIGHT> &w1,
signed-log-weight.h 108 inline SignedLogWeightTpl<T> Plus(const SignedLogWeightTpl<T> &w1,
148 return Plus(w1, minus_w2);
determinize.h 49 // as the semiring Plus(). However, other choices permit more efficient
53 // The default common divisor uses the semiring Plus.
59 W operator()(const W &w1, const W &w2) const { return Plus(w1, w2); }
542 final = Plus(final, Times(element.weight,
566 outd = Plus(outd, Times(element.weight, ind));
641 matching_element->weight = Plus(matching_element->weight,
777 // and be zero-sum-free if for all a,b: (Plus(a, b) = 0 => a = b = 0.
    [all...]
push.h 54 sum = Plus(sum, Times(distance[s], fst.Final(s)));
  /external/regex-re2/re2/
simplify.cc 138 // plus the Perl (?:) non-capturing parentheses.
323 return Regexp::Plus(re->Incref(), f);
332 nre_subs[min-1] = Regexp::Plus(re->Incref(), f);
prefilter.cc 209 static Info* Plus(Info* a);
384 Prefilter::Info* Prefilter::Info::Plus(Info *a) {
623 info = Plus(child_args[0]);
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_num_get.h 202 char& Plus, char& Minus,
205 Plus = '+';
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/settings/
SpacingAndPunctuationsTests.java 119 assertTrue("Plus", sp.isWordSeparator('+'));
170 assertFalse("Plus", sp.isWordConnector('+'));
216 assertFalse("Plus", sp.isUsuallyPrecededBySpace('+'));
277 assertFalse("Plus", sp.isUsuallyFollowedBySpace('+'));
324 assertFalse("Plus", sp.isUsuallyFollowedBySpace('+'));
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_num_get.h 202 char& Plus, char& Minus,
205 Plus = '+';
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_num_get.h 202 char& Plus, char& Minus,
205 Plus = '+';
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_num_get.h 202 char& Plus, char& Minus,
205 Plus = '+';
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_num_get.h 202 char& Plus, char& Minus,
205 Plus = '+';
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_num_get.h 202 char& Plus, char& Minus,
205 Plus = '+';
  /external/openfst/src/include/fst/extensions/pdt/
shortest-path.h 557 if (f_distance_ != Plus(f_distance_, w)) {
562 f_distance_ = Plus(f_distance_, w);
603 if (pdist != Plus(pdist, w)) {
663 if (dist != Plus(dist, w)) {
666 sp_data_.SetDistance(d, Plus(dist, w));
752 if (arc.weight == Plus(arc.weight, path_arc.weight))
  /external/llvm/include/llvm/MC/
MCExpr.h 347 Plus ///< Unary plus.
373 return Create(Plus, Expr, Ctx);
  /external/clang/include/clang/AST/
StmtVisitor.h 157 UNARYOP_FALLBACK(Plus) UNARYOP_FALLBACK(Minus)
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
Compiler.java 57 import org.apache.xpath.operations.Plus;
142 expr = plus(opPos); break;
359 * @return reference to {@link org.apache.xpath.operations.Plus} instance.
363 protected Expression plus(int opPos) throws TransformerException method in class:Compiler
365 return compileOperation(new Plus(), opPos);
    [all...]

Completed in 812 milliseconds

12 3 4