Searched refs:nStopPos (Results 1 – 1 of 1) sorted by relevance
549 void QuickSort(FX_UINT nStartPos, FX_UINT nStopPos, FX_BOOL bAscend, LP_COMPARE pCompare) in QuickSort() argument551 if (nStartPos >= nStopPos) return; in QuickSort()553 if ((nStopPos - nStartPos) == 1) in QuickSort()556 TYPE Value2 = this->GetAt(nStopPos); in QuickSort()562 this->SetAt(nStopPos, Value1); in QuickSort()567 FX_UINT m = (nStartPos + nStopPos) / 2; in QuickSort()589 FX_UINT j = nStopPos; in QuickSort()609 if (nStopPos > m) QuickSort(m, nStopPos, bAscend, pCompare); in QuickSort()