Searched refs:_other (Results 1 – 8 of 8) sorted by relevance
/external/jetty/src/java/org/eclipse/jetty/io/ |
D | ThreadLocalBuffers.java | 57 if (buffers._other!=null && isBuffer(buffers._other)) in getBuffer() 59 Buffer b=buffers._other; in getBuffer() 60 buffers._other=null; in getBuffer() 78 if (buffers._other!=null && isHeader(buffers._other)) in getHeader() 80 Buffer b=buffers._other; in getHeader() 81 buffers._other=null; in getHeader() 92 if (buffers._other!=null && buffers._other.capacity()==size) in getBuffer() 94 Buffer b=buffers._other; in getBuffer() 95 buffers._other=null; in getBuffer() 116 buffers._other=buffer; in returnBuffer() [all …]
|
/external/eigen/Eigen/src/Core/ |
D | Swap.h | 75 OtherDerived& _other = other.const_cast_derived(); 79 m_expression.coeffRef(rowId, colId) = _other.coeff(rowId, colId); 80 _other.coeffRef(rowId, colId) = tmp; 86 OtherDerived& _other = other.const_cast_derived(); 89 m_expression.coeffRef(index) = _other.coeff(index); 90 _other.coeffRef(index) = tmp; 96 OtherDerived& _other = other.const_cast_derived(); 101 _other.template packet<LoadMode>(rowId, colId) 103 _other.template writePacket<LoadMode>(rowId, colId, tmp); 109 OtherDerived& _other = other.const_cast_derived(); [all …]
|
D | SelfCwiseBinaryOp.h | 90 OtherDerived& _other = other.const_cast_derived(); 94 tmp = m_functor(tmp, _other.coeff(row,col)); 100 OtherDerived& _other = other.const_cast_derived(); 103 tmp = m_functor(tmp, _other.coeff(index)); 109 OtherDerived& _other = other.const_cast_derived(); 113 …m_functor.packetOp(m_matrix.template packet<StoreMode>(row, col),_other.template packet<LoadMode>(… 119 OtherDerived& _other = other.const_cast_derived(); 122 …m_functor.packetOp(m_matrix.template packet<StoreMode>(index),_other.template packet<LoadMode>(ind…
|
D | SolveTriangular.h | 174 void TriangularView<MatrixType,Mode>::solveInPlace(const MatrixBase<OtherDerived>& _other) const 176 OtherDerived& other = _other.const_cast_derived();
|
D | PlainObjectBase.h | 315 EIGEN_STRONG_INLINE void resizeLike(const EigenBase<OtherDerived>& _other) 317 const OtherDerived& other = _other.derived();
|
/external/eigen/Eigen/src/Core/products/ |
D | TriangularSolverMatrix.h | 24 Scalar* _other, Index otherStride, 32 ::run(size, cols, tri, triStride, _other, otherStride, blocking); 44 Scalar* _other, Index otherStride, 51 Scalar* _other, Index otherStride, 56 blas_data_mapper<Scalar, Index, ColMajor> other(_other,otherStride); 177 …gebp_kernel(_other+i2, otherStride, blockA, blockB, actual_mc, actual_kc, cols, Scalar(-1), -1, -1… 192 Scalar* _other, Index otherStride, 199 Scalar* _other, Index otherStride, 204 blas_data_mapper<Scalar, Index, ColMajor> lhs(_other,otherStride); 311 pack_lhs_panel(blockA, _other+absolute_j2*otherStride+i2, otherStride, [all …]
|
D | TriangularSolverMatrix_MKL.h | 54 EIGTYPE* _other, Index otherStride, level3_blocking<EIGTYPE,EIGTYPE>& /*blocking*/) \ 85 …m(&side, &uplo, &transa, &diag, &m, &n, &alpha, (const MKLTYPE*)a, &lda, (MKLTYPE*)_other, &ldb); \ 109 EIGTYPE* _other, Index otherStride, level3_blocking<EIGTYPE,EIGTYPE>& /*blocking*/) \ 140 …m(&side, &uplo, &transa, &diag, &m, &n, &alpha, (const MKLTYPE*)a, &lda, (MKLTYPE*)_other, &ldb); \
|
/external/eigen/blas/ |
D | BandTriangularSolver.h | 28 static void run(Index size, Index k, const LhsScalar* _lhs, Index lhsStride, RhsScalar* _other) 31 RhsMap other(_other,size,1); 64 static void run(Index size, Index k, const LhsScalar* _lhs, Index lhsStride, RhsScalar* _other) 67 RhsMap other(_other,size,1);
|