• 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
315 for (int col = 0; col < Cols; col++) in Matrix() local
316 (*this)(row, col) = (row == col) ? T(1) : T(0); in Matrix()
324 for (int col = 0; col < Cols; col++) in Matrix() local
325 (*this)(row, col) = (row == col) ? src : T(0); in Matrix()
333 for (int col = 0; col < Cols; col++) in Matrix() local
334 (*this)(row, col) = src[row*Cols + col]; in Matrix()
343 for (int col = 0; col < Cols; col++) in Matrix() local
344 (*this)(row, col) = (row == col) ? src.m_data[row] : T(0); in Matrix()
365 for (int col = 0; col < Cols; col++) in operator =() local
366 (*this)(row, col) = src(row, col); in operator =()
381 for (int col = 0; col < Cols; col++) in setRow() local
382 (*this)(rowNdx, col) = vec.m_data[col]; in setRow()
395 for (int col = 0; col < Cols; col++) in getRow() local
396 res[col] = (*this)(rowNdx, col); in getRow()
417 for (int col = 0; col < Cols; col++) in getColumnMajorData() local
419 *dst++ = (*this)(row, col); in getColumnMajorData()
429 for (int col = 0; col < Cols; col++) in getRowMajorData() local
430 *dst++ = (*this)(row, col); in getRowMajorData()
442 for (int col = 0; col < Cols1; col++) in operator *() local
446 v += a(row,ndx) * b(ndx,col); in operator *()
447 res(row,col) = v; in operator *()
461 for (int col = 0; col < Cols; col++) in operator *() local
462 v += mtx(row,col) * vec.m_data[col]; in operator *()
473 for (int col = 0; col < Cols; col++) in operator *() local
477 v += mtx(row,col) * vec.m_data[row]; in operator *()
478 res.m_data[col] = v; in operator *()
508 for (int col = 0; col < Cols; col++) in operator +() local
510 res(row, col) = mtx(row, col) + scalar; in operator +()
518 for (int col = 0; col < Cols; col++) in operator -() local
520 res(row, col) = mtx(row, col) - scalar; in operator -()
528 for (int col = 0; col < Cols; col++) in operator *() local
530 res(row, col) = mtx(row, col) * scalar; in operator *()
538 for (int col = 0; col < Cols; col++) in operator /() local
540 res(row, col) = mtx(row, col) / scalar; in operator /()
550 for (int col = 0; col < Cols; col++) in operator +() local
552 res(row, col) = a(row, col) + b(row, col); in operator +()
560 for (int col = 0; col < Cols; col++) in operator -() local
562 res(row, col) = a(row, col) - b(row, col); in operator -()
570 for (int col = 0; col < Cols; col++) in operator /() local
572 res(row, col) = a(row, col) / b(row, col); in operator /()