Home | History | Annotate | Download | only in Clients

Lines Matching refs:HexVal

977 #define HexVal(X) ( ((X) >= '0' && (X) <= '9') ? ((X) - '0'     ) :  \
981 #define HexPair(P) ((HexVal((P)[0]) << 4) | HexVal((P)[1]))