Loading...
Searching...
No Matches
Go to the documentation of this file.
19#define ALIGN(x, a) (((x) + ((typeof(x))(a) - 1)) & ~((typeof(x))(a) - 1))
30#define MAX(a,b) ({ typeof(a) _a = a; typeof(b) _b = b; _a > _b ? _a : _b; })
41#define MIN(a,b) ({ typeof(a) _a = a; typeof(b) _b = b; _a < _b ? _a : _b; })
51#define KiB(x) ((x) * 1024)
61#define MiB(x) ((x) * 1024 * 1024)