Home
last modified time | relevance | path

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

/freebsd/usr.sbin/bluetooth/bthidd/
H A Dlexer.l52 hexdigit [0-9a-fA-F]
53 hexbyte {hexdigit}{hexdigit}?
54 hexword {hexdigit}{hexdigit}?{hexdigit}?{hexdigit}?
/freebsd/usr.sbin/bluetooth/hcsecd/
H A Dlexer.l45 hexdigit [0-9a-fA-F]
46 hexbyte {hexdigit}{hexdigit}
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCFragment.cpp155 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 DYAML.cpp62 OS << hexdigit(Byte >> 4) << hexdigit(Byte & 0xf); in writeAsHex()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DStringExtras.cpp69 Out << '\\' << hexdigit(C >> 4) << hexdigit(C & 0x0F); in printEscapedString()
H A DNativeFormatting.cpp158 *--CurPtr = hexdigit(x, !Upper); in write_hex()
H A Draw_ostream.cpp195 *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 DStringExtras.h37 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 Dpolicy_token.l64 hexdigit [0-9A-Fa-f]
/freebsd/sbin/setkey/
H A Dtoken.l76 hexdigit [0-9A-Fa-f]
86 hexstring 0[xX]{hexdigit}+
/freebsd/usr.sbin/rrenumd/
H A Dlexer.l69 hexdigit [0-9A-Fa-f]
/freebsd/share/examples/ipfilter/
H A DBNF73 hexstring = hexdigit [ hexstring ] .
79 hexdigit = digit | "a" | "b" | "c" | "d" | "e" | "f" .
/freebsd/contrib/nvi/common/
H A Dkey.c219 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 Dprint-esp.c355 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 DGDBRemoteClientBase.cpp167 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 Drefclock_neoclock4x.c784 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 Dcompile.c383 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 DTextDiagnostic.cpp159 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 DREADME66 That is, 010203... The first hexdigit is the type of the IE.
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugFrame.cpp983 OS << ' ' << hexdigit(Byte >> 4) << hexdigit(Byte & 0xf); in dump()
/freebsd/libexec/rc/
H A Dnetwork.subr1717 # hexdigit arg
1719 hexdigit()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DAsmWriter.cpp3644 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 Dllvm-objdump.cpp2819 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 DELFObject.cpp218 *(It + I) = hexdigit(Mod, false); in toHexStr()