Searched refs:hexdig (Results 1 - 12 of 12) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/libatalk/util/
H A Dbprint.c13 static const char hexdig[] = "0123456789ABCDEF"; variable
42 xout[ (i*3) ] = hexdig[ ( *data & 0xf0 ) >> 4 ];
43 xout[ (i*3) + 1 ] = hexdig[ *data & 0x0f ];
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/bin/adv1tov2/
H A Dadv1tov2.c34 static const char hexdig[] = "0123456789abcdef";
45 *u++ = hexdig[(*m & 0xf0) >> 4];
46 *u++ = hexdig[*m & 0x0f];
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/bin/megatron/
H A Dnad.c31 static char hexdig[] = "0123456789abcdef"; variable
49 *u++ = hexdig[ ( *m & 0xf0 ) >> 4 ];
50 *u++ = hexdig[ *m & 0x0f ];
169 *out++ = hexdig[ ( p & 0xf0 ) >> 4 ];
170 p = hexdig[ p & 0x0f ];
257 *out++ = hexdig[ ( p & 0xf0 ) >> 4 ];
258 p = hexdig[ p & 0x0f ];
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/asn1/
H A Da_strex.c271 static const char hexdig[] = "0123456789ABCDEF"; local
278 hextmp[0] = hexdig[*p >> 4];
279 hextmp[1] = hexdig[*p & 0xf];
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/sys/netatalk/
H A Dddp_input.c363 char hexdig[] = "0123456789ABCDEF"; variable
384 xout[ (i*3) ] = hexdig[ ( *data & 0xf0 ) >> 4 ];
385 xout[ (i*3) + 1 ] = hexdig[ *data & 0x0f ];
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/asn1/
H A Da_strex.c228 static const char hexdig[] = "0123456789ABCDEF"; local
235 hextmp[0] = hexdig[*p >> 4];
236 hextmp[1] = hexdig[*p & 0xf];
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/asn1/
H A Da_strex.c271 static const char hexdig[] = "0123456789ABCDEF"; local
278 hextmp[0] = hexdig[*p >> 4];
279 hextmp[1] = hexdig[*p & 0xf];
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/etc/afpd/
H A Ddesktop.c554 static const char hexdig[] = "0123456789abcdef"; variable
567 *p++ = hexdig[ ( creator[ 0 ] & 0xf0 ) >> 4 ];
568 *p++ = hexdig[ creator[ 0 ] & 0x0f ];
577 *p++ = hexdig[ ( creator[ i ] & 0xf0 ) >> 4 ];
578 *p++ = hexdig[ creator[ i ] & 0x0f ];
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/x509v3/
H A Dv3_utl.c368 const static char hexdig[] = "0123456789ABCDEF"; local
376 *q++ = hexdig[(*p >> 4) & 0xf];
377 *q++ = hexdig[*p & 0xf];
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/x509v3/
H A Dv3_utl.c412 const static char hexdig[] = "0123456789ABCDEF"; local
421 *q++ = hexdig[(*p >> 4) & 0xf];
422 *q++ = hexdig[*p & 0xf];
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/x509v3/
H A Dv3_utl.c412 const static char hexdig[] = "0123456789ABCDEF"; local
421 *q++ = hexdig[(*p >> 4) & 0xf];
422 *q++ = hexdig[*p & 0xf];
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/libatalk/unicode/
H A Dcharcnv.c76 static char hexdig[] = "0123456789abcdef"; variable
980 *outbuf++ = hexdig[(buf[i] >> 4) & 0x0f];
981 *outbuf++ = hexdig[buf[i] & 0x0f];

Completed in 203 milliseconds