Home
last modified time | relevance | path

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

/third_party/f2fs-tools/tools/debug_tools/
Dfsck_debug.c44 static const unsigned char hex_ascii[] = "0123456789abcdef"; in hex_info_dump() local
54 line[k++] = hex_ascii[(i >> HEX_SHIFT_12) & HEX_MASK]; in hex_info_dump()
55 line[k++] = hex_ascii[(i >> HEX_SHIFT_8) & HEX_MASK]; in hex_info_dump()
56 line[k++] = hex_ascii[(i >> HEX_SHIFT_4) & HEX_MASK]; in hex_info_dump()
57 line[k++] = hex_ascii[i & HEX_MASK]; in hex_info_dump()
61 line[k++] = hex_ascii[(buf[i + j] >> HEX_SHIFT_4) & HEX_MASK]; in hex_info_dump()
62 line[k++] = hex_ascii[(buf[i + j] & HEX_MASK)]; in hex_info_dump()