Searched refs:hextoint (Results 1 - 4 of 4) sorted by relevance

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/netatalk-2.2.0/etc/afpd/
H A Dmangle.c24 #define hextoint( c ) ( isdigit( c ) ? c - '0' : c + 10 - 'A' ) macro
161 id = (id *16) + hextoint(*t);
H A Dappl.c431 #define hextoint( c ) ( isdigit( c ) ? c - '0' : c + 10 - 'a' ) macro
445 h = hextoint( *u ) << 4;
447 h |= hextoint( *u );
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/netatalk-2.2.0/bin/megatron/
H A Dnad.c66 #define hextoint( c ) ( isdigit( c ) ? c - '0' : c + 10 - 'a' ) macro
80 h = hextoint(*u) << 4;
82 h |= hextoint(*u);
213 p = hextoint( *in ) << 4;
215 p |= hextoint( *in );
299 p = hextoint( *in ) << 4;
301 p |= hextoint( *in );
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/netatalk-2.2.0/libatalk/unicode/
H A Dcharcnv.c77 #define hextoint( c ) ( isdigit( c ) ? c - '0' : c + 10 - 'a' ) macro
837 h[hlen++] = (hextoint(inbuf[1]) << 4) | hextoint(inbuf[2]);

Completed in 165 milliseconds