Searched refs:rhs_ (Results 1 - 15 of 15) sorted by relevance

/external/ceres-solver/internal/ceres/
H A Ddense_qr_solver.cc90 if (rhs_.rows() != lhs_.rows()) {
91 rhs_.resize(lhs_.rows());
93 rhs_.setZero();
94 rhs_.head(num_rows) = ConstVectorRef(b, num_rows);
111 rhs_.data(),
115 VectorRef(x, num_cols) = rhs_.head(num_cols);
141 if (rhs_.rows() != augmented_num_rows) {
142 rhs_.resize(augmented_num_rows);
143 rhs_.setZero();
145 rhs_
[all...]
H A Dimplicit_schur_complement.h132 const Vector& rhs() const { return rhs_; }
155 Vector rhs_; member in class:ceres::internal::ImplicitSchurComplement
H A Dschur_complement_solver.h130 const double* rhs() const { return rhs_.get(); }
131 void set_rhs(double* rhs) { rhs_.reset(rhs); }
142 scoped_array<double> rhs_; member in class:ceres::internal::SchurComplementSolver
H A Ddense_qr_solver.h107 Vector rhs_; member in class:ceres::internal::DenseQRSolver
H A Dimplicit_schur_complement.cc74 rhs_.resize(A_->num_cols_f());
75 rhs_.setZero();
220 rhs_.setZero();
221 A_->LeftMultiplyF(tmp_rows_.data(), rhs_.data());
H A Dschur_complement_solver.cc80 eliminator_->Eliminate(A, b, per_solve_options.D, lhs_.get(), rhs_.get());
/external/clang/test/SemaCXX/
H A Dwindows-arm-valist.cpp6 template <typename lhs_, typename rhs_>
/external/libchrome/sandbox/linux/bpf_dsl/
H A Dbpf_dsl.cc168 : lhs_(lhs), rhs_(rhs) {}
173 return lhs_->Compile(pc, rhs_->Compile(pc, then_node, else_node),
181 BoolExpr rhs_; member in class:sandbox::bpf_dsl::__anon9408::AndBoolExprImpl
189 : lhs_(lhs), rhs_(rhs) {}
195 rhs_->Compile(pc, then_node, else_node));
202 BoolExpr rhs_; member in class:sandbox::bpf_dsl::__anon9408::OrBoolExprImpl
/external/google-breakpad/src/testing/include/gmock/
H A Dgmock-matchers.h752 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) {}
1572 rhs_(rh
1599 *os << "is approximately " << rhs_; local
1615 *os << "isn't approximately " << rhs_; local
1622 const FloatType rhs_; member in class:testing::internal::FloatingEqMatcher::Impl
1647 const FloatType rhs_; member in class:testing::internal::FloatingEqMatcher
2015 const StlContainer rhs_; member in class:testing::internal::ContainerEqMatcher
2197 const RhsStlContainer rhs_; member in class:testing::internal::PointwiseMatcher::Impl
2204 const RhsStlContainer rhs_; member in class:testing::internal::PointwiseMatcher
[all...]
/external/gmock/include/gmock/
H A Dgmock-matchers.h880 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_(rh
1876 *os << "is approximately " << rhs_; local
1895 *os << "isn't approximately " << rhs_; local
1909 const FloatType rhs_; member in class:testing::internal::FloatingEqMatcher::Impl
1937 const FloatType rhs_; member in class:testing::internal::FloatingEqMatcher
2359 const StlContainer rhs_; member in class:testing::internal::ContainerEqMatcher
2545 const RhsStlContainer rhs_; member in class:testing::internal::PointwiseMatcher::Impl
2552 const RhsStlContainer rhs_; member in class:testing::internal::PointwiseMatcher
[all...]
/external/gmock/test/
H A Dgmock-generated-matchers_test.cc261 explicit GreaterThanMatcher(int rhs) : rhs_(rhs) {}
264 *os << "is greater than " << rhs_; local
269 const int diff = lhs - rhs_;
271 *listener << "which is " << diff << " more than " << rhs_; local
273 *listener << "which is the same as " << rhs_; local
275 *listener << "which is " << -diff << " less than " << rhs_;
278 return lhs > rhs_;
282 int rhs_; member in class:__anon6201::GreaterThanMatcher
H A Dgmock-matchers_test.cc160 explicit GreaterThanMatcher(int rhs) : rhs_(rhs) {}
163 *os << "is > " << rhs_; local
168 const int diff = lhs - rhs_;
170 *listener << "which is " << diff << " more than " << rhs_; local
172 *listener << "which is the same as " << rhs_; local
174 *listener << "which is " << -diff << " less than " << rhs_;
177 return lhs > rhs_;
181 int rhs_; member in class:testing::gmock_matchers_test::GreaterThanMatcher
/external/google-breakpad/src/testing/test/
H A Dgmock-generated-matchers_test.cc256 explicit GreaterThanMatcher(int rhs) : rhs_(rhs) {}
259 *os << "is greater than " << rhs_; local
264 const int diff = lhs - rhs_;
266 *listener << "which is " << diff << " more than " << rhs_; local
268 *listener << "which is the same as " << rhs_; local
270 *listener << "which is " << -diff << " less than " << rhs_;
273 return lhs > rhs_;
277 int rhs_; member in class:__anon6446::GreaterThanMatcher
H A Dgmock-matchers_test.cc144 explicit GreaterThanMatcher(int rhs) : rhs_(rhs) {}
147 *os << "is > " << rhs_; local
152 const int diff = lhs - rhs_;
154 *listener << "which is " << diff << " more than " << rhs_; local
156 *listener << "which is the same as " << rhs_; local
158 *listener << "which is " << -diff << " less than " << rhs_;
161 return lhs > rhs_;
165 int rhs_; member in class:testing::gmock_matchers_test::GreaterThanMatcher
/external/v8/src/crankshaft/arm64/
H A Dlithium-codegen-arm64.cc85 rhs_(rhs) { }
88 __ CompareAndBranch(lhs_, rhs_, cond_, label);
92 __ CompareAndBranch(lhs_, rhs_, NegateCondition(cond_), label);
98 const Operand& rhs_; member in class:v8::internal::CompareAndBranch

Completed in 390 milliseconds