Home
last modified time | relevance | path

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

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