Searched defs:rounddown (Results 1 – 4 of 4) sorted by relevance
30 #define rounddown(n,size) (((n)-1)&~((size)-1)) macro
105 #define rounddown(x, y) ((x) & ~(y - 1)) macro
120 #define rounddown(x, y) ((x) & ~((y) - 1)) macro
82 #define rounddown(x, y) (((x) / (y)) * (y)) macro