HomeSort by relevance Sort by last modified time
    Searched refs:is_hex_digit (Results 1 - 2 of 2) sorted by null

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

Completed in 139 milliseconds