roundup2
#define roundup2(x, y) (((x)+((y)-1))&(~((y)-1))) /* if y is powers of two */
#define roundup2(x, y) (((x) + ((y) - 1)) & (~((y) - 1)))