taglinefilesource code
hex102arch/mips/kernel/gdb-stub.cstatic int hex(unsigned char ch);
hex174arch/mips/kernel/gdb-stub.cxmitcsum = hex(getDebugChar() & 0x7f) << 4;
hex175arch/mips/kernel/gdb-stub.cxmitcsum |= hex(getDebugChar() & 0x7f);
hex284arch/mips/kernel/gdb-stub.cch = hex(*buf++) << 4;
hex285arch/mips/kernel/gdb-stub.cch |= hex(*buf++);
hex396arch/mips/kernel/gdb-stub.chexValue = hex(**ptr);
hex258arch/sparc/kernel/sparc-stub.cxmitcsum = hex(getDebugChar() & 0x7f) << 4;
hex259arch/sparc/kernel/sparc-stub.cxmitcsum |= hex(getDebugChar() & 0x7f);
hex340arch/sparc/kernel/sparc-stub.cch = hex(*buf++) << 4;
hex341arch/sparc/kernel/sparc-stub.cch |= hex(*buf++);
hex419arch/sparc/kernel/sparc-stub.chexValue = hex(**ptr);
hex2446drivers/block/ide.cstatic const char *hex = "0123456789abcdef";
hex2469drivers/block/ide.cwhile ((i = stridx(hex, *++s)) >= 0)
hex3383drivers/net/ppp.cstatic char hex[] = "0123456789ABCDEF";
hex3387drivers/net/ppp.c*out++ = hex[(next_ch >> 4) & 0x0F];
hex3388drivers/net/ppp.c*out++ = hex[next_ch & 0x0F];
hex71scripts/ksymoops.ccis >> ::hex >> address_;
hex85scripts/ksymoops.ccos << ::hex << address_ + offset_ << ' ' << '<' << name_;
hex87scripts/ksymoops.ccos << '+' << ::hex << offset_ << '/' << ::hex << extent_;
hex283scripts/ksymoops.cccin >> ::hex >> eip_addr;
hex285scripts/ksymoops.cccin >> ::hex >> eip_addr;
hex304scripts/ksymoops.cccout << ::hex << address;
hex315scripts/ksymoops.cccin >> ::hex >> c;