Lines Matching refs:pow
267 #define TODIGIT(u, cut, c, pow) { \ argument
269 pow=DECPOWERS[cut]*2; \
270 if ((u)>pow) { \
271 pow*=4; \
272 if ((u)>=pow) {(u)-=pow; *(c)+=8;} \
273 pow/=2; \
274 if ((u)>=pow) {(u)-=pow; *(c)+=4;} \
275 pow/=2; \
277 if ((u)>=pow) {(u)-=pow; *(c)+=2;} \
278 pow/=2; \
279 if ((u)>=pow) {(u)-=pow; *(c)+=1;} \