21 INT Y(exp2i)(
const INT a)
26 INT Y(log2i)(
const INT m)
41 INT Y(next_power_of_2)(
const INT N)
44 INT N_is_not_power_of_2=0;
57 N_is_not_power_of_2=1;
62 if (!N_is_not_power_of_2)
65 for (i = 0; i <= logn; i++)
74 void Y(next_power_of_2_exp)(
const INT N, INT *N2, INT *t)
77 INT N_is_not_power_of_2=0;
92 N_is_not_power_of_2=1;
98 if (!N_is_not_power_of_2)
103 for (i = 0; i <= logn; i++)
113 void Y(next_power_of_2_exp_int)(
const int N,
int *N2,
int *t)
116 int N_is_not_power_of_2=0;
131 N_is_not_power_of_2=1;
137 if (!N_is_not_power_of_2)
142 for (i = 0; i <= logn; i++)