Home
last modified time | relevance | path

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

/f-stack/dpdk/app/test-pmd/
H A Dcmdline.c2322 hexa_digit_to_value(char hexa_digit) in hexa_digit_to_value() argument
2324 if ((hexa_digit >= '0') && (hexa_digit <= '9')) in hexa_digit_to_value()
2325 return (uint8_t) (hexa_digit - '0'); in hexa_digit_to_value()
2326 if ((hexa_digit >= 'a') && (hexa_digit <= 'f')) in hexa_digit_to_value()
2327 return (uint8_t) ((hexa_digit - 'a') + 10); in hexa_digit_to_value()
2328 if ((hexa_digit >= 'A') && (hexa_digit <= 'F')) in hexa_digit_to_value()
2329 return (uint8_t) ((hexa_digit - 'A') + 10); in hexa_digit_to_value()