Searched refs:nStopPos (Results 1 - 1 of 1) sorted by relevance

/external/pdfium/fpdfsdk/include/
H A Dfsdk_mgr.h549 void QuickSort(FX_UINT nStartPos, FX_UINT nStopPos, FX_BOOL bAscend, LP_COMPARE pCompare) argument
551 if (nStartPos >= nStopPos) return;
553 if ((nStopPos - nStartPos) == 1)
556 TYPE Value2 = this->GetAt(nStopPos);
562 this->SetAt(nStopPos, Value1);
567 FX_UINT m = (nStartPos + nStopPos) / 2;
589 FX_UINT j = nStopPos;
609 if (nStopPos > m) QuickSort(m, nStopPos, bAscend, pCompare);

Completed in 245 milliseconds