OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
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 25 milliseconds