Lines Matching refs:radix
523 void funcname(type num, char *buf, int radix) \
531 *--s = "0123456789ABCDEF"[num % radix]; \
532 } while ((num /= radix) != 0); \
545 type cfuncname(constant char *buf, constant char **ebuf, int radix) \ in TYPE_TO_A_FUNC()
552 if (digit < 0 || digit >= radix) break; \ in TYPE_TO_A_FUNC()
553 v = v || ckd_mul(&val, val, radix); \ in TYPE_TO_A_FUNC()
559 type funcname(char *buf, char **ebuf, int radix) \
562 type r = cfuncname(cbuf, &cbuf, radix); \
575 static int funcname(type num, int radix) \
578 typetoa(num, buf, radix); \