Lines Matching refs:n

626 		sal_uInt32 n = nPage;  in scope()  local
629 index1 = n / nCapacity; in scope()
630 index0 = n % nCapacity; in scope()
633 n = index1 * nCapacity + index0; in scope()
634 OSL_POSTCOND(n == nPage, "wrong math on indirect indices"); in scope()
635 if (n != nPage) in scope()
653 sal_uInt32 n = nPage; in scope() local
656 index2 = n / (nCapacity * nCapacity); in scope()
657 n = n % (nCapacity * nCapacity); in scope()
660 index1 = n / nCapacity; in scope()
661 index0 = n % nCapacity; in scope()
664 n = index2 * nCapacity * nCapacity + in scope()
666 OSL_POSTCOND(n == nPage, "wrong math on double indirect indices"); in scope()
667 if (n != nPage) in scope()
686 sal_uInt32 n = nPage; in scope() local
689 index3 = n / (nCapacity * nCapacity * nCapacity); in scope()
690 n = n % (nCapacity * nCapacity * nCapacity); in scope()
693 index2 = n / (nCapacity * nCapacity); in scope()
694 n = n % (nCapacity * nCapacity); in scope()
697 index1 = n / nCapacity; in scope()
698 index0 = n % nCapacity; in scope()
701 n = index3 * nCapacity * nCapacity * nCapacity + in scope()
704 OSL_POSTCOND(n == nPage, "wrong math on triple indirect indices"); in scope()
705 if (n != nPage) in scope()
1047 sal_uInt16 i, n = rDataBlock.directCount(); in truncate() local
1048 for (i = n; i > nRemain; i--) in truncate()
1070 sal_uInt16 i, n = rDataBlock.singleCount(); in truncate() local
1071 for (i = n; i > nRemain; i--) in truncate()
1089 sal_uInt16 i, n = rDataBlock.doubleCount(); in truncate() local
1090 for (i = n; i > nRemain; i--) in truncate()
1108 sal_uInt16 i, n = rDataBlock.tripleCount(); in truncate() local
1109 for (i = n; i > nRemain; i--) in truncate()