Searched refs:num_to_text (Results 1 - 7 of 7) sorted by relevance

/netbsd-current/external/lgpl3/gmp/dist/mpz/
H A Dout_str.c46 const char *num_to_text; local
52 num_to_text = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
56 num_to_text = "0123456789abcdefghijklmnopqrstuvwxyz";
97 str[i] = num_to_text[str[i]];
H A Dget_str.c48 const char *num_to_text; local
52 num_to_text = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
56 num_to_text = "0123456789abcdefghijklmnopqrstuvwxyz";
101 res_str[i] = num_to_text[(int) res_str[i]];
/netbsd-current/external/lgpl3/gmp/dist/mpf/
H A Dget_str.c132 const char *num_to_text; local
141 num_to_text = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
145 num_to_text = "0123456789abcdefghijklmnopqrstuvwxyz";
298 dp[i] = num_to_text[tstr[i]];
/netbsd-current/external/lgpl3/gmp/dist/printf/
H A Ddoprntf.c168 const char *num_to_text = (p->base >= 0 local
197 s[len-1] = num_to_text[n];
/netbsd-current/external/lgpl3/mpfr/dist/tests/
H A Dtstrtofr.c25 /* The implicit \0 is useless, but we do not write num_to_text[62] otherwise
1468 const char *num_to_text; local
1480 num_to_text = base <= 36 ? num_to_text36 : num_to_text62;
1542 while ((d = s0[j]) == num_to_text[base - 1])
1545 s2[j+2] = d = *(strchr (num_to_text, d) + 1);
/netbsd-current/external/lgpl3/mpfr/dist/src/
H A Dvasprintf.c116 /* The implicit \0 is useless, but we do not write num_to_text[16]
118 static const char num_to_text[] = "0123456789abcdef"; variable
1162 str[0] = num_to_text [digit];
H A Dget_str.c30 /* The implicit \0 is useless, but we do not write num_to_text[62] otherwise
84 const char *num_to_text; local
104 num_to_text = (2 <= b0 && b0 <= 36) ? num_to_text36 : num_to_text62;
229 str[i] = num_to_text[(int) str1[i]]; /* str1[i] is an unsigned char */
2584 const char *num_to_text; local
2616 num_to_text = (2 <= b && b <= 36) ? num_to_text36 : num_to_text62;
2736 s[i] = num_to_text[(int) s[i]];

Completed in 281 milliseconds