Lines Matching refs:rowPtrs

208   rowPtrs = A.rowPtrs;  in vpMatrix()
214 A.rowPtrs = NULL; in vpMatrix()
359 if (this->rowPtrs == NULL) // Fix coverity scan: explicit null dereferenced in init()
552 double *pi = rowPtrs[i]; // row i in AAt()
553 double *pj = rowPtrs[j]; // row j in AAt()
681 free(rowPtrs); in operator =()
685 rowPtrs = other.rowPtrs; in operator =()
691 other.rowPtrs = NULL; in operator =()
769 std::copy(it->begin(), it->end(), rowPtrs[i]); in operator =()
792 rowPtrs[i][j] = *x++; in operator <<()
801 rowPtrs[0][0] = val; in operator <<()
808 rowPtrs[0][colNum - 1] = val; in operator ,()
934 t_out[i] += rowPtrs[i][j] * tj; in operator *()
990 w[i] += A.rowPtrs[i][j] * vj; in multMatrixVector()
1038 double **BrowPtrs = B.rowPtrs; in mult2Matrices()
1040 const double *rowptri = A.rowPtrs[i]; in mult2Matrices()
1076 double **BrowPtrs = B.rowPtrs; in mult2Matrices()
1078 const double *rowptri = A.rowPtrs[i]; in mult2Matrices()
1133 double **BrowPtrs = B.rowPtrs; in mult2Matrices()
1135 const double *rowptri = A.rowPtrs[i]; in mult2Matrices()
1193 double *rowptri = rowPtrs[i]; in operator *()
1222 const double *rowptri = rowPtrs[i]; in operator *()
1334 double **ArowPtrs = A.rowPtrs; in add2WeightedMatrices()
1335 double **BrowPtrs = B.rowPtrs; in add2WeightedMatrices()
1336 double **CrowPtrs = C.rowPtrs; in add2WeightedMatrices()
1362 double **ArowPtrs = A.rowPtrs; in add2Matrices()
1363 double **BrowPtrs = B.rowPtrs; in add2Matrices()
1364 double **CrowPtrs = C.rowPtrs; in add2Matrices()
1395 double **ArowPtrs = A.rowPtrs; in add2Matrices()
1396 double **BrowPtrs = B.rowPtrs; in add2Matrices()
1397 double **CrowPtrs = C.rowPtrs; in add2Matrices()
1442 double **ArowPtrs = A.rowPtrs; in sub2Matrices()
1443 double **BrowPtrs = B.rowPtrs; in sub2Matrices()
1444 double **CrowPtrs = C.rowPtrs; in sub2Matrices()
1475 double **ArowPtrs = A.rowPtrs; in sub2Matrices()
1476 double **BrowPtrs = B.rowPtrs; in sub2Matrices()
1477 double **CrowPtrs = C.rowPtrs; in sub2Matrices()
1506 double **BrowPtrs = B.rowPtrs; in operator +=()
1510 rowPtrs[i][j] += BrowPtrs[i][j]; in operator +=()
1523 double **BrowPtrs = B.rowPtrs; in operator -=()
1526 rowPtrs[i][j] -= BrowPtrs[i][j]; in operator -=()
1545 double **ArowPtrs = A.rowPtrs; in negateMatrix()
1546 double **CrowPtrs = C.rowPtrs; in negateMatrix()
1570 s += rowPtrs[i][j]; in sum()
1623 M[i][j] = rowPtrs[i][j] * x; in operator *()
1646 C[i][j] = rowPtrs[i][j] * xinv; in operator /()
1656 rowPtrs[i][j] += x; in operator +=()
1666 rowPtrs[i][j] -= x; in operator -=()
1683 rowPtrs[i][j] *= x; in operator *=()
1702 rowPtrs[i][j] *= xinv; in operator /=()
1723 *(optr++) = rowPtrs[i][j]; in stackColumns()
5972 rowPtrs[i][oldColNum] = c[i]; in stack()
6770 x += fabs(*(*(rowPtrs + i) + j)); in infinityNorm()
6792 x = rowPtrs[i][j]; in sumSquare()