tag | line | file | source code |
hex | 102 | arch/mips/kernel/gdb-stub.c | static int hex(unsigned char ch); |
hex | 174 | arch/mips/kernel/gdb-stub.c | xmitcsum = hex(getDebugChar() & 0x7f) << 4; |
hex | 175 | arch/mips/kernel/gdb-stub.c | xmitcsum |= hex(getDebugChar() & 0x7f); |
hex | 284 | arch/mips/kernel/gdb-stub.c | ch = hex(*buf++) << 4; |
hex | 285 | arch/mips/kernel/gdb-stub.c | ch |= hex(*buf++); |
hex | 396 | arch/mips/kernel/gdb-stub.c | hexValue = hex(**ptr); |
hex | 262 | arch/sparc/kernel/sparc-stub.c | xmitcsum = hex(getDebugChar() & 0x7f) << 4; |
hex | 263 | arch/sparc/kernel/sparc-stub.c | xmitcsum |= hex(getDebugChar() & 0x7f); |
hex | 344 | arch/sparc/kernel/sparc-stub.c | ch = hex(*buf++) << 4; |
hex | 345 | arch/sparc/kernel/sparc-stub.c | ch |= hex(*buf++); |
hex | 428 | arch/sparc/kernel/sparc-stub.c | hexValue = hex(**ptr); |
hex | 2656 | drivers/block/ide.c | static const char *hex = "0123456789abcdef"; |
hex | 2679 | drivers/block/ide.c | while ((i = stridx(hex, *++s)) >= 0) |
hex | 3265 | drivers/net/ppp.c | static char hex[] = "0123456789ABCDEF"; |
hex | 3269 | drivers/net/ppp.c | *out++ = hex[(next_ch >> 4) & 0x0F]; |
hex | 3270 | drivers/net/ppp.c | *out++ = hex[next_ch & 0x0F]; |
hex | 71 | scripts/ksymoops.cc | is >> ::hex >> address_; |
hex | 85 | scripts/ksymoops.cc | os << ::hex << address_ + offset_ << ' ' << '<' << name_; |
hex | 87 | scripts/ksymoops.cc | os << '+' << ::hex << offset_ << '/' << ::hex << extent_; |
hex | 283 | scripts/ksymoops.cc | cin >> ::hex >> eip_addr; |
hex | 285 | scripts/ksymoops.cc | cin >> ::hex >> eip_addr; |
hex | 304 | scripts/ksymoops.cc | cout << ::hex << address; |
hex | 316 | scripts/ksymoops.cc | cin >> ::hex >> c; |