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

/freebsd-10.2-release/crypto/heimdal/lib/roken/
H A Dhex.c40 static const char hexchar[16] = "0123456789ABCDEF"; variable
47 for (p = hexchar; *p; p++)
49 return p - hexchar;
73 p[i * 2] = hexchar[(*q >> 4) & 0xf];
74 p[i * 2 + 1] = hexchar[*q & 0xf];
/freebsd-10.2-release/sys/contrib/octeon-sdk/
H A Dcvmx-debug-uart.c215 char hexchar[] = "0123456789ABCDEF"; local
216 str[0] = hexchar[(t>>4)];
217 str[1] = hexchar[t&0xF];
/freebsd-10.2-release/contrib/unbound/util/
H A Dlog.c341 const char* hexchar = "0123456789ABCDEF"; local
356 buf[j*2] = hexchar[ data8[i+j] >> 4 ];
357 buf[j*2 + 1] = hexchar[ data8[i+j] & 0xF ];
/freebsd-10.2-release/contrib/texinfo/makeinfo/
H A Dhtml.c698 char *hexchar = xmalloc (6 * sizeof (char));
699 sprintf (hexchar, "_00%x", (unsigned char) oldname[i]);
700 strcat (filename, hexchar);
701 free (hexchar);
693 char *hexchar = xmalloc (6 * sizeof (char)); local
/freebsd-10.2-release/contrib/ntp/ntpd/
H A Drefclock_irig.c203 static char hexchar[] = "0123456789abcdef"; variable
885 up->timecode[--up->xptr] = hexchar[temp & 0xf];
886 up->timecode[--up->xptr] = hexchar[(temp >> 5) &
H A Drefclock_chu.c433 static char hexchar[] = "0123456789abcdef_*="; variable
1148 code[2 * i] = hexchar[up->cbuf[i] & 0xf];
1149 code[2 * i + 1] = hexchar[(up->cbuf[i] >>
1472 code[i] = hexchar[k];
/freebsd-10.2-release/crypto/heimdal/lib/hdb/
H A Dhdb-ldap.c800 const static char hexchar[] = "0123456789ABCDEF"; variable
821 (*quoted)[i++] = hexchar[(unquoted[0] >> 4) & 0xf];
822 (*quoted)[i++] = hexchar[(unquoted[0] ) & 0xf];

Completed in 180 milliseconds