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

  /external/valgrind/main/memcheck/tests/
unit_libcbase.c 292 CHECK( is_hex_digit('0', &x) && 0 == x );
293 CHECK( is_hex_digit('1', &x) && 1 == x );
294 CHECK( is_hex_digit('9', &x) && 9 == x );
295 CHECK( is_hex_digit('a', &x) && 10 == x );
296 CHECK( is_hex_digit('f', &x) && 15 == x );
297 CHECK( is_hex_digit('A', &x) && 10 == x );
298 CHECK( is_hex_digit('F', &x) && 15 == x );
  /external/valgrind/main/coregrind/
m_libcbase.c 59 static Bool is_hex_digit(Char c, Long* digit) function
109 && is_hex_digit( *(str+2), &digit )) {
113 while (is_hex_digit(*str, &digit)) {

Completed in 71 milliseconds