Searched refs:is_hex_digit (Results 1 - 2 of 2) sorted by relevance

/external/valgrind/main/memcheck/tests/
H A Dunit_libcbase.c294 CHECK( is_hex_digit('0', &x) && 0 == x );
295 CHECK( is_hex_digit('1', &x) && 1 == x );
296 CHECK( is_hex_digit('9', &x) && 9 == x );
297 CHECK( is_hex_digit('a', &x) && 10 == x );
298 CHECK( is_hex_digit('f', &x) && 15 == x );
299 CHECK( is_hex_digit('A', &x) && 10 == x );
300 CHECK( is_hex_digit('F', &x) && 15 == x );
/external/valgrind/main/coregrind/
H A Dm_libcbase.c59 static Bool is_hex_digit(HChar c, Long* digit) function
134 && is_hex_digit( *(str+2), &digit )) {
138 while (is_hex_digit(*str, &digit)) {
167 && is_hex_digit( *(str+2), &digit )) {
171 while (is_hex_digit(*str, &digit)) {

Completed in 139 milliseconds