Searched refs:rhs (Results 326 - 350 of 467) sorted by relevance

<<111213141516171819

/external/chromium/testing/gmock/include/gmock/internal/
H A Dgmock-internal-utils.h87 const ::testing::internal::linked_ptr<T>& rhs) const {
88 return lhs.get() < rhs.get();
/external/clang/include/clang/Basic/
H A DSourceLocation.h326 bool operator()(const FullSourceLoc& lhs, const FullSourceLoc& rhs) const {
327 return lhs.isBeforeInTranslationUnitThan(rhs);
/external/eigen/Eigen/src/QR/
H A DHouseholderQR.h290 eigen_assert(rhs().rows() == rows);
292 typename Rhs::PlainObject c(rhs());
H A DColPivHouseholderQR.h459 eigen_assert(rhs().rows() == dec().rows());
470 typename Rhs::PlainObject c(rhs());
/external/llvm/examples/Kaleidoscope/Chapter3/
H A Dtoy.cpp111 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs) argument
112 : Op(op), LHS(lhs), RHS(rhs) {}
/external/llvm/lib/MC/
H A DMCWin64EH.cpp54 MCSymbol *rhs) {
59 rhs, context),
53 EmitAbsDifference(MCStreamer &streamer, MCSymbol *lhs, MCSymbol *rhs) argument
/external/eigen/Eigen/src/Core/
H A DTriangularMatrix.h282 operator*(const MatrixBase<OtherDerived>& rhs) const
286 (m_matrix, rhs.derived());
292 operator*(const MatrixBase<OtherDerived>& lhs, const TriangularView& rhs) argument
296 (lhs.derived(),rhs.m_matrix);
310 operator*(const EigenBase<OtherDerived>& rhs) const
313 rhs.evalTo(rhsPlainObject);
/external/oprofile/libpp/
H A Darrange_profiles.cpp33 int numeric_compare(string const & lhs, string const & rhs) argument
35 if (lhs == "all" && rhs == "all")
40 if (rhs == "all")
43 unsigned int rhsval = op_lexical_cast<unsigned int>(rhs);
57 profile_class const & rhs)
60 profile_template const & rt = rhs.ptemplate;
56 operator <(profile_class const & lhs, profile_class const & rhs) argument
/external/tinyxml/
H A Dtinyxml.h772 bool operator==( const TiXmlAttribute& rhs ) const { return rhs.name == name; }
773 bool operator<( const TiXmlAttribute& rhs ) const { return name < rhs.name; }
774 bool operator>( const TiXmlAttribute& rhs ) const { return name > rhs.name; }
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/eigen/Eigen/src/Geometry/
H A DTransform.h417 * The rhs diagonal matrix is interpreted as an affine scaling transformation. The
1216 *** Specializations of operator* with rhs EigenBase ***
1385 static ResultType run(const Lhs& lhs, const Rhs& rhs) argument
1388 res.linear() = lhs.linear() * rhs.linear();
1389 res.translation() = lhs.linear() * rhs.translation() + lhs.translation();
1401 static ResultType run(const Lhs& lhs, const Rhs& rhs) argument
1403 return ResultType( lhs.matrix() * rhs.matrix() );
1413 static ResultType run(const Lhs& lhs, const Rhs& rhs) argument
1416 res.matrix().template topRows<Dim>() = lhs.matrix() * rhs.matrix();
1417 res.matrix().row(Dim) = rhs
1428 run(const Lhs& lhs, const Rhs& rhs) argument
[all...]
/external/llvm/lib/TableGen/
H A DRecord.cpp870 Init *rhs, RecTy *Type) {
879 Key TheKey(std::make_pair(std::make_pair(std::make_pair(opc, lhs), rhs),
883 if (!I) I = new BinOpInit(opc, lhs, rhs, Type);
964 Init *rhs = RHS->resolveReferences(R, RV); local
966 if (LHS != lhs || RHS != rhs)
967 return (BinOpInit::get(getOpcode(), lhs, rhs, getType()))->Fold(&R, 0);
986 Init *mhs, Init *rhs,
1003 rhs));
1006 if (!I) I = new TernOpInit(opc, lhs, mhs, rhs, Type);
1227 Init *rhs local
869 get(BinaryOp opc, Init *lhs, Init *rhs, RecTy *Type) argument
985 get(TernaryOp opc, Init *lhs, Init *mhs, Init *rhs, RecTy *Type) argument
1235 Init *rhs = RHS->resolveReferences(R, RV); local
[all...]
/external/icu4c/test/intltest/
H A Ditrbnf.cpp824 llong rhs = *values[j];
829 LLAssert((n *= rhs) == ans);
833 LLAssert((n * rhs) == ans);
859 const llong* tuples[] = { // lhs, rhs, ans
896 const llong rhs = *tuples[i*TUPLE_WIDTH+1];
900 if (!((n /= rhs) == ans)) {
901 errln("fail: (n /= rhs) == ans");
906 LLAssert((n / rhs) == ans);
976 const llong rhs = *tuples[i*TUPLE_WIDTH+1];
980 if (!((n %= rhs)
[all...]
/external/clang/tools/libclang/
H A DIndexing.cpp107 friend bool operator==(const PPRegion &lhs, const PPRegion &rhs) {
108 return lhs.dev == rhs.dev && lhs.ino == rhs.ino &&
109 lhs.Offset == rhs.Offset && lhs.ModTime == rhs.ModTime;
/external/emma/core/java12/com/vladium/jcd/cls/
H A DClassDef.java689 final MethodDescriptor rhs = (MethodDescriptor) obj;
691 int result = m_name.compareTo (rhs.m_name);
693 result = m_descriptor.compareTo (rhs.m_descriptor);
/external/open-vcdiff/gtest/include/gtest/internal/
H A Dgtest-internal.h423 // rhs. In particular, this function:
428 bool AlmostEquals(const FloatingPoint& rhs) const {
431 if (is_nan() || rhs.is_nan()) return false;
433 return DistanceBetweenSignAndMagnitudeNumbers(u_.bits_, rhs.u_.bits_)
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-internal.h421 // rhs. In particular, this function:
426 bool AlmostEquals(const FloatingPoint& rhs) const {
429 if (is_nan() || rhs.is_nan()) return false;
431 return DistanceBetweenSignAndMagnitudeNumbers(u_.bits_, rhs.u_.bits_)
/external/llvm/lib/Target/R600/
H A DAMDILPeepholeOptimizer.cpp822 BinaryOperator *rhs = local
825 rhs = BinaryOperator::Create(Instruction::And, rhs, CI->getOperand(2),
827 lhs = BinaryOperator::Create(Instruction::Or, lhs, rhs, "bfi_or", CI);
867 BinaryOperator *rhs = local
870 lhs = BinaryOperator::Create(Instruction::Shl, lhs, rhs, "bfm_shl", CI);
/external/ceres-solver/internal/ceres/
H A Dvisibility_based_preconditioner.cc355 // We need a dummy rhs vector and a dummy b vector since the Schur
361 // SchurEliminator::Eliminate function to allow NULL for the rhs. As
363 Vector rhs = Vector::Zero(m_->num_rows()); local
367 eliminator_->Eliminate(&A, b.data(), D, m_.get(), rhs.data());
/external/chromium/third_party/libjingle/source/talk/base/
H A Dhttpcommon.h192 bool operator()(const std::string& lhs, const std::string& rhs) const {
193 return (::_stricmp(lhs.c_str(), rhs.c_str()) < 0);
/external/clang/include/clang/Analysis/Analyses/
H A DFormatString.h53 OptionalFlag& operator=(const bool &rhs) { argument
54 flag = rhs;
/external/eigen/Eigen/src/CholmodSupport/
H A DCholmodSupport.h558 dec()._solve(rhs(),dst);
571 dec()._solve(rhs(),dst);
/external/eigen/Eigen/src/LU/
H A DPartialPivLU.h449 eigen_assert(rhs().rows() == dec().matrixLU().rows());
452 dst = dec().permutationP() * rhs();
/external/eigen/Eigen/src/UmfPackSupport/
H A DUmfPackSupport.h382 eigen_assert((BDerived::Flags&RowMajorBit)==0 && "UmfPackLU backend does not support non col-major rhs yet");
410 dec()._solve(rhs(),dst);
423 dec()._solve(rhs(),dst);
/external/llvm/examples/Kaleidoscope/Chapter4/
H A Dtoy.cpp118 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs) argument
119 : Op(op), LHS(lhs), RHS(rhs) {}

Completed in 760 milliseconds

<<111213141516171819