/external/ceres-solver/internal/ceres/ |
D | dense_qr_solver.cc | 90 if (rhs_.rows() != lhs_.rows()) { in SolveUsingLAPACK() 91 rhs_.resize(lhs_.rows()); in SolveUsingLAPACK() 93 rhs_.setZero(); in SolveUsingLAPACK() 94 rhs_.head(num_rows) = ConstVectorRef(b, num_rows); in SolveUsingLAPACK() 111 rhs_.data(), in SolveUsingLAPACK() 115 VectorRef(x, num_cols) = rhs_.head(num_cols); in SolveUsingLAPACK() 141 if (rhs_.rows() != augmented_num_rows) { in SolveUsingEigen() 142 rhs_.resize(augmented_num_rows); in SolveUsingEigen() 143 rhs_.setZero(); in SolveUsingEigen() 145 rhs_.head(num_rows) = ConstVectorRef(b, num_rows); in SolveUsingEigen() [all …]
|
D | schur_complement_solver.h | 130 const double* rhs() const { return rhs_.get(); } in rhs() 131 void set_rhs(double* rhs) { rhs_.reset(rhs); } in set_rhs() 142 scoped_array<double> rhs_; variable
|
D | implicit_schur_complement.cc | 74 rhs_.resize(A_->num_cols_f()); in Init() 75 rhs_.setZero(); in Init() 220 rhs_.setZero(); in UpdateRhs() 221 A_->LeftMultiplyF(tmp_rows_.data(), rhs_.data()); in UpdateRhs()
|
D | implicit_schur_complement.h | 132 const Vector& rhs() const { return rhs_; } in rhs() 155 Vector rhs_; variable
|
D | dense_qr_solver.h | 107 Vector rhs_; variable
|
D | schur_complement_solver.cc | 80 eliminator_->Eliminate(A, b, per_solve_options.D, lhs_.get(), rhs_.get()); in SolveImpl()
|
/external/google-breakpad/src/testing/include/gmock/ |
D | gmock-matchers.h | 752 explicit name##Matcher(const Rhs& rhs) : rhs_(rhs) {} \ 755 return MakeMatcher(new Impl<Lhs>(rhs_)); \ 761 explicit Impl(const Rhs& rhs) : rhs_(rhs) {} \ 764 return lhs op rhs_; \ 768 UniversalPrint(rhs_, os); \ 772 UniversalPrint(rhs_, os); \ 775 Rhs rhs_; \ 778 Rhs rhs_; \ 1565 rhs_(rhs), nan_eq_nan_(nan_eq_nan) {} in FloatingEqMatcher() 1572 rhs_(rhs), nan_eq_nan_(nan_eq_nan) {} in Impl() [all …]
|
/external/libchrome/sandbox/linux/bpf_dsl/ |
D | bpf_dsl.cc | 168 : lhs_(lhs), rhs_(rhs) {} in AndBoolExprImpl() 173 return lhs_->Compile(pc, rhs_->Compile(pc, then_node, else_node), in Compile() 181 BoolExpr rhs_; member in sandbox::bpf_dsl::__anon3e62662a0111::AndBoolExprImpl 189 : lhs_(lhs), rhs_(rhs) {} in OrBoolExprImpl() 195 rhs_->Compile(pc, then_node, else_node)); in Compile() 202 BoolExpr rhs_; member in sandbox::bpf_dsl::__anon3e62662a0111::OrBoolExprImpl
|
/external/gmock/include/gmock/ |
D | gmock-matchers.h | 880 explicit name##Matcher(const Rhs& rhs) : rhs_(rhs) {} \ 883 return MakeMatcher(new Impl<Lhs>(rhs_)); \ 889 explicit Impl(const Rhs& rhs) : rhs_(rhs) {} \ 892 return lhs op rhs_; \ 896 UniversalPrint(rhs_, os); \ 900 UniversalPrint(rhs_, os); \ 903 Rhs rhs_; \ 906 Rhs rhs_; \ 1821 rhs_(rhs), nan_eq_nan_(nan_eq_nan), max_abs_error_(-1) { 1828 rhs_(rhs), nan_eq_nan_(nan_eq_nan), max_abs_error_(max_abs_error) { [all …]
|
/external/clang/test/SemaCXX/ |
D | windows-arm-valist.cpp | 6 template <typename lhs_, typename rhs_>
|
/external/google-breakpad/src/testing/test/ |
D | gmock-generated-matchers_test.cc | 256 explicit GreaterThanMatcher(int rhs) : rhs_(rhs) {} in GreaterThanMatcher() 259 *os << "is greater than " << rhs_; in DescribeTo() 264 const int diff = lhs - rhs_; in MatchAndExplain() 266 *listener << "which is " << diff << " more than " << rhs_; in MatchAndExplain() 268 *listener << "which is the same as " << rhs_; in MatchAndExplain() 270 *listener << "which is " << -diff << " less than " << rhs_; in MatchAndExplain() 273 return lhs > rhs_; in MatchAndExplain() 277 int rhs_; member in __anon37c52a7c0111::GreaterThanMatcher
|
D | gmock-matchers_test.cc | 144 explicit GreaterThanMatcher(int rhs) : rhs_(rhs) {} in GreaterThanMatcher() 147 *os << "is > " << rhs_; in DescribeTo() 152 const int diff = lhs - rhs_; in MatchAndExplain() 154 *listener << "which is " << diff << " more than " << rhs_; in MatchAndExplain() 156 *listener << "which is the same as " << rhs_; in MatchAndExplain() 158 *listener << "which is " << -diff << " less than " << rhs_; in MatchAndExplain() 161 return lhs > rhs_; in MatchAndExplain() 165 int rhs_; member in testing::gmock_matchers_test::GreaterThanMatcher
|
/external/gmock/test/ |
D | gmock-generated-matchers_test.cc | 261 explicit GreaterThanMatcher(int rhs) : rhs_(rhs) {} in GreaterThanMatcher() 264 *os << "is greater than " << rhs_; in DescribeTo() 269 const int diff = lhs - rhs_; in MatchAndExplain() 271 *listener << "which is " << diff << " more than " << rhs_; in MatchAndExplain() 273 *listener << "which is the same as " << rhs_; in MatchAndExplain() 275 *listener << "which is " << -diff << " less than " << rhs_; in MatchAndExplain() 278 return lhs > rhs_; in MatchAndExplain() 282 int rhs_; member in __anon47eda4650111::GreaterThanMatcher
|
D | gmock-matchers_test.cc | 160 explicit GreaterThanMatcher(int rhs) : rhs_(rhs) {} in GreaterThanMatcher() 163 *os << "is > " << rhs_; in DescribeTo() 168 const int diff = lhs - rhs_; in MatchAndExplain() 170 *listener << "which is " << diff << " more than " << rhs_; in MatchAndExplain() 172 *listener << "which is the same as " << rhs_; in MatchAndExplain() 174 *listener << "which is " << -diff << " less than " << rhs_; in MatchAndExplain() 177 return lhs > rhs_; in MatchAndExplain() 181 int rhs_; member in testing::gmock_matchers_test::GreaterThanMatcher
|
/external/v8/src/crankshaft/arm64/ |
D | lithium-codegen-arm64.cc | 85 rhs_(rhs) { } in CompareAndBranch() 88 __ CompareAndBranch(lhs_, rhs_, cond_, label); in Emit() 92 __ CompareAndBranch(lhs_, rhs_, NegateCondition(cond_), label); in EmitInverted() 98 const Operand& rhs_; member in v8::internal::CompareAndBranch
|
/external/bison/ |
D | ChangeLog-2012 | 11410 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
|