Home
last modified time | relevance | path

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

/dpdk/app/test-pmd/
H A Dcmdline.c2342 hexa_digit_to_value(char hexa_digit) in hexa_digit_to_value() argument
2344 if ((hexa_digit >= '0') && (hexa_digit <= '9')) in hexa_digit_to_value()
2345 return (uint8_t) (hexa_digit - '0'); in hexa_digit_to_value()
2346 if ((hexa_digit >= 'a') && (hexa_digit <= 'f')) in hexa_digit_to_value()
2347 return (uint8_t) ((hexa_digit - 'a') + 10); in hexa_digit_to_value()
2348 if ((hexa_digit >= 'A') && (hexa_digit <= 'F')) in hexa_digit_to_value()
2349 return (uint8_t) ((hexa_digit - 'A') + 10); in hexa_digit_to_value()