Lines Matching refs:b
5 define gcd(a,b) {7 while (b) {8 t = b;9 b = a % b;16 define fmul(b,n,d) {17 return (2^b*n+d-1)/d;22 define fadj(b,n,d) {25 v = 2^b*(d-1)/d;30 which brings the mul value into the range 2^b-1 <= x < 2^b. Such33 define fmuls(b,n,d) {37 if (m >= 2^(b-1))