Home
last modified time | relevance | path

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

/linux-3.4.99/drivers/infiniband/hw/nes/
Dnes_utils.c913 int num_hex; in nes_dump_mem() local
930 num_hex = 0; in nes_dump_mem()
934 hex_buf[num_hex++] = '-'; in nes_dump_mem()
935 hex_buf[num_hex++] = ' '; in nes_dump_mem()
942 hex_buf[num_hex++] = xlate[((*ptr & 0xf0) >> 4)]; in nes_dump_mem()
943 hex_buf[num_hex++] = xlate[*ptr & 0x0f]; in nes_dump_mem()
944 hex_buf[num_hex++] = ' '; in nes_dump_mem()
953 num_hex = 0; in nes_dump_mem()
961 hex_buf[num_hex++] = ' '; in nes_dump_mem()
962 hex_buf[num_hex++] = ' '; in nes_dump_mem()
[all …]
/linux-3.4.99/tools/perf/util/
Dparse-events.l54 num_hex 0x[a-fA-F0-9]+
111 {num_hex} { return value(16); }