Searched refs:hexdigit (Results 1 - 21 of 21) sorted by path

/freebsd-11-stable/contrib/ntp/ntpd/
H A Drefclock_neoclock4x.c784 int hexdigit; local
790 hexdigit = isdigit((unsigned char)str[i]) ? toupper((unsigned char)str[i]) - '0' : toupper((unsigned char)str[i]) - 'A' + 10;
791 n = 16 * n + hexdigit;
/freebsd-11-stable/contrib/nvi/common/
H A Dkey.c229 static const char hexdigit[] = "0123456789abcdef"; local
317 sp->cname[2] = hexdigit[(ch & 0xf0) >> 4];
318 sp->cname[3] = hexdigit[ ch & 0x0f ];
/freebsd-11-stable/lib/libipsec/
H A Dpolicy_token.l63 hexdigit [0-9A-Fa-f]
82 hexpair {hexdigit}{hexdigit}
83 hexstring 0[xX]{hexdigit}+
/freebsd-11-stable/sbin/setkey/
H A Dtoken.l73 hexdigit [0-9A-Fa-f]
83 hexstring 0[xX]{hexdigit}+
/freebsd-11-stable/usr.sbin/bluetooth/bthidd/
H A Dlexer.l53 hexdigit [0-9a-fA-F]
54 hexbyte {hexdigit}{hexdigit}?
/freebsd-11-stable/usr.sbin/bluetooth/hcsecd/
H A Dlexer.l46 hexdigit [0-9a-fA-F]
47 hexbyte {hexdigit}{hexdigit}
/freebsd-11-stable/usr.sbin/keyserv/
H A Dsetkey.c440 hexdigit(val) function
455 *hex++ = hexdigit(*bin >> 4);
456 *hex++ = hexdigit(*bin++ & 0xf);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DTextDiagnostic.cpp140 expandedCP.insert(expandedCP.begin()+3, llvm::hexdigit(c%16));
144 expandedCP.insert(expandedCP.begin()+3, llvm::hexdigit(0));
156 expandedByte[1] = llvm::hexdigit(byte / 16);
157 expandedByte[2] = llvm::hexdigit(byte % 16);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteClientBase.cpp142 m_continue_packet += llvm::hexdigit((signo / 16) % 16);
143 m_continue_packet += llvm::hexdigit(signo % 16);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringExtras.h34 /// hexdigit - Return the hexadecimal character for the
36 inline char hexdigit(unsigned X, bool LowerCase = false) { function in namespace:llvm
132 *--BufPtr = hexdigit(Mod, LowerCase);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugFrame.cpp307 OS << ' ' << hexdigit(Byte >> 4) << hexdigit(Byte & 0xf);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DAsmWriter.cpp3157 Out << '\\' << hexdigit(Name[0] >> 4) << hexdigit(Name[0] & 0x0F);
3164 Out << '\\' << hexdigit(C >> 4) << hexdigit(C & 0x0F);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCFragment.cpp356 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF);
380 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DYAML.cpp63 OS << hexdigit(Byte >> 4) << hexdigit(Byte & 0xf);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DNativeFormatting.cpp156 *--CurPtr = hexdigit(x, !Upper);
H A DStringExtras.cpp68 Out << '\\' << hexdigit(C >> 4) << hexdigit(C & 0x0F);
H A Draw_ostream.cpp190 *this << hexdigit((c >> 4 & 0xF));
191 *this << hexdigit((c >> 0) & 0xF);
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/
H A DObject.cpp172 *(It + I) = hexdigit(Mod, false);
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp1785 outs() << hexdigit((Contents[Addr + I] >> 4) & 0xF, true)
1786 << hexdigit(Contents[Addr + I] & 0xF, true);
/freebsd-11-stable/contrib/tcpdump/
H A Dprint-esp.c301 static u_int hexdigit(netdissect_options *ndo, char hex) function
318 byte = (hexdigit(ndo, hexstring[0]) << 4) + hexdigit(ndo, hexstring[1]);
/freebsd-11-stable/usr.sbin/rrenumd/
H A Dlexer.l69 hexdigit [0-9A-Fa-f]
82 hexpair {hexdigit}{hexdigit}
83 hexstring 0[xX]{hexdigit}+
86 ipv6addr {hexdigit}{0,4}({colon}{hexdigit}{0,4}){2,7}

Completed in 245 milliseconds