Searched refs:num_to_text (Results 1 – 9 of 9) sorted by relevance
46 const char *num_to_text; in mpz_out_str() local52 num_to_text = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"; in mpz_out_str()56 num_to_text = "0123456789abcdefghijklmnopqrstuvwxyz"; in mpz_out_str()97 str[i] = num_to_text[str[i]]; in mpz_out_str()
48 const char *num_to_text; in mpz_get_str() local52 num_to_text = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"; in mpz_get_str()56 num_to_text = "0123456789abcdefghijklmnopqrstuvwxyz"; in mpz_get_str()101 res_str[i] = num_to_text[(int) res_str[i]]; in mpz_get_str()
132 const char *num_to_text; in mpf_get_str() local141 num_to_text = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"; in mpf_get_str()145 num_to_text = "0123456789abcdefghijklmnopqrstuvwxyz"; in mpf_get_str()298 dp[i] = num_to_text[tstr[i]]; in mpf_get_str()
168 const char *num_to_text = (p->base >= 0 in __gmp_doprnt_mpf() local197 s[len-1] = num_to_text[n]; in __gmp_doprnt_mpf()
1468 const char *num_to_text; in random_tests() local1480 num_to_text = base <= 36 ? num_to_text36 : num_to_text62; in random_tests()1542 while ((d = s0[j]) == num_to_text[base - 1]) in random_tests()1545 s2[j+2] = d = *(strchr (num_to_text, d) + 1); in random_tests()
84 const char *num_to_text; in mpfr_get_str_aux() local104 num_to_text = (2 <= b0 && b0 <= 36) ? num_to_text36 : num_to_text62; in mpfr_get_str_aux()229 str[i] = num_to_text[(int) str1[i]]; /* str1[i] is an unsigned char */ in mpfr_get_str_aux()2584 const char *num_to_text; in mpfr_get_str() local2616 num_to_text = (2 <= b && b <= 36) ? num_to_text36 : num_to_text62; in mpfr_get_str()2736 s[i] = num_to_text[(int) s[i]]; in mpfr_get_str()
118 static const char num_to_text[] = "0123456789abcdef"; variable1162 str[0] = num_to_text [digit]; in regular_ab()
29760 Minor changes concerning num_to_text. The ending \0 isn't needed.29766 add num_to_text array for hexadecimal digits
25085 * mpbsd/mout.c, mpbsd/mtox.c (num_to_text): Remove unused variable.