Home
last modified time | relevance | path

Searched refs:hexdigit (Results 1 – 9 of 9) sorted by relevance

/dragonfly/sys/libkern/
H A Dhexncpy.c44 char hexdigit[] = "0123456789abcdef"; in hexncpy() local
57 *outb++ = hexdigit[*inb >> 4]; in hexncpy()
58 *outb++ = hexdigit[*inb++ & 0xf]; in hexncpy()
/dragonfly/usr.sbin/bthcid/
H A Dlexer.l46 hexdigit [0-9a-fA-F]
47 hexbyte {hexdigit}{hexdigit}
/dragonfly/usr.sbin/keyserv/
H A Dsetkey.c435 hexdigit(int val) in hexdigit() function
446 *hex++ = hexdigit(*bin >> 4); in bin2hex()
447 *hex++ = hexdigit(*bin++ & 0xf); in bin2hex()
/dragonfly/usr.sbin/rrenumd/
H A Dlexer.l73 hexdigit [0-9A-Fa-f]
/dragonfly/contrib/nvi2/common/
H A Dkey.c218 static const char hexdigit[] = "0123456789abcdef"; in v_key_name() local
306 sp->cname[2] = hexdigit[(ch & 0xf0) >> 4]; in v_key_name()
307 sp->cname[3] = hexdigit[ ch & 0x0f ]; in v_key_name()
/dragonfly/contrib/tcpdump/
H A Dprint-esp.c362 static u_int hexdigit(netdissect_options *ndo, char hex) in hexdigit() function
380 byte = (hexdigit(ndo, hexstring[0]) << 4) + hexdigit(ndo, hexstring[1]); in hex2byte()
/dragonfly/usr.bin/sed/
H A Dcompile.c386 hexdigit(char c) in hexdigit() function
399 if (!hexdigit(in[0])) in dohex()
402 if (hexdigit(in[1])) in dohex()
/dragonfly/tools/tools/net80211/wlaninject/
H A DREADME67 That is, 010203... The first hexdigit is the type of the IE.
/dragonfly/etc/
H A Dnetwork.subr670 hexdigit()
692 dig=`hexdigit $((${val} & 15))`
696 dig=`hexdigit $((${val} & 15))`