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

  /src/external/gpl2/gettext/dist/gettext-tools/src/
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...]
msgunfmt.cs 127 String hexdigit = "0123456789abcdef";
140 b.Append(hexdigit[(uc >> 28) & 0x0f]);
141 b.Append(hexdigit[(uc >> 24) & 0x0f]);
142 b.Append(hexdigit[(uc >> 20) & 0x0f]);
143 b.Append(hexdigit[(uc >> 16) & 0x0f]);
144 b.Append(hexdigit[(uc >> 12) & 0x0f]);
145 b.Append(hexdigit[(uc >> 8) & 0x0f]);
146 b.Append(hexdigit[(uc >> 4) & 0x0f]);
147 b.Append(hexdigit[uc & 0x0f]);
154 b.Append(hexdigit[(uc >> 12) & 0x0f])
    [all...]
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-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/gpl2/gettext/dist/gettext-runtime/intl-csharp/
intl.cs 129 String hexdigit = "0123456789abcdef";
142 b.Append(hexdigit[(uc >> 28) & 0x0f]);
143 b.Append(hexdigit[(uc >> 24) & 0x0f]);
144 b.Append(hexdigit[(uc >> 20) & 0x0f]);
145 b.Append(hexdigit[(uc >> 16) & 0x0f]);
146 b.Append(hexdigit[(uc >> 12) & 0x0f]);
147 b.Append(hexdigit[(uc >> 8) & 0x0f]);
148 b.Append(hexdigit[(uc >> 4) & 0x0f]);
149 b.Append(hexdigit[uc & 0x0f]);
156 b.Append(hexdigit[(uc >> 12) & 0x0f])
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
YAML.cpp 63 OS << hexdigit(Byte >> 4) << hexdigit(Byte & 0xf);
  /src/external/apache2/llvm/dist/llvm/lib/Support/
StringExtras.cpp 70 Out << '\\' << hexdigit(C >> 4) << hexdigit(C & 0x0F);
NativeFormatting.cpp 155 *--CurPtr = hexdigit(x, !Upper);
raw_ostream.cpp 188 *this << hexdigit((c >> 4 & 0xF));
189 *this << hexdigit((c >> 0) & 0xF);
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCFragment.cpp 387 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF);
411 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF);
  /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/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/apache2/llvm/dist/clang/lib/Frontend/
TextDiagnostic.cpp 140 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);
  /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;
  /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/lib/DebugInfo/DWARF/
DWARFDebugFrame.cpp 927 OS << ' ' << hexdigit(Byte >> 4) << hexdigit(Byte & 0xf);
  /src/external/apache2/llvm/dist/llvm/lib/IR/
AsmWriter.cpp 3442 Out << '\\' << hexdigit(Name[0] >> 4) << hexdigit(Name[0] & 0x0F);
3449 Out << '\\' << hexdigit(C >> 4) << hexdigit(C & 0x0F);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
llvm-objdump.cpp 1816 outs() << hexdigit((Contents[Addr + I] >> 4) & 0xF, true)
1817 << hexdigit(Contents[Addr + I] & 0xF, true);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ELF/
Object.cpp 201 *(It + I) = hexdigit(Mod, false);

Completed in 286 milliseconds