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