Home
last modified time | relevance | path

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

/freebsd-11-stable/usr.sbin/bluetooth/hcsecd/
HDlexer.l46 hexdigit [0-9a-fA-F]
47 hexbyte {hexdigit}{hexdigit}
/freebsd-11-stable/usr.sbin/bluetooth/bthidd/
HDlexer.l53 hexdigit [0-9a-fA-F]
54 hexbyte {hexdigit}{hexdigit}?
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
HDYAML.cpp63 OS << hexdigit(Byte >> 4) << hexdigit(Byte & 0xf); in writeAsHex()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
HDStringExtras.cpp68 Out << '\\' << hexdigit(C >> 4) << hexdigit(C & 0x0F); in printEscapedString()
HDNativeFormatting.cpp156 *--CurPtr = hexdigit(x, !Upper); in write_hex()
HDraw_ostream.cpp190 *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/
HDMCFragment.cpp356 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/
HDsetkey.c440 hexdigit(val) in hexdigit() function
455 *hex++ = hexdigit(*bin >> 4);
456 *hex++ = hexdigit(*bin++ & 0xf);
/freebsd-11-stable/lib/libipsec/
HDpolicy_token.l63 hexdigit [0-9A-Fa-f]
/freebsd-11-stable/contrib/ipfilter/tools/
HDBNF.ipf72 hexstring = hexdigit [ hexstring ] .
78 hexdigit = digit | "a" | "b" | "c" | "d" | "e" | "f" .
/freebsd-11-stable/contrib/ipfilter/
HDBNF73 hexstring = hexdigit [ hexstring ] .
79 hexdigit = digit | "a" | "b" | "c" | "d" | "e" | "f" .
/freebsd-11-stable/sbin/setkey/
HDtoken.l73 hexdigit [0-9A-Fa-f]
/freebsd-11-stable/usr.sbin/rrenumd/
HDlexer.l69 hexdigit [0-9A-Fa-f]
/freebsd-11-stable/contrib/nvi/common/
HDkey.c229 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/
HDGDBRemoteClientBase.cpp142 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/
HDprint-esp.c301 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/
HDStringExtras.h36 inline char hexdigit(unsigned X, bool LowerCase = false) {
132 *--BufPtr = hexdigit(Mod, LowerCase);
/freebsd-11-stable/contrib/ntp/ntpd/
HDrefclock_neoclock4x.c784 int hexdigit; in neol_hexatoi_len() local
790hexdigit = 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/
HDTextDiagnostic.cpp140 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/
HDDWARFDebugFrame.cpp307 OS << ' ' << hexdigit(Byte >> 4) << hexdigit(Byte & 0xf); in dump()
/freebsd-11-stable/tools/tools/net80211/wlaninject/
HDREADME67 That is, 010203... The first hexdigit is the type of the IE.
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
HDAsmWriter.cpp3157 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/
HDnetwork.subr1762 # hexdigit arg
1764 hexdigit()
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
HDllvm-objdump.cpp1785 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/
HDObject.cpp172 *(It + I) = hexdigit(Mod, false); in utohexstr()