Home
last modified time | relevance | path

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

/external/valgrind/memcheck/tests/
Dunit_libcbase.c317 CHECK( is_hex_digit('0', &x) && 0 == x ); in test_is_hex_digit()
318 CHECK( is_hex_digit('1', &x) && 1 == x ); in test_is_hex_digit()
319 CHECK( is_hex_digit('9', &x) && 9 == x ); in test_is_hex_digit()
320 CHECK( is_hex_digit('a', &x) && 10 == x ); in test_is_hex_digit()
321 CHECK( is_hex_digit('f', &x) && 15 == x ); in test_is_hex_digit()
322 CHECK( is_hex_digit('A', &x) && 10 == x ); in test_is_hex_digit()
323 CHECK( is_hex_digit('F', &x) && 15 == x ); in test_is_hex_digit()
/external/valgrind/coregrind/
Dm_libcbase.c87 static Bool is_hex_digit(HChar c, Long* digit) in is_hex_digit() function
164 && is_hex_digit( *(str+2), &digit )) { in VG_()
168 while (is_hex_digit(*str, &digit)) { in VG_()
198 && is_hex_digit( *(str+2), &digit )) { in VG_()
202 while (is_hex_digit(*str, &digit)) { in VG_()