Searched defs:radix (Results 1 - 4 of 4) sorted by relevance

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/
H A Dnumeric.c481 Scan and skip for a numeric decimal separator (radix).
491 char* radix = SvPV(PL_numeric_radix_sv, len); local
492 if (*sp + len <= send && memEQ(*sp, radix, len)) {
497 /* always try "." if numeric radix didn't match because
555 /* next must be digit or the radix separator or beginning of infinity */
647 while (s < send && isDIGIT(*s)) /* optional digits after the radix */
653 /* no digits before the radix means we need digits after it */
/osnet-11/usr/src/lib/cfgadm_plugins/usb/common/
H A Dcfga_configfile.c176 register int radix; local
199 radix = 16;
202 radix = 8;
205 radix = 10;
209 switch (radix) {
/osnet-11/usr/src/lib/libdevinfo/
H A Ddevinfo_devperm.c761 int radix; local
784 radix = 16;
787 radix = 8;
790 radix = 10;
793 switch (radix) {
/osnet-11/usr/src/common/mpi/
H A Dmpi.c67 function. Since a number n in radix r takes up about log_r(n)
92 /* Value to digit maps for radix conversion */
2636 stream 'ofp'. Output is generated using the internal radix.
2737 /* {{{ mp_read_radix(mp, str, radix) */
2740 mp_read_radix(mp, str, radix)
2748 mp_err mp_read_radix(mp_int *mp, const char *str, int radix) argument
2754 ARGCHK(mp != NULL && str != NULL && radix >= 2 && radix <= MAX_RADIX,
2761 (s_mp_tovalue(str[ix], radix) < 0) &&
2775 while((val = s_mp_tovalue(str[ix], radix)) >
2794 int radix = default_radix; local
2835 mp_radix_size(mp_int *mp, int radix) argument
2852 mp_toradix(mp_int *mp, char *str, int radix) argument
[all...]

Completed in 36 milliseconds