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

/illumos-gate/usr/src/lib/libldap5/sources/ldap/common/
H A Dsecutil.c12 static char hexdig[] = "0123456789abcdef"; variable
25 res[i] = hexdig[ ( *aString & 0xf0 ) >> 4 ];
26 res[i + 1] = hexdig[ *aString & 0x0f ];
H A Dtmplout.c888 char *hexdig = "0123456789ABCDEF"; local
896 *p++ = hexdig[ 0x0F & ((*(unsigned char*)q) >> 4) ];
897 *p++ = hexdig[ 0x0F & *q ];
/illumos-gate/usr/src/lib/libldap5/sources/ldap/ber/
H A Dbprint.c44 static char hexdig[] = "0123456789abcdef"; local
63 out[ i ] = hexdig[ ( *data & 0xf0 ) >> 4 ];
64 out[ i+1 ] = hexdig[ *data & 0x0f ];
/illumos-gate/usr/src/lib/libsldap/common/
H A Dns_crypt.c46 static char hexdig[] = "0123456789abcdef"; variable
72 res[i] = hexdig[(*aString & 0xf0) >> 4];
73 res[i + 1] = hexdig[*aString & 0x0f];
/illumos-gate/usr/src/cmd/ldap/common/
H A Dfileurl.c497 char *hexdig = "0123456789ABCDEF"; local
511 *p++ = hexdig[ 0x0F & ((*(unsigned char*)q) >> 4) ];
512 *p++ = hexdig[ 0x0F & *q ];
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppd/
H A Dchap_ms.c542 static const char hexdig[] = "0123456789ABCDEF"; local
580 *cp++ = hexdig[digest[i]>>4];
581 *cp++ = hexdig[digest[i]&15];
/illumos-gate/usr/src/uts/intel/io/acpica/
H A Dosl.c1400 hexdig(int c) function
1432 myu.octets[2] = (hexdig(np[3]) << 4) + hexdig(np[4]);
1433 myu.octets[3] = (hexdig(np[5]) << 4) + hexdig(np[6]);

Completed in 67 milliseconds