• Home
  • Raw
  • Download

Lines Matching refs:col

68 	inline const T&					operator()			(int row, int col) const	{ return m_data[col][row];	}  in operator ()()
69 inline T& operator() (int row, int col) { return m_data[col][row]; } in operator ()() argument
321 for (int col = 0; col < Cols; col++) in Matrix() local
322 (*this)(row, col) = (row == col) ? T(1) : T(0); in Matrix()
330 for (int col = 0; col < Cols; col++) in Matrix() local
331 (*this)(row, col) = (row == col) ? src : T(0); in Matrix()
339 for (int col = 0; col < Cols; col++) in Matrix() local
340 (*this)(row, col) = src[row*Cols + col]; in Matrix()
349 for (int col = 0; col < Cols; col++) in Matrix() local
350 (*this)(row, col) = (row == col) ? src.m_data[row] : T(0); in Matrix()
371 for (int col = 0; col < Cols; col++) in operator =() local
372 (*this)(row, col) = src(row, col); in operator =()
387 for (int col = 0; col < Cols; col++) in setRow() local
388 (*this)(rowNdx, col) = vec.m_data[col]; in setRow()
401 for (int col = 0; col < Cols; col++) in getRow() local
402 res[col] = (*this)(rowNdx, col); in getRow()
423 for (int col = 0; col < Cols; col++) in getColumnMajorData() local
425 *dst++ = (*this)(row, col); in getColumnMajorData()
435 for (int col = 0; col < Cols; col++) in getRowMajorData() local
436 *dst++ = (*this)(row, col); in getRowMajorData()
448 for (int col = 0; col < Cols1; col++) in operator *() local
452 v += a(row,ndx) * b(ndx,col); in operator *()
453 res(row,col) = v; in operator *()
467 for (int col = 0; col < Cols; col++) in operator *() local
468 v += mtx(row,col) * vec.m_data[col]; in operator *()
479 for (int col = 0; col < Cols; col++) in operator *() local
483 v += mtx(row,col) * vec.m_data[row]; in operator *()
484 res.m_data[col] = v; in operator *()
531 for (int col = 0; col < Cols; col++) in operator +() local
533 res(row, col) = mtx(row, col) + scalar; in operator +()
541 for (int col = 0; col < Cols; col++) in operator -() local
543 res(row, col) = mtx(row, col) - scalar; in operator -()
551 for (int col = 0; col < Cols; col++) in operator *() local
553 res(row, col) = mtx(row, col) * scalar; in operator *()
561 for (int col = 0; col < Cols; col++) in operator /() local
563 res(row, col) = mtx(row, col) / scalar; in operator /()
573 for (int col = 0; col < Cols; col++) in operator +() local
575 res(row, col) = a(row, col) + b(row, col); in operator +()
583 for (int col = 0; col < Cols; col++) in operator -() local
585 res(row, col) = a(row, col) - b(row, col); in operator -()
593 for (int col = 0; col < Cols; col++) in operator /() local
595 res(row, col) = a(row, col) / b(row, col); in operator /()
603 for (int col = 0; col < Cols; col++) in operator ==() local
604 if (lhs(row, col) != rhs(row, col)) in operator ==()