Searched refs:_other (Results 1 - 11 of 11) sorted by relevance

/external/eigen/Eigen/src/Core/products/
H A DTriangularSolverMatrix_BLAS.h54 EIGTYPE* _other, Index otherStride, level3_blocking<EIGTYPE,EIGTYPE>& /*blocking*/) \
83 BLASPREFIX##trsm_(&side, &uplo, &transa, &diag, &m, &n, &numext::real_ref(alpha), (const BLASTYPE*)a, &lda, (BLASTYPE*)_other, &ldb); \
107 EIGTYPE* _other, Index otherStride, level3_blocking<EIGTYPE,EIGTYPE>& /*blocking*/) \
136 BLASPREFIX##trsm_(&side, &uplo, &transa, &diag, &m, &n, &numext::real_ref(alpha), (const BLASTYPE*)a, &lda, (BLASTYPE*)_other, &ldb); \
H A DTriangularSolverMatrix.h24 Scalar* _other, Index otherStride,
32 ::run(size, cols, tri, triStride, _other, otherStride, blocking);
44 Scalar* _other, Index otherStride,
51 Scalar* _other, Index otherStride,
59 OtherMapper other(_other, otherStride);
194 Scalar* _other, Index otherStride,
201 Scalar* _other, Index otherStride,
209 LhsMapper lhs(_other, otherStride);
317 pack_lhs_panel(blockA, LhsMapper(_other+absolute_j2*otherStride+i2, otherStride),
21 run( Index size, Index cols, const Scalar* tri, Index triStride, Scalar* _other, Index otherStride, level3_blocking<Scalar,Scalar>& blocking) argument
48 run( Index size, Index otherSize, const Scalar* _tri, Index triStride, Scalar* _other, Index otherStride, level3_blocking<Scalar,Scalar>& blocking) argument
198 run( Index size, Index otherSize, const Scalar* _tri, Index triStride, Scalar* _other, Index otherStride, level3_blocking<Scalar,Scalar>& blocking) argument
/external/eigen/blas/
H A DBandTriangularSolver.h28 static void run(Index size, Index k, const LhsScalar* _lhs, Index lhsStride, RhsScalar* _other) argument
31 RhsMap other(_other,size,1);
64 static void run(Index size, Index k, const LhsScalar* _lhs, Index lhsStride, RhsScalar* _other) argument
67 RhsMap other(_other,size,1);
/external/python/cpython2/Modules/_sqlite/
H A Drow.c196 static PyObject* pysqlite_row_richcompare(pysqlite_Row *self, PyObject *_other, int opid) argument
202 if (PyType_IsSubtype(Py_TYPE(_other), &pysqlite_RowType)) {
203 pysqlite_Row *other = (pysqlite_Row *)_other;
/external/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
H A DRubyMap.java191 public IRubyObject eq(ThreadContext context, IRubyObject _other) { argument
192 if (_other instanceof RubyHash)
193 return toHash(context).op_equal(context, _other);
194 RubyMap other = (RubyMap) _other;
/external/protobuf/ruby/ext/google/protobuf_c/
H A Dmap.c566 VALUE Map_eq(VALUE _self, VALUE _other) { argument
573 if (TYPE(_other) == T_HASH) {
575 Map_merge_into_self(other_map, _other);
576 _other = other_map;
579 other = ruby_to_Map(_other);
H A Drepeated_field.c401 VALUE RepeatedField_eq(VALUE _self, VALUE _other) { argument
405 if (_self == _other) {
409 if (TYPE(_other) == T_ARRAY) {
411 return rb_equal(self_ary, _other);
415 other = ruby_to_RepeatedField(_other);
H A Dprotobuf.h381 VALUE RepeatedField_eq(VALUE _self, VALUE _other);
422 VALUE Map_eq(VALUE _self, VALUE _other);
493 VALUE Message_eq(VALUE _self, VALUE _other);
H A Dmessage.c305 VALUE Message_eq(VALUE _self, VALUE _other) { argument
309 TypedData_Get_Struct(_other, MessageHeader, &Message_type, other);
/external/eigen/Eigen/src/Core/
H A DSolveTriangular.h167 void TriangularViewImpl<MatrixType,Mode,Dense>::solveInPlace(const MatrixBase<OtherDerived>& _other) const
169 OtherDerived& other = _other.const_cast_derived();
H A DPlainObjectBase.h362 EIGEN_STRONG_INLINE void resizeLike(const EigenBase<OtherDerived>& _other) argument
364 const OtherDerived& other = _other.derived();

Completed in 641 milliseconds