Searched refs:PL_hexdigit (Results 1 - 5 of 5) sorted by relevance

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/
H A Dnumeric.c281 hexdigit = strchr((char *) PL_hexdigit, *s);
289 value = (value << 4) | ((hexdigit - PL_hexdigit) & 15);
306 value_nv += (NV)((hexdigit - PL_hexdigit) & 15);
310 && (hexdigit = strchr((char *) PL_hexdigit, s[1])))
H A Dperlapi.h1007 #undef PL_hexdigit
1008 #define PL_hexdigit (*Perl_Ghexdigit_ptr(NULL))
H A Dpp_pack.c773 *str++ = PL_hexdigit[bits & 15];
783 *str++ = PL_hexdigit[(bits >> 4) & 15];
H A Dembedvar.h1440 #define PL_hexdigit (PL_Vars.Ghexdigit) macro
1457 #define PL_Ghexdigit PL_hexdigit
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Socket/
H A DSocket.xs120 if (base == 16 && (s=strchr(PL_hexdigit,c))) {
122 ((s - PL_hexdigit) & 15);

Completed in 88 milliseconds