Searched defs:hexdig (Results 1 - 8 of 8) sorted by relevance

/osnet-11/usr/src/lib/libldap4/ber/
H A Dbprint.c25 static char hexdig[] = "0123456789abcdef"; local
42 out[ i ] = hexdig[ ( *data & 0xf0 ) >> 4 ];
43 out[ i+1 ] = hexdig[ *data & 0x0f ];
/osnet-11/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 ];
/osnet-11/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 ];
/osnet-11/usr/src/lib/libldap4/sec/
H A Dsecutil.c17 static char hexdig[] = "0123456789abcdef"; variable
30 res[i] = hexdig[ ( *aString & 0xf0 ) >> 4 ];
31 res[i + 1] = hexdig[ *aString & 0x0f ];
/osnet-11/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 ];
/osnet-11/usr/src/lib/libsldap/common/
H A Dns_crypt.c51 static char hexdig[] = "0123456789abcdef"; variable
77 res[i] = hexdig[(*aString & 0xf0) >> 4];
78 res[i + 1] = hexdig[*aString & 0x0f];
/osnet-11/usr/src/lib/libldap4/common/
H A Dtmplout.c950 char *hexdig = "0123456789ABCDEF"; local
958 *p++ = hexdig[ *q >> 4 ];
959 *p++ = hexdig[ *q & 0x0F ];

Completed in 226 milliseconds