/freebsd/usr.sbin/bluetooth/bthidd/ |
H A D | lexer.l | 52 hexdigit [0-9a-fA-F] 53 hexbyte {hexdigit}{hexdigit}? 54 hexword {hexdigit}{hexdigit}?{hexdigit}?{hexdigit}?
|
/freebsd/usr.sbin/bluetooth/hcsecd/ |
H A D | lexer.l | 45 hexdigit [0-9a-fA-F] 46 hexbyte {hexdigit}{hexdigit}
|
/freebsd/contrib/llvm-project/llvm/lib/MC/ |
H A D | MCFragment.cpp | 155 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF); in dump() 179 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF); in dump()
|
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/ |
H A D | YAML.cpp | 62 OS << hexdigit(Byte >> 4) << hexdigit(Byte & 0xf); in writeAsHex()
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | StringExtras.cpp | 69 Out << '\\' << hexdigit(C >> 4) << hexdigit(C & 0x0F); in printEscapedString()
|
H A D | NativeFormatting.cpp | 158 *--CurPtr = hexdigit(x, !Upper); in write_hex()
|
H A D | raw_ostream.cpp | 195 *this << hexdigit((c >> 4) & 0xF); in write_escaped() 196 *this << hexdigit((c >> 0) & 0xF); in write_escaped()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | StringExtras.h | 37 inline char hexdigit(unsigned X, bool LowerCase = false) { 174 *--BufPtr = hexdigit(Mod, LowerCase); 190 Output[i * 2 ] = hexdigit(c >> 4, LowerCase); in toHex() 191 Output[i * 2 + 1] = hexdigit(c & 15, LowerCase); in toHex()
|
/freebsd/lib/libipsec/ |
H A D | policy_token.l | 64 hexdigit [0-9A-Fa-f]
|
/freebsd/sbin/setkey/ |
H A D | token.l | 76 hexdigit [0-9A-Fa-f] 86 hexstring 0[xX]{hexdigit}+
|
/freebsd/usr.sbin/rrenumd/ |
H A D | lexer.l | 69 hexdigit [0-9A-Fa-f]
|
/freebsd/share/examples/ipfilter/ |
H A D | BNF | 73 hexstring = hexdigit [ hexstring ] . 79 hexdigit = digit | "a" | "b" | "c" | "d" | "e" | "f" .
|
/freebsd/contrib/nvi/common/ |
H A D | key.c | 219 static const char hexdigit[] = "0123456789abcdef"; in v_key_name() local 316 sp->cname[2] = hexdigit[(ch & 0xf0) >> 4]; in v_key_name() 317 sp->cname[3] = hexdigit[ ch & 0x0f ]; in v_key_name()
|
/freebsd/contrib/tcpdump/ |
H A D | print-esp.c | 355 static u_int hexdigit(netdissect_options *ndo, char hex) in hexdigit() function 373 byte = (hexdigit(ndo, hexstring[0]) << 4) + hexdigit(ndo, hexstring[1]); in hex2byte()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
H A D | GDBRemoteClientBase.cpp | 167 m_continue_packet += llvm::hexdigit((signo / 16) % 16); in SendAsyncSignal() 168 m_continue_packet += llvm::hexdigit(signo % 16); in SendAsyncSignal()
|
/freebsd/contrib/ntp/ntpd/ |
H A D | 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((unsigned char)str[i]) - 'A' + 10; in neol_hexatoi_len() 791 n = 16 * n + hexdigit; in neol_hexatoi_len()
|
/freebsd/usr.bin/sed/ |
H A D | compile.c | 383 hexdigit(char c) in hexdigit() function 396 if (!hexdigit(in[0])) in dohex() 399 if (hexdigit(in[1])) in dohex()
|
/freebsd/contrib/llvm-project/clang/lib/Frontend/ |
H A D | TextDiagnostic.cpp | 159 Str.insert(Str.begin() + 3, llvm::hexdigit(C % 16)); in printableTextForNextCharacter() 163 Str.insert(Str.begin() + 3, llvm::hexdigit(0)); in printableTextForNextCharacter() 170 ExpandedByte[1] = llvm::hexdigit(Byte / 16); in printableTextForNextCharacter() 171 ExpandedByte[2] = llvm::hexdigit(Byte % 16); in printableTextForNextCharacter()
|
/freebsd/tools/tools/net80211/wlaninject/ |
H A D | README | 66 That is, 010203... The first hexdigit is the type of the IE.
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFDebugFrame.cpp | 983 OS << ' ' << hexdigit(Byte >> 4) << hexdigit(Byte & 0xf); in dump()
|
/freebsd/libexec/rc/ |
H A D | network.subr | 1717 # hexdigit arg 1719 hexdigit()
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | AsmWriter.cpp | 3644 Out << '\\' << hexdigit(FirstC >> 4) << hexdigit(FirstC & 0x0F); in printMetadataIdentifier() 3650 Out << '\\' << hexdigit(C >> 4) << hexdigit(C & 0x0F); in printMetadataIdentifier()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/ |
H A D | llvm-objdump.cpp | 2819 outs() << hexdigit((Contents[Addr + I] >> 4) & 0xF, true) in printSectionContents() 2820 << hexdigit(Contents[Addr + I] & 0xF, true); in printSectionContents()
|
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/ |
H A D | ELFObject.cpp | 218 *(It + I) = hexdigit(Mod, false); in toHexStr()
|