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

12

/macosx-10.9.5/ipsec-258.100.1/ipsec-tools/libipsec/
H A Dpolicy_token.l69 hexdigit [0-9A-Fa-f]
89 hexpair {hexdigit}{hexdigit}
90 hexstring 0[xX]{hexdigit}+
/macosx-10.9.5/ipsec-258.100.1/ipsec-tools/setkey/
H A Dtoken.l91 hexdigit [0-9A-Fa-f]
101 hexstring 0[xX]{hexdigit}+
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/ADT/
H A DStringExtras.h23 /// hexdigit - Return the hexadecimal character for the
25 static inline char hexdigit(unsigned X, bool LowerCase = false) { function in namespace:llvm
49 *--BufPtr = hexdigit(Mod);
/macosx-10.9.5/llvmCore-3425.0.33/lib/Support/
H A Draw_ostream.cpp203 *this << hexdigit((c >> 4 & 0xF));
204 *this << hexdigit((c >> 0) & 0xF);
/macosx-10.9.5/llvmCore-3425.0.33/tools/macho-dump/
H A Dmacho-dump.cpp118 outs() << hexdigit((Data[i] >> 4) & 0xF, /*LowerCase=*/true);
119 outs() << hexdigit((Data[i] >> 0) & 0xF, /*LowerCase=*/true);
/macosx-10.9.5/llvmCore-3425.0.33/tools/llvm-objdump/
H A Dllvm-objdump.cpp441 outs() << hexdigit((Contents[addr + i] >> 4) & 0xF, true)
442 << hexdigit(Contents[addr + i] & 0xF, true);
/macosx-10.9.5/ntp-88/ntpd/
H A Drefclock_neoclock4x.c791 int hexdigit; local
797 hexdigit = isdigit((int)str[i]) ? toupper(str[i]) - '0' : toupper(str[i]) - 'A' + 10;
798 n = 16 * n + hexdigit;
/macosx-10.9.5/ruby-104/ruby/
H A Dutil.c44 static const char hexdigit[] = "0123456789abcdef0123456789ABCDEF"; local
49 while (len-- && *s && (tmp = strchr(hexdigit, *s))) {
51 retval |= (tmp - hexdigit) & 15;
1994 static const char hexdigit[] = "0123456789abcdef0123456789ABCDEF"; local
2000 if (!*++s || !(s1 = strchr(hexdigit, *s))) goto ret0;
2003 s1 = strchr(hexdigit, *s);
2007 adj += aadj * ((s1 - hexdigit) & 15);
2010 } while (*++s && (s1 = strchr(hexdigit, *s)));
2015 if (!*++s || !(s1 = strchr(hexdigit, *s))) goto ret0;
2022 for (; *s && (s1 = strchr(hexdigit, *
[all...]
/macosx-10.9.5/tcl-102/tcl/tcl/generic/
H A DtclBinary.c1185 static const char hexdigit[] = "0123456789abcdef";
1213 *dest++ = hexdigit[value & 0xf];
1222 *dest++ = hexdigit[(value >> 4) & 0xf];
1176 static const char hexdigit[] = "0123456789abcdef"; local
/macosx-10.9.5/tcl-102/tcl84/tcl/generic/
H A DtclBinary.c1174 static char hexdigit[] = "0123456789abcdef";
1202 *dest++ = hexdigit[value & 0xf];
1211 *dest++ = hexdigit[(value >> 4) & 0xf];
1165 static char hexdigit[] = "0123456789abcdef"; local
/macosx-10.9.5/tcpdump-56/tcpdump/
H A Dprint-esp.c401 static u_int hexdigit(netdissect_options *ndo, char hex) function
419 byte = (hexdigit(ndo, hexstring[0]) << 4) + hexdigit(ndo, hexstring[1]);
/macosx-10.9.5/llvmCore-3425.0.33/lib/VMCore/
H A DAsmWriter.cpp96 Out << '\\' << hexdigit(C >> 4) << hexdigit(C & 0x0F);
1348 Out << '\\' << hexdigit(Name[0] >> 4) << hexdigit(Name[0] & 0x0F);
1354 Out << '\\' << hexdigit(C >> 4) << hexdigit(C & 0x0F);
/macosx-10.9.5/ruby-104/ruby/enc/unicode/
H A Dname2ctype.h.blt26477 char uniname2ctype_pool_str1256[sizeof("hexdigit")];
27129 "hexdigit",
H A Dname2ctype.h26477 char uniname2ctype_pool_str1256[sizeof("hexdigit")];
27129 "hexdigit",
/macosx-10.9.5/llvmCore-3425.0.33/lib/MC/
H A DMCAssembler.cpp869 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF);
/macosx-10.9.5/ipsec-258.100.1/ipsec-tools/racoon/
H A Dcftoken.l127 hexdigit [0-9A-Fa-f]
146 hexstring 0x{hexdigit}+
/macosx-10.9.5/CPANInternal-140/PathTools/
H A Dppport.h3014 # define PL_hexdigit hexdigit
4575 * Perl_warner(). Also, 'hexdigit' was the former name of PL_hexdigit,
/macosx-10.9.5/CPANInternal-140/Unix-Getrusage/
H A Dppport.h2951 # define PL_hexdigit hexdigit
4509 * Perl_warner(). Also, 'hexdigit' was the former name of PL_hexdigit,
/macosx-10.9.5/CPANInternal-140/Unix-Getrusage-0.03/
H A Dppport.h2951 # define PL_hexdigit hexdigit
4509 * Perl_warner(). Also, 'hexdigit' was the former name of PL_hexdigit,
/macosx-10.9.5/CPANInternal-140/XML-LibXML/
H A Dppport.h3072 # define PL_hexdigit hexdigit
4635 * Perl_warner(). Also, 'hexdigit' was the former name of PL_hexdigit,
/macosx-10.9.5/CPANInternal-140/Params-Validate/
H A Dppport.h3862 # define PL_hexdigit hexdigit
5963 * Perl_warner(). Also, 'hexdigit' was the former name of PL_hexdigit,
/macosx-10.9.5/CPANInternal-140/Sub-Identify/
H A Dppport.h3864 # define PL_hexdigit hexdigit
6024 * Perl_warner(). Also, 'hexdigit' was the former name of PL_hexdigit,
/macosx-10.9.5/CPANInternal-140/Sub-Identify-0.04/
H A Dppport.h3864 # define PL_hexdigit hexdigit
6024 * Perl_warner(). Also, 'hexdigit' was the former name of PL_hexdigit,
/macosx-10.9.5/CPANInternal-140/YAML-Syck/
H A Dppport.h3862 # define PL_hexdigit hexdigit
5963 * Perl_warner(). Also, 'hexdigit' was the former name of PL_hexdigit,
/macosx-10.9.5/CPANInternal-140/DateTime/c/
H A Dppport.h4111 # define PL_hexdigit hexdigit
6373 * Perl_warner(). Also, 'hexdigit' was the former name of PL_hexdigit,

Completed in 531 milliseconds

12