Home
last modified time | relevance | path

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

/linux-4.4.14/lib/
Dhexdump.c18 const char hex_asc_upper[] = "0123456789ABCDEF"; variable
19 EXPORT_SYMBOL(hex_asc_upper);
Dvsprintf.c432 tmp[i++] = hex_asc_upper[num] | locase; in number()
440 tmp[i++] = (hex_asc_upper[((unsigned char)num) & mask] | locase); in number()
/linux-4.4.14/include/linux/
Dkernel.h506 extern const char hex_asc_upper[];
507 #define hex_asc_upper_lo(x) hex_asc_upper[((x) & 0x0f)]
508 #define hex_asc_upper_hi(x) hex_asc_upper[((x) & 0xf0) >> 4]
/linux-4.4.14/drivers/net/can/
Dslcan.c281 *endpos-- = hex_asc_upper[id & 0xf]; in slc_encaps()