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/memcheck/tests/
unit_libcbase.c
314
CHECK(
is_hex_digit
('0', &x) && 0 == x );
315
CHECK(
is_hex_digit
('1', &x) && 1 == x );
316
CHECK(
is_hex_digit
('9', &x) && 9 == x );
317
CHECK(
is_hex_digit
('a', &x) && 10 == x );
318
CHECK(
is_hex_digit
('f', &x) && 15 == x );
319
CHECK(
is_hex_digit
('A', &x) && 10 == x );
320
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 3545 milliseconds