Home
last modified time | relevance | path

Searched refs:num_to_text (Results 1 – 9 of 9) sorted by relevance

/netbsd-src/external/lgpl3/gmp/dist/mpz/
H A Dout_str.c46 const char *num_to_text; in mpz_out_str() local
52 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()
H A Dget_str.c48 const char *num_to_text; in mpz_get_str() local
52 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()
/netbsd-src/external/lgpl3/gmp/dist/mpf/
H A Dget_str.c132 const char *num_to_text; in mpf_get_str() local
141 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()
/netbsd-src/external/lgpl3/gmp/dist/printf/
H A Ddoprntf.c168 const char *num_to_text = (p->base >= 0 in __gmp_doprnt_mpf() local
197 s[len-1] = num_to_text[n]; in __gmp_doprnt_mpf()
/netbsd-src/external/lgpl3/mpfr/dist/tests/
H A Dtstrtofr.c1468 const char *num_to_text; in random_tests() local
1480 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()
/netbsd-src/external/lgpl3/mpfr/dist/src/
H A Dget_str.c84 const char *num_to_text; in mpfr_get_str_aux() local
104 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() local
2616 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()
H A Dvasprintf.c118 static const char num_to_text[] = "0123456789abcdef"; variable
1162 str[0] = num_to_text [digit]; in regular_ab()
/netbsd-src/external/lgpl3/mpfr/dist/
H A DChangeLog29760 Minor changes concerning num_to_text. The ending \0 isn't needed.
29766 add num_to_text array for hexadecimal digits
/netbsd-src/external/lgpl3/gmp/dist/
H A DChangeLog25085 * mpbsd/mout.c, mpbsd/mtox.c (num_to_text): Remove unused variable.