HomeSort by: relevance | last modified time | path
    Searched defs:hexdigit (Results 1 - 9 of 9) sorted by relevancy

  /src/external/gpl2/gettext/dist/gettext-tools/src/
write-tcl.c 57 static const char hexdigit[] = "0123456789abcdef"; local
95 hexdigit[(uc >> 12) & 0x0f], hexdigit[(uc >> 8) & 0x0f],
96 hexdigit[(uc >> 4) & 0x0f], hexdigit[uc & 0x0f]);
write-properties.c 59 static const char hexdigit[] = "0123456789abcdef"; local
100 hexdigit[(uc >> 12) & 0x0f], hexdigit[(uc >> 8) & 0x0f],
101 hexdigit[(uc >> 4) & 0x0f], hexdigit[uc & 0x0f]);
110 hexdigit[(uc1 >> 12) & 0x0f], hexdigit[(uc1 >> 8) & 0x0f],
111 hexdigit[(uc1 >> 4) & 0x0f], hexdigit[uc1 & 0x0f]);
114 hexdigit[(uc2 >> 12) & 0x0f], hexdigit[(uc2 >> 8) & 0x0f]
129 static const char hexdigit[] = "0123456789abcdef"; local
    [all...]
write-csharp.c 133 static const char hexdigit[] = "0123456789abcdef"; local
149 *b++ = hexdigit[(uc >> 28) & 0x0f];
150 *b++ = hexdigit[(uc >> 24) & 0x0f];
151 *b++ = hexdigit[(uc >> 20) & 0x0f];
152 *b++ = hexdigit[(uc >> 16) & 0x0f];
153 *b++ = hexdigit[(uc >> 12) & 0x0f];
154 *b++ = hexdigit[(uc >> 8) & 0x0f];
155 *b++ = hexdigit[(uc >> 4) & 0x0f];
156 *b++ = hexdigit[uc & 0x0f];
163 *b++ = hexdigit[(uc >> 12) & 0x0f]
181 static const char hexdigit[] = "0123456789abcdef"; local
    [all...]
write-java.c 338 static const char hexdigit[] = "0123456789abcdef"; local
361 hexdigit[(uc >> 12) & 0x0f], hexdigit[(uc >> 8) & 0x0f],
362 hexdigit[(uc >> 4) & 0x0f], hexdigit[uc & 0x0f]);
370 hexdigit[(uc1 >> 12) & 0x0f], hexdigit[(uc1 >> 8) & 0x0f],
371 hexdigit[(uc1 >> 4) & 0x0f], hexdigit[uc1 & 0x0f]);
373 hexdigit[(uc2 >> 12) & 0x0f], hexdigit[(uc2 >> 8) & 0x0f]
    [all...]
  /src/external/apache2/llvm/dist/clang/tools/clang-diff/
ClangDiff.cpp 114 static char hexdigit(int N) { return N &= 0xf, N + (N < 10 ? '0' : 'a' - 10); } function
336 OS << R"(\u00)" << hexdigit(C >> 4) << hexdigit(C);
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
StringExtras.h 34 /// hexdigit - Return the hexadecimal character for the
36 inline char hexdigit(unsigned X, bool LowerCase = false) { function in namespace:llvm
152 *--BufPtr = hexdigit(Mod, LowerCase);
  /src/external/bsd/nvi/dist/common/
key.c 244 static const char hexdigit[] = "0123456789abcdef"; local
306 sp->cname[2] = hexdigit[(ch & 0xf0) >> 4];
307 sp->cname[3] = hexdigit[ ch & 0x0f ];
  /src/external/bsd/tcpdump/dist/
print-esp.c 360 static u_int hexdigit(netdissect_options *ndo, char hex) function
378 byte = (hexdigit(ndo, hexstring[0]) << 4) + hexdigit(ndo, hexstring[1]);
  /src/external/bsd/ntp/dist/ntpd/
refclock_neoclock4x.c 788 int hexdigit; local
794 hexdigit = isdigit((unsigned char)str[i]) ? toupper((unsigned char)str[i]) - '0' : toupper((unsigned char)str[i]) - 'A' + 10;
795 n = 16 * n + hexdigit;

Completed in 31 milliseconds