Symbol: hexdig
usr/src/cmd/cmd-inet/usr.bin/pppd/chap_ms.c
535
static const char hexdig[] = "0123456789ABCDEF";
usr/src/cmd/cmd-inet/usr.bin/pppd/chap_ms.c
573
*cp++ = hexdig[digest[i]>>4];
usr/src/cmd/cmd-inet/usr.bin/pppd/chap_ms.c
574
*cp++ = hexdig[digest[i]&15];
usr/src/cmd/ldap/common/fileurl.c
496
char *hexdig = "0123456789ABCDEF";
usr/src/cmd/ldap/common/fileurl.c
510
*p++ = hexdig[ 0x0F & ((*(unsigned char*)q) >> 4) ];
usr/src/cmd/ldap/common/fileurl.c
511
*p++ = hexdig[ 0x0F & *q ];
usr/src/lib/libldap5/sources/ldap/ber/bprint.c
42
static char hexdig[] = "0123456789abcdef";
usr/src/lib/libldap5/sources/ldap/ber/bprint.c
61
out[ i ] = hexdig[ ( *data & 0xf0 ) >> 4 ];
usr/src/lib/libldap5/sources/ldap/ber/bprint.c
62
out[ i+1 ] = hexdig[ *data & 0x0f ];
usr/src/lib/libldap5/sources/ldap/common/secutil.c
10
static char hexdig[] = "0123456789abcdef";
usr/src/lib/libldap5/sources/ldap/common/secutil.c
23
res[i] = hexdig[ ( *aString & 0xf0 ) >> 4 ];
usr/src/lib/libldap5/sources/ldap/common/secutil.c
24
res[i + 1] = hexdig[ *aString & 0x0f ];
usr/src/lib/libldap5/sources/ldap/common/tmplout.c
884
char *hexdig = "0123456789ABCDEF";
usr/src/lib/libldap5/sources/ldap/common/tmplout.c
892
*p++ = hexdig[ 0x0F & ((*(unsigned char*)q) >> 4) ];
usr/src/lib/libldap5/sources/ldap/common/tmplout.c
893
*p++ = hexdig[ 0x0F & *q ];
usr/src/lib/libsldap/common/ns_crypt.c
46
static char hexdig[] = "0123456789abcdef";
usr/src/lib/libsldap/common/ns_crypt.c
72
res[i] = hexdig[(*aString & 0xf0) >> 4];
usr/src/lib/libsldap/common/ns_crypt.c
73
res[i + 1] = hexdig[*aString & 0x0f];
usr/src/uts/intel/io/acpica/osl.c
1507
myu.octets[2] = (hexdig(np[3]) << 4) + hexdig(np[4]);
usr/src/uts/intel/io/acpica/osl.c
1508
myu.octets[3] = (hexdig(np[5]) << 4) + hexdig(np[6]);