Home
last modified time | relevance | path

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

/qemu/system/
H A Dqtest.c250 static int hex2nib(char ch) in hex2nib() function
673 data[i] = hex2nib(words[3][i * 2 + 2]) << 4; in qtest_process_command()
674 data[i] |= hex2nib(words[3][i * 2 + 3]); in qtest_process_command()
/qemu/tests/qtest/
H A Dlibqtest.c1158 static int hex2nib(char ch) in hex2nib() function
1185 ptr[i] = hex2nib(args[1][2 + (i * 2)]) << 4; in qtest_memread()
1186 ptr[i] |= hex2nib(args[1][2 + (i * 2) + 1]); in qtest_memread()