| /freebsd-11-stable/usr.sbin/bluetooth/hcsecd/ |
| HD | lexer.l | 46 hexdigit [0-9a-fA-F] 47 hexbyte {hexdigit}{hexdigit}
|
| /freebsd-11-stable/usr.sbin/bluetooth/bthidd/ |
| HD | lexer.l | 53 hexdigit [0-9a-fA-F] 54 hexbyte {hexdigit}{hexdigit}?
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/ |
| HD | YAML.cpp | 63 OS << hexdigit(Byte >> 4) << hexdigit(Byte & 0xf); in writeAsHex()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/ |
| HD | StringExtras.cpp | 68 Out << '\\' << hexdigit(C >> 4) << hexdigit(C & 0x0F); in printEscapedString()
|
| HD | NativeFormatting.cpp | 156 *--CurPtr = hexdigit(x, !Upper); in write_hex()
|
| HD | raw_ostream.cpp | 190 *this << hexdigit((c >> 4 & 0xF)); in write_escaped() 191 *this << hexdigit((c >> 0) & 0xF); in write_escaped()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/ |
| HD | MCFragment.cpp | 356 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF); in dump() 380 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF); in dump()
|
| /freebsd-11-stable/usr.sbin/keyserv/ |
| HD | setkey.c | 440 hexdigit(val) in hexdigit() function 455 *hex++ = hexdigit(*bin >> 4); 456 *hex++ = hexdigit(*bin++ & 0xf);
|
| /freebsd-11-stable/lib/libipsec/ |
| HD | policy_token.l | 63 hexdigit [0-9A-Fa-f]
|
| /freebsd-11-stable/contrib/ipfilter/tools/ |
| HD | BNF.ipf | 72 hexstring = hexdigit [ hexstring ] . 78 hexdigit = digit | "a" | "b" | "c" | "d" | "e" | "f" .
|
| /freebsd-11-stable/contrib/ipfilter/ |
| HD | BNF | 73 hexstring = hexdigit [ hexstring ] . 79 hexdigit = digit | "a" | "b" | "c" | "d" | "e" | "f" .
|
| /freebsd-11-stable/sbin/setkey/ |
| HD | token.l | 73 hexdigit [0-9A-Fa-f]
|
| /freebsd-11-stable/usr.sbin/rrenumd/ |
| HD | lexer.l | 69 hexdigit [0-9A-Fa-f]
|
| /freebsd-11-stable/contrib/nvi/common/ |
| HD | key.c | 229 static const char hexdigit[] = "0123456789abcdef"; in v_key_name() local 317 sp->cname[2] = hexdigit[(ch & 0xf0) >> 4]; in v_key_name() 318 sp->cname[3] = hexdigit[ ch & 0x0f ]; in v_key_name()
|
| /freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
| HD | GDBRemoteClientBase.cpp | 142 m_continue_packet += llvm::hexdigit((signo / 16) % 16); in SendAsyncSignal() 143 m_continue_packet += llvm::hexdigit(signo % 16); in SendAsyncSignal()
|
| /freebsd-11-stable/contrib/tcpdump/ |
| HD | print-esp.c | 301 static u_int hexdigit(netdissect_options *ndo, char hex) in hexdigit() function 318 byte = (hexdigit(ndo, hexstring[0]) << 4) + hexdigit(ndo, hexstring[1]); in hex2byte()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/ |
| HD | StringExtras.h | 36 inline char hexdigit(unsigned X, bool LowerCase = false) { 132 *--BufPtr = hexdigit(Mod, LowerCase);
|
| /freebsd-11-stable/contrib/ntp/ntpd/ |
| HD | refclock_neoclock4x.c | 784 int hexdigit; in neol_hexatoi_len() local 790 …hexdigit = isdigit((unsigned char)str[i]) ? toupper((unsigned char)str[i]) - '0' : toupper((unsign… in neol_hexatoi_len() 791 n = 16 * n + hexdigit; in neol_hexatoi_len()
|
| /freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/ |
| HD | TextDiagnostic.cpp | 140 expandedCP.insert(expandedCP.begin()+3, llvm::hexdigit(c%16)); in printableTextForNextCharacter() 144 expandedCP.insert(expandedCP.begin()+3, llvm::hexdigit(0)); in printableTextForNextCharacter() 156 expandedByte[1] = llvm::hexdigit(byte / 16); in printableTextForNextCharacter() 157 expandedByte[2] = llvm::hexdigit(byte % 16); in printableTextForNextCharacter()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/ |
| HD | DWARFDebugFrame.cpp | 307 OS << ' ' << hexdigit(Byte >> 4) << hexdigit(Byte & 0xf); in dump()
|
| /freebsd-11-stable/tools/tools/net80211/wlaninject/ |
| HD | README | 67 That is, 010203... The first hexdigit is the type of the IE.
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/ |
| HD | AsmWriter.cpp | 3157 Out << '\\' << hexdigit(Name[0] >> 4) << hexdigit(Name[0] & 0x0F); in printMetadataIdentifier() 3164 Out << '\\' << hexdigit(C >> 4) << hexdigit(C & 0x0F); in printMetadataIdentifier()
|
| /freebsd-11-stable/etc/ |
| HD | network.subr | 1762 # hexdigit arg 1764 hexdigit()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objdump/ |
| HD | llvm-objdump.cpp | 1785 outs() << hexdigit((Contents[Addr + I] >> 4) & 0xF, true) in printSectionContents() 1786 << hexdigit(Contents[Addr + I] & 0xF, true); in printSectionContents()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/ |
| HD | Object.cpp | 172 *(It + I) = hexdigit(Mod, false); in utohexstr()
|