Searched refs:hexdigits (Results 1 - 10 of 10) sorted by relevance

/macosx-10.9.5/securityd-55199.3/securityd_service/securitydservicectrl/
H A Dmain.c23 static const char hexdigits[] = "0123456789abcdef"; local
25 *s++ = hexdigits[buf[i]>>4];
26 *s++ = hexdigits[buf[i]&0xf];
/macosx-10.9.5/bind9-45.100/bind9/contrib/sdb/ldap/
H A Dldapdb.c390 static const char hexdigits[] = "0123456789abcdef"; local
397 if ((p = strchr(hexdigits, tolower(s[1]))) == NULL)
399 d1 = p - hexdigits;
400 if ((p = strchr(hexdigits, tolower(s[2]))) == NULL)
402 d2 = p - hexdigits;
/macosx-10.9.5/bind9-45.100/bind9/lib/dns/
H A Dopenssldh_link.c593 static const char hexdigits[] = "0123456789abcdef"; local
603 s = strchr(hexdigits, tolower((unsigned char)str[i]));
605 high = s - hexdigits;
607 s = strchr(hexdigits, tolower((unsigned char)str[i + 1]));
609 low = s - hexdigits;
H A Drdata.c257 static const char hexdigits[] = "0123456789abcdef"; variable
1344 if ((s = strchr(hexdigits, c)) == NULL)
1346 return (s - hexdigits);
H A Dtkey.c737 static char hexdigits[16] = { local
754 randomtext[j++] = hexdigits[val >> 4];
755 randomtext[j++] = hexdigits[val & 0xF];
/macosx-10.9.5/Heimdal-323.92.1/kadmin/
H A Dutil.c694 static char hexdigits[] = "0123456789abcdef"; local
697 p = strchr (hexdigits, tolower((unsigned char)c));
701 return (int)(p - hexdigits);
/macosx-10.9.5/xnu-2422.115.4/bsd/vfs/
H A Dvfs_utfconv.c163 const char hexdigits[16] = { variable
602 ucs_ch = hexdigits[byte >> 4];
604 ucs_ch = hexdigits[byte & 0x0F];
/macosx-10.9.5/ruby-104/ruby/
H A Dpack.c1317 static const char hexdigits[] = "0123456789abcdef"; local
1509 *t++ = hexdigits[bits & 15];
1531 *t++ = hexdigits[(bits >> 4) & 15];
/macosx-10.9.5/vim-53/runtime/syntax/
H A Ddtml.vim56 syn keyword dtmlAttribute has_local_roles hasChildNodes hasProperty HEAD header hexdigits HTML contained
/macosx-10.9.5/Heimdal-323.92.1/lib/sqlite/
H A Dsqlite3.c84891 static const char hexdigits[] = { local
[all...]

Completed in 686 milliseconds