HomeSort by relevance Sort by last modified time
    Searched refs:rhs_ (Results 1 - 11 of 11) sorted by null

  /external/ceres-solver/internal/ceres/
dense_qr_solver.cc 90 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_.head(num_rows) = ConstVectorRef(b, num_rows)
    [all...]
implicit_schur_complement.h 132 const Vector& rhs() const { return rhs_; }
155 Vector rhs_; member in class:ceres::internal::ImplicitSchurComplement
schur_complement_solver.h 130 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
dense_qr_solver.h 107 Vector rhs_; member in class:ceres::internal::DenseQRSolver
implicit_schur_complement.cc 74 rhs_.resize(A_->num_cols_f());
75 rhs_.setZero();
220 rhs_.setZero();
221 A_->LeftMultiplyF(tmp_rows_.data(), rhs_.data());
schur_complement_solver.cc 80 eliminator_->Eliminate(A, b, per_solve_options.D, lhs_.get(), rhs_.get());
  /external/clang/test/SemaCXX/
windows-arm-valist.cpp 6 template <typename lhs_, typename rhs_>
  /external/google-breakpad/src/testing/include/gmock/
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_; \
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/google-breakpad/src/testing/test/
gmock-generated-matchers_test.cc 256 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:__anon9609::GreaterThanMatcher
    [all...]
gmock-matchers_test.cc 144 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
    [all...]
  /external/v8/src/arm64/
lithium-codegen-arm64.cc 85 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
    [all...]

Completed in 4300 milliseconds