Lines Matching refs:c
60 # define hexval(c) \ argument
61 (c >= '0' && c <= '9' \
62 ? c - '0' \
63 : ({ int upp = toupper (c); \
202 hexval (char c) in hexval() argument
204 if (c >= '0' && c <= '9') in hexval()
205 return (c - '0'); in hexval()
206 else if (c >= 'a' && c <= 'z') in hexval()
207 return (c - 'a' + 10); in hexval()
208 else if (c >= 'A' && c <= 'Z') in hexval()
209 return (c - 'A' + 10); in hexval()