Lines Matching refs:col

68 	inline const T&					operator()			(int row, int col) const	{ return m_data[col][row];	}
69 inline T& operator() (int row, int col) { return m_data[col][row]; }
321 for (int col = 0; col < Cols; col++)
322 (*this)(row, col) = (row == col) ? T(1) : T(0);
330 for (int col = 0; col < Cols; col++)
331 (*this)(row, col) = (row == col) ? src : T(0);
339 for (int col = 0; col < Cols; col++)
340 (*this)(row, col) = src[row*Cols + col];
349 for (int col = 0; col < Cols; col++)
350 (*this)(row, col) = (row == col) ? src.m_data[row] : T(0);
371 for (int col = 0; col < Cols; col++)
372 (*this)(row, col) = src(row, col);
387 for (int col = 0; col < Cols; col++)
388 (*this)(rowNdx, col) = vec.m_data[col];
401 for (int col = 0; col < Cols; col++)
402 res[col] = (*this)(rowNdx, col);
423 for (int col = 0; col < Cols; col++)
425 *dst++ = (*this)(row, col);
435 for (int col = 0; col < Cols; col++)
436 *dst++ = (*this)(row, col);
448 for (int col = 0; col < Cols1; col++)
452 v += a(row,ndx) * b(ndx,col);
453 res(row,col) = v;
467 for (int col = 0; col < Cols; col++)
468 v += mtx(row,col) * vec.m_data[col];
479 for (int col = 0; col < Cols; col++)
483 v += mtx(row,col) * vec.m_data[row];
484 res.m_data[col] = v;
544 for (int col = 0; col < Cols; col++)
546 res(row, col) = mtx(row, col) + scalar;
554 for (int col = 0; col < Cols; col++)
556 res(row, col) = mtx(row, col) - scalar;
564 for (int col = 0; col < Cols; col++)
566 res(row, col) = mtx(row, col) * scalar;
574 for (int col = 0; col < Cols; col++)
576 res(row, col) = mtx(row, col) / scalar;
586 for (int col = 0; col < Cols; col++)
588 res(row, col) = a(row, col) + b(row, col);
596 for (int col = 0; col < Cols; col++)
598 res(row, col) = a(row, col) - b(row, col);
606 for (int col = 0; col < Cols; col++)
608 res(row, col) = a(row, col) / b(row, col);
616 for (int col = 0; col < Cols; col++)
617 if (lhs(row, col) != rhs(row, col))