Searched defs:SWAP (Results 1 – 3 of 3) sorted by relevance
98 #define SWAP(x, y) do { uint64_t tmp = (x); (x) = (y); (y) = tmp; } while (0) macro
259 #define SWAP(a, b) \ macro
38 #define SWAP(a, b) { uint32_t t = a; a = b; b = t; t = 0; } macro