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

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/
H A Dnumeric.c262 const char *hexdigit; local
281 hexdigit = strchr((char *) PL_hexdigit, *s);
282 if (hexdigit) {
289 value = (value << 4) | ((hexdigit - PL_hexdigit) & 15);
306 value_nv += (NV)((hexdigit - PL_hexdigit) & 15);
310 && (hexdigit = strchr((char *) PL_hexdigit, s[1])))
/osnet-11/usr/src/grub/grub-0.97/stage2/
H A Dfsys_ext2fs.c448 static char hexdigit[] = "0123456789abcdef"; local
454 printf ("%c", hexdigit[*i >> 4]);
455 printf ("%c", hexdigit[*i % 16]);
H A Dbuiltins.c1034 static char hexdigit[] = "0123456789ABCDEF";
1061 *c++ = hexdigit[b >> 4];
1062 *c++ = hexdigit[b & 0xf];
1024 static char hexdigit[] = "0123456789ABCDEF"; local
/osnet-11/usr/src/grub/grub2/grub-core/net/
H A Dbootp.c383 hexdigit (grub_uint8_t val) function
491 val[2 * i] = hexdigit (ptr[i] >> 4);
492 val[2 * i + 1] = hexdigit (ptr[i] & 0xf);
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/unicore/
H A DCanonical.pl210 hexdigit => 'HexDigit',

Completed in 432 milliseconds