Lines Matching refs:nS

379     A nS = nStart;  in SumValuesContinuation()  local
380 while (nIndex < this->nCount && nS <= nEnd) in SumValuesContinuation()
384 unsigned long nNew = (unsigned long) this->pData[nIndex].aValue * (nE - nS + 1); in SumValuesContinuation()
388 nS = nE + 1; in SumValuesContinuation()
389 if (nS <= nEnd) in SumValuesContinuation()
401 A nS = nStart; in SumScaledValuesContinuation() local
402 while (nIndex < this->nCount && nS <= nEnd) in SumScaledValuesContinuation()
407 unsigned long nNew = nScaledVal * (nE - nS + 1); in SumScaledValuesContinuation()
411 nS = nE + 1; in SumScaledValuesContinuation()
412 if (nS <= nEnd) in SumScaledValuesContinuation()
433 A nS = ::std::max( (nIndex>0 ? this->pData[nIndex-1].nEnd+1 : 0), nStart); in AndValue() local
435 this->SetValue( nS, nE, this->pData[nIndex].aValue & rValueToAnd); in AndValue()
460 A nS = ::std::max( (nIndex>0 ? this->pData[nIndex-1].nEnd+1 : 0), nStart); in OrValue() local
462 this->SetValue( nS, nE, this->pData[nIndex].aValue | rValueToOr); in OrValue()
609 A nS = ::std::max( (nIndex>0 ? this->pData[nIndex-1].nEnd+1 : 0), nStart); in CountForCondition() local
611 nRet += nE - nS + 1; in CountForCondition()
632 A nS = ::std::max( (nIndex>0 ? this->pData[nIndex-1].nEnd+1 : 0), nStart); in FillArrayForCondition() local
634 while (nS <= nE && nUsed < nArraySize) in FillArrayForCondition()
635 pArray[nUsed++] = nS++; in FillArrayForCondition()
672 A nS = ::std::max( (nIndex>0 ? this->pData[nIndex-1].nEnd+1 : 0), nStart); in CountForAnyBitCondition() local
674 nRet += nE - nS + 1; in CountForAnyBitCondition()
720 A nS = nStart; in SumCoupledArrayForCondition() local
728 rArray.GetDataEntry(nIndex2).nEnd < nS) in SumCoupledArrayForCondition()
730 unsigned long nNew = rArray.SumValuesContinuation( nS, in SumCoupledArrayForCondition()
736 nS = this->pData[nIndex1].nEnd + 1; in SumCoupledArrayForCondition()
738 } while (nIndex1 < this->nCount && nS <= nEnd); in SumCoupledArrayForCondition()
754 A nS = nStart; in SumScaledCoupledArrayForCondition() local
762 rArray.GetDataEntry(nIndex2).nEnd < nS) in SumScaledCoupledArrayForCondition()
764 unsigned long nNew = rArray.SumScaledValuesContinuation( nS, in SumScaledCoupledArrayForCondition()
770 nS = this->pData[nIndex1].nEnd + 1; in SumScaledCoupledArrayForCondition()
772 } while (nIndex1 < this->nCount && nS <= nEnd); in SumScaledCoupledArrayForCondition()