Lines Matching full:swap
43 * swap_words_32 - swap two elements in 32-bit chunks
44 * @a: pointer to the first element to swap
45 * @b: pointer to the second element to swap
66 * swap_words_64 - swap two elements in 64-bit chunks
67 * @a: pointer to the first element to swap
68 * @b: pointer to the second element to swap
102 * swap_bytes - swap two elements a byte at a time
103 * @a: pointer to the first element to swap
104 * @b: pointer to the second element to swap
130 swap_func_t swap; member
140 ((const struct wrapper *)priv)->swap(a, b, (int)size); in do_swap()
205 /* called from 'sort' without swap function, let's pick the default */ in __sort_r()
206 if (swap_func == SWAP_WRAPPER && !((struct wrapper *)priv)->swap) in __sort_r()
283 * @swap_func: pointer to swap function or NULL
288 * copy (e.g. fix up pointers or auxiliary data), but the built-in swap
318 * @swap_func: pointer to swap function or NULL
339 .swap = swap_func, in sort()
352 .swap = swap_func, in sort_nonatomic()