HomeSort by relevance Sort by last modified time
    Searched refs:hexdigit (Results 1 - 25 of 47) sorted by null

1 2

  /external/llvm/lib/ObjectYAML/
YAML.cpp 60 OS << hexdigit(Byte >> 4) << hexdigit(Byte & 0xf);
  /external/ipsec-tools/src/libipsec/
policy_token.l 72 hexdigit [0-9A-Fa-f]
92 hexpair {hexdigit}{hexdigit}
93 hexstring 0[xX]{hexdigit}+
  /external/llvm/lib/Support/
ScopedPrinter.cpp 40 OS << hexdigit((Data[addr + i] >> 4) & 0xF, false)
41 << hexdigit(Data[addr + i] & 0xF, false);
raw_ostream.cpp 175 *--CurPtr = hexdigit(x, /*LowerCase*/true);
207 *this << hexdigit((c >> 4 & 0xF));
208 *this << hexdigit((c >> 0) & 0xF);
426 *--CurPtr = hexdigit(x, !FN.Upper);
  /external/syslinux/core/fs/pxe/
urlparse.c 153 static int hexdigit(char c) function
184 x = hexdigit(p[0]);
186 y = hexdigit(p[1]);
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
StringExtras.h 28 /// hexdigit - Return the hexadecimal character for the
30 static inline char hexdigit(unsigned X, bool LowerCase = false) { function in namespace:llvm
54 *--BufPtr = hexdigit(Mod);
  /external/llvm/include/llvm/ADT/
StringExtras.h 24 /// hexdigit - Return the hexadecimal character for the
26 static inline char hexdigit(unsigned X, bool LowerCase = false) { function in namespace:llvm
55 *--BufPtr = hexdigit(Mod, LowerCase);
  /external/vboot_reference/host/arch/arm/lib/
crossystem_arch.c 352 char hexdigit[3]; local
357 hexdigit[2] = '\0';
359 hexdigit[0] = hexstring[i * 2];
360 hexdigit[1] = hexstring[i * 2 + 1];
361 vnc->raw[i] = strtol(hexdigit, NULL, 16);
  /external/llvm/lib/MC/
MCFragment.cpp 363 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF);
387 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF);
  /external/tcpdump/
print-esp.c 198 static u_int hexdigit(netdissect_options *ndo, char hex) function
216 byte = (hexdigit(ndo, hexstring[0]) << 4) + hexdigit(ndo, hexstring[1]);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
unicodeobject.c 3040 static const char *hexdigit = "0123456789abcdef"; local
3323 static const char *hexdigit = "0123456789abcdef"; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
unicodeobject.c 2992 static const char *hexdigit = "0123456789abcdef"; local
3275 static const char *hexdigit = "0123456789abcdef"; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
cPickle.c 1320 static const char *hexdigit = "0123456789abcdef"; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
cPickle.c 1289 static const char *hexdigit = "0123456789abcdef"; local
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Support/
raw_ostream.cpp 202 *this << hexdigit((c >> 4 & 0xF));
203 *this << hexdigit((c >> 0) & 0xF);
  /external/swiftshader/third_party/LLVM/tools/macho-dump/
macho-dump.cpp 118 outs() << hexdigit((Data[i] >> 4) & 0xF, /*LowerCase=*/true);
119 outs() << hexdigit((Data[i] >> 0) & 0xF, /*LowerCase=*/true);
  /external/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);
    [all...]
  /external/llvm/lib/DebugInfo/DWARF/
DWARFDebugFrame.cpp 251 OS << ' ' << hexdigit(Byte >> 4) << hexdigit(Byte & 0xf);
  /external/swiftshader/third_party/LLVM/lib/VMCore/
AsmWriter.cpp 75 Out << '\\' << hexdigit(C >> 4) << hexdigit(C & 0x0F);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/
MCAssembler.cpp 874 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF);
  /external/llvm/lib/IR/
AsmWriter.cpp 347 Out << '\\' << hexdigit(C >> 4) << hexdigit(C & 0x0F);
    [all...]
  /external/valgrind/coregrind/m_aspacemgr/
aspacemgr-linux.c 3236 static Int hexdigit ( HChar c ) function
    [all...]
  /external/llvm/tools/llvm-objdump/
llvm-objdump.cpp     [all...]
  /external/ipsec-tools/src/racoon/
cftoken.l 114 hexdigit [0-9A-Fa-f]
133 hexstring 0x{hexdigit}+
  /external/swiftshader/third_party/LLVM/lib/Target/CBackend/
CBackend.cpp     [all...]

Completed in 2039 milliseconds

1 2