Home
last modified time | relevance | path

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

/sys/kern/
Ddebug.c44 size_t ixc = ix + col; in Debug_PrintHex() local
45 if ((limit != 0 && ixc >= limit) || ixc >= length) { in Debug_PrintHex()
52 ixc += off; in Debug_PrintHex()
54 kprintf("%02X ", (unsigned char)data[ixc]); in Debug_PrintHex()
59 size_t ixc = ix + col; in Debug_PrintHex() local
60 if ((limit != 0 && ixc >= limit) || ixc >= length) { in Debug_PrintHex()
67 ixc += off; in Debug_PrintHex()
69 unsigned char c = (unsigned char)data[ixc]; in Debug_PrintHex()