Home
last modified time | relevance | path

Searched refs:iGt (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/sqlite3/
H A Dshell.c4925 int iGt; /* Entries at or after a[iGt] are greater than rPivot */ in percentSort() local
4934 iGt = n-1; in percentSort()
4938 }else if( a[i]>a[iGt] ){ in percentSort()
4939 SWAP_DOUBLE(a[i],a[iGt]) in percentSort()
4951 iGt--; in percentSort()
4952 }while( iGt>i && a[iGt]>rPivot ); in percentSort()
4953 SWAP_DOUBLE(a[i],a[iGt]) in percentSort()
4957 }while( i<iGt ); in percentSort()
4959 if( n-iGt>=2 ) percentSort(a+iGt, n-iGt); in percentSort()