Lines Matching refs:RowSize

46             enum { RowSize = _RowSize };  enumerator
48 double mfValue[RowSize];
55 ImplMatLine(sal_uInt16 nRow, ImplMatLine< RowSize >* pToBeCopied = 0L) in ImplMatLine()
59 memcpy(&mfValue, pToBeCopied, sizeof(double) * RowSize); in ImplMatLine()
63 for(sal_uInt16 a(0); a < RowSize; a++) in ImplMatLine()
83 enum { RowSize = _RowSize }; enumerator
85 ImplMatLine< RowSize > maLine[RowSize - 1];
86 ImplMatLine< RowSize >* mpLine;
95 for(sal_uInt16 a(0); a < RowSize; a++) in isLastLineDefault()
97 const double fDefault(implGetDefaultValue((RowSize - 1), a)); in isLastLineDefault()
107 delete ((ImplHomMatrixTemplate< RowSize >*)this)->mpLine; in isLastLineDefault()
108 ((ImplHomMatrixTemplate< RowSize >*)this)->mpLine = 0L; in isLastLineDefault()
118 for(sal_uInt16 a(0); a < RowSize-1; a++) in ImplHomMatrixTemplate()
120 for(sal_uInt16 b(0); b < RowSize; b++) in ImplHomMatrixTemplate()
129 for(sal_uInt16 a(0); a < (RowSize - 1); a++) in ImplHomMatrixTemplate()
131 memcpy(&maLine[a], &rToBeCopied.maLine[a], sizeof(ImplMatLine< RowSize >)); in ImplHomMatrixTemplate()
136 mpLine = new ImplMatLine< RowSize >((RowSize - 1), rToBeCopied.mpLine); in ImplHomMatrixTemplate()
148 sal_uInt16 getEdgeLength() const { return RowSize; } in getEdgeLength()
152 if(nRow < (RowSize - 1)) in get()
162 return implGetDefaultValue((RowSize - 1), nColumn); in get()
167 if(nRow < (RowSize - 1)) in set()
177 const double fDefault(implGetDefaultValue((RowSize - 1), nColumn)); in set()
181 mpLine = new ImplMatLine< RowSize >((RowSize - 1), 0L); in set()
193 for(sal_uInt16 a(0);!bNecessary && a < RowSize; a++) in testLastLine()
195 const double fDefault(implGetDefaultValue((RowSize - 1), a)); in testLastLine()
216 double fStorage[RowSize]; in ludcmp()
226 for(a = 0; a < RowSize; a++) in ludcmp()
230 for(b = 0; b < RowSize; b++) in ludcmp()
249 for(b = 0; b < RowSize; b++) in ludcmp()
265 for(a = b; a < RowSize; a++) in ludcmp()
286 for(c = 0; c < RowSize; c++) in ludcmp()
307 if(b != (RowSize - 1)) in ludcmp()
311 for(a = b + 1; a < RowSize; a++) in ludcmp()
327 for(a = 0; a < RowSize; a++) in lubksb()
348 for(a = (RowSize - 1); a >= 0; a--) in lubksb()
352 for(b = a + 1; b < RowSize; b++) in lubksb()
370 sal::static_int_cast<sal_uInt16>(mpLine ? RowSize : (RowSize - 1)) ); in isIdentity()
374 for(sal_uInt16 b(0); b < RowSize; b++) in isIdentity()
392 sal_uInt16 nIndex[RowSize]; in isInvertible()
403 const double fHomValue(get((RowSize - 1), (RowSize - 1))); in isNormalized()
422 double fArray[RowSize]; in doInvert()
424 for(sal_uInt16 a(0); a < RowSize; a++) in doInvert()
428 for( b = 0; b < RowSize; b++) in doInvert()
437 for( b = 0; b < RowSize; b++) in doInvert()
451 const double fHomValue(get((RowSize - 1), (RowSize - 1))); in doNormalize()
453 for(sal_uInt16 a(0); a < RowSize; a++) in doNormalize()
455 for(sal_uInt16 b(0); b < RowSize; b++) in doNormalize()
469 sal_uInt16 nIndex[RowSize]; in doDeterminant()
479 sal::static_int_cast<sal_uInt16>(aWork.mpLine ? RowSize : (RowSize - 1)) ); in doDeterminant()
494 sal::static_int_cast<sal_uInt16>(mpLine ? RowSize : (RowSize - 1)) ); in doTrace()
506 for(sal_uInt16 a(0); a < (RowSize - 1); a++) in doTranspose()
508 for(sal_uInt16 b(a + 1); b < RowSize; b++) in doTranspose()
521 for(sal_uInt16 a(0); a < RowSize; a++) in doAddMatrix()
523 for(sal_uInt16 b(0); b < RowSize; b++) in doAddMatrix()
534 for(sal_uInt16 a(0); a < RowSize; a++) in doSubMatrix()
536 for(sal_uInt16 b(0); b < RowSize; b++) in doSubMatrix()
547 for(sal_uInt16 a(0); a < RowSize; a++) in doMulMatrix()
549 for(sal_uInt16 b(0); b < RowSize; b++) in doMulMatrix()
567 for(sal_uInt16 a(0); a < RowSize; ++a) in doMulMatrix()
569 for(sal_uInt16 b(0); b < RowSize; ++b) in doMulMatrix()
573 for(sal_uInt16 c(0); c < RowSize; ++c) in doMulMatrix()
586 … sal::static_int_cast<sal_uInt16>((mpLine || rMat.mpLine) ? RowSize : (RowSize - 1)) ); in isEqual()
590 for(sal_uInt16 b(0); b < RowSize; b++) in isEqual()