Lines Matching full:swap
45 * swap_words_32 - swap two elements in 32-bit chunks
46 * @a: pointer to the first element to swap
47 * @b: pointer to the second element to swap
68 * swap_words_64 - swap two elements in 64-bit chunks
69 * @a: pointer to the first element to swap
70 * @b: pointer to the second element to swap
104 * swap_bytes - swap two elements a byte at a time
105 * @a: pointer to the first element to swap
106 * @b: pointer to the second element to swap
132 swap_func_t swap; member
142 ((const struct wrapper *)priv)->swap(a, b, (int)size); in do_swap()
197 * @swap_func: pointer to swap function or NULL
202 * copy (e.g. fix up pointers or auxiliary data), but the built-in swap
222 /* called from 'sort' without swap function, let's pick the default */ in sort_r()
223 if (swap_func == SWAP_WRAPPER && !((struct wrapper *)priv)->swap) in sort_r()
287 .swap = swap_func, in sort()