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

/external/pdfium/fpdfsdk/include/
H A Dfsdk_mgr.h498 void QuickSort(FX_UINT nStartPos, FX_UINT nStopPos, FX_BOOL bAscend, LP_COMPARE pCompare) argument
500 if (nStartPos >= nStopPos) return;
502 if ((nStopPos - nStartPos) == 1)
505 TYPE Value2 = this->GetAt(nStopPos);
511 this->SetAt(nStopPos, Value1);
516 FX_UINT m = nStartPos + (nStopPos - nStartPos) / 2;
538 FX_UINT j = nStopPos;
558 if (nStopPos > m) QuickSort(m, nStopPos, bAscend, pCompare);

Completed in 89 milliseconds