Searched defs:hex_char (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/lib/nsswitch/ldap/common/
H A Dldap_utils.c266 hex_char(int n) function
287 *filter_name++ = hex_char(c >> 4);
288 *filter_name++ = hex_char(c & 0xf);
/illumos-gate/usr/src/lib/nsswitch/ad/common/
H A Dad_common.c177 #define hex_char(n) "0123456789abcdef"[n & 0xf] macro
195 *filter_name++ = hex_char(c >> 4);
196 *filter_name++ = hex_char(c & 0xf);
/illumos-gate/usr/src/cmd/idmap/idmapd/
H A Dnldaputils.c183 hex_char(int n) function
233 *q++ = hex_char(*p >> 4);
234 *q++ = hex_char(*p & 0xf);

Completed in 59 milliseconds