Home | History | Annotate | Download | only in include

Lines Matching refs:pivot

470                 T* pivot;                                                           \
478 pivot = left + (n/2); \
487 a = pivot - d, b = pivot, c = pivot + d; \
488 pivot = LT(*a, *b) ? (LT(*b, *c) ? b : (LT(*a, *c) ? c : a)) \
496 a = left, b = pivot, c = right; \
497 pivot = LT(*a, *b) ? (LT(*b, *c) ? b : (LT(*a, *c) ? c : a)) \
499 if( pivot != left0 ) \
501 CV_SWAP( *pivot, *left0, t ); \
502 pivot = left0; \
509 while( left <= right && !LT(*pivot, *left) ) \
511 if( !LT(*left, *pivot) ) \
521 while( left <= right && !LT(*right, *pivot) ) \
523 if( !LT(*pivot, *right) ) \