Home
last modified time | relevance | path

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

/haiku/src/libs/gnu/
H A Dqsort.c56 sort_r_swap_blocks(char* ptr, size_t numBytesA, size_t numBytesB) in sort_r_swap_blocks() argument
58 if (numBytesA > 0 && numBytesB > 0) { in sort_r_swap_blocks()
59 if (numBytesA > numBytesB) in sort_r_swap_blocks()
60 sort_r_swap(ptr, ptr + numBytesA, numBytesB); in sort_r_swap_blocks()
62 sort_r_swap(ptr, ptr + numBytesB, numBytesA); in sort_r_swap_blocks()