Searched defs:lessSwap (Results 1 – 2 of 2) sorted by relevance
/aosp_15_r20/prebuilts/go/linux-x86/src/sort/ |
D | zsortfunc.go | 10 func insertionSort_func(data lessSwap, a, b int) { 20 func siftDown_func(data lessSwap, lo, hi, first int) { 38 func heapSort_func(data lessSwap, a, b int) { 61 func pdqsort_func(data lessSwap, a, b, limit int) { 135 func partition_func(data lessSwap, a, b, pivot int) (newpivot int, alreadyPartitioned bool) { 173 func partitionEqual_func(data lessSwap, a, b, pivot int) (newpivot int) { 195 func partialInsertionSort_func(data lessSwap, a, b int) bool { 240 func breakPatterns_func(data lessSwap, a, b int) { 261 func choosePivot_func(data lessSwap, a, b int) (pivot int, hint sortedHint) { 298 func order2_func(data lessSwap, a, b int, swaps *int) (int, int) { [all …]
|
D | sort.go | 80 type lessSwap struct { struct 81 Less func(i, j int) bool 82 Swap func(i, j int)
|