Searched refs:hexdigit (Results 1 - 22 of 22) sorted by relevance

/freebsd-current/usr.sbin/bluetooth/bthidd/
H A Dlexer.l52 hexdigit [0-9a-fA-F]
53 hexbyte {hexdigit}{hexdigit}?
54 hexword {hexdigit}{hexdigit}?{hexdigit}?{hexdigit}?
/freebsd-current/usr.sbin/bluetooth/hcsecd/
H A Dlexer.l45 hexdigit [0-9a-fA-F]
46 hexbyte {hexdigit}{hexdigit}
/freebsd-current/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DYAML.cpp62 OS << hexdigit(Byte >> 4) << hexdigit(Byte & 0xf);
/freebsd-current/lib/libipsec/
H A Dpolicy_token.l64 hexdigit [0-9A-Fa-f]
83 hexpair {hexdigit}{hexdigit}
84 hexstring 0[xX]{hexdigit}+
/freebsd-current/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}
/freebsd-current/contrib/llvm-project/llvm/lib/Support/
H A DStringExtras.cpp69 Out << '\\' << hexdigit(C >> 4) << hexdigit(C & 0x0F);
H A DNativeFormatting.cpp158 *--CurPtr = hexdigit(x, !Upper);
H A Draw_ostream.cpp195 *this << hexdigit((c >> 4) & 0xF);
196 *this << hexdigit((c >> 0) & 0xF);
/freebsd-current/sbin/setkey/
H A Dtoken.l76 hexdigit [0-9A-Fa-f]
86 hexstring 0[xX]{hexdigit}+
/freebsd-current/contrib/llvm-project/llvm/lib/MC/
H A DMCFragment.cpp391 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF);
415 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF);
/freebsd-current/usr.sbin/keyserv/
H A Dsetkey.c401 hexdigit(int val) function
412 *hex++ = hexdigit(*bin >> 4);
413 *hex++ = hexdigit(*bin++ & 0xf);
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringExtras.h35 /// hexdigit - Return the hexadecimal character for the
37 inline char hexdigit(unsigned X, bool LowerCase = false) { function in namespace:llvm
174 *--BufPtr = hexdigit(Mod, LowerCase);
190 Output[i * 2 ] = hexdigit(c >> 4, LowerCase);
191 Output[i * 2 + 1] = hexdigit(c & 15, LowerCase);
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteClientBase.cpp167 m_continue_packet += llvm::hexdigit((signo / 16) % 16);
168 m_continue_packet += llvm::hexdigit(signo % 16);
/freebsd-current/contrib/tcpdump/
H A Dprint-esp.c365 static u_int hexdigit(netdissect_options *ndo, char hex) function
383 byte = (hexdigit(ndo, hexstring[0]) << 4) + hexdigit(ndo, hexstring[1]);
/freebsd-current/contrib/nvi/common/
H A Dkey.c219 static const char hexdigit[] = "0123456789abcdef"; local
316 sp->cname[2] = hexdigit[(ch & 0xf0) >> 4];
317 sp->cname[3] = hexdigit[ ch & 0x0f ];
/freebsd-current/contrib/llvm-project/clang/lib/Frontend/
H A DTextDiagnostic.cpp150 Str.insert(Str.begin() + 3, llvm::hexdigit(C % 16));
154 Str.insert(Str.begin() + 3, llvm::hexdigit(0));
161 ExpandedByte[1] = llvm::hexdigit(Byte / 16);
162 ExpandedByte[2] = llvm::hexdigit(Byte % 16);
/freebsd-current/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-current/usr.bin/sed/
H A Dcompile.c383 hexdigit(char c) function
396 if (!hexdigit(in[0]))
399 if (hexdigit(in[1]))
/freebsd-current/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugFrame.cpp974 OS << ' ' << hexdigit(Byte >> 4) << hexdigit(Byte & 0xf);
/freebsd-current/contrib/llvm-project/llvm/lib/IR/
H A DAsmWriter.cpp3542 Out << '\\' << hexdigit(FirstC >> 4) << hexdigit(FirstC & 0x0F);
3548 Out << '\\' << hexdigit(C >> 4) << hexdigit(C & 0x0F);
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp2671 outs() << hexdigit((Contents[Addr + I] >> 4) & 0xF, true)
2672 << hexdigit(Contents[Addr + I] & 0xF, true);
/freebsd-current/contrib/llvm-project/llvm/lib/ObjCopy/ELF/
H A DELFObject.cpp199 *(It + I) = hexdigit(Mod, false);

Completed in 204 milliseconds