Home
last modified time | relevance | path

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

/rk3399_rockchip-uboot/include/
H A Dhexdump.h19 extern const char hex_asc[];
20 #define hex_asc_lo(x) hex_asc[((x) & 0x0f)]
21 #define hex_asc_hi(x) hex_asc[((x) & 0xf0) >> 4]
/rk3399_rockchip-uboot/lib/
H A Dtiny-printf.c65 static const char hex_asc[] = "0123456789abcdef"; variable
66 #define hex_asc_lo(x) hex_asc[((x) & 0x0f)]
67 #define hex_asc_hi(x) hex_asc[((x) & 0xf0) >> 4]
H A Dhexdump.c18 const char hex_asc[] = "0123456789abcdef"; variable