/external/syslinux/core/fs/pxe/ |
D | urlparse.c | 153 static int hexdigit(char c) in hexdigit() function 184 x = hexdigit(p[0]); in url_unescape() 186 y = hexdigit(p[1]); in url_unescape()
|
/external/llvm/lib/ObjectYAML/ |
D | YAML.cpp | 60 OS << hexdigit(Byte >> 4) << hexdigit(Byte & 0xf); in writeAsHex()
|
/external/llvm/lib/Support/ |
D | ScopedPrinter.cpp | 40 OS << hexdigit((Data[addr + i] >> 4) & 0xF, false) in printBinaryImpl() 41 << hexdigit(Data[addr + i] & 0xF, false); in printBinaryImpl()
|
D | raw_ostream.cpp | 175 *--CurPtr = hexdigit(x, /*LowerCase*/true); in write_hex() 207 *this << hexdigit((c >> 4 & 0xF)); in write_escaped() 208 *this << hexdigit((c >> 0) & 0xF); in write_escaped() 426 *--CurPtr = hexdigit(x, !FN.Upper); in operator <<()
|
/external/vboot_reference/host/arch/arm/lib/ |
D | crossystem_arch.c | 352 char hexdigit[3]; in VbReadNvStorage_mosys() local 357 hexdigit[2] = '\0'; in VbReadNvStorage_mosys() 359 hexdigit[0] = hexstring[i * 2]; in VbReadNvStorage_mosys() 360 hexdigit[1] = hexstring[i * 2 + 1]; in VbReadNvStorage_mosys() 361 vnc->raw[i] = strtol(hexdigit, NULL, 16); in VbReadNvStorage_mosys()
|
/external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
D | StringExtras.h | 30 static inline char hexdigit(unsigned X, bool LowerCase = false) { 54 *--BufPtr = hexdigit(Mod); in utohex_buffer()
|
/external/llvm/lib/MC/ |
D | MCFragment.cpp | 363 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF); in dump() 387 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF); in dump()
|
/external/llvm/include/llvm/ADT/ |
D | StringExtras.h | 26 static inline char hexdigit(unsigned X, bool LowerCase = false) { 55 *--BufPtr = hexdigit(Mod, LowerCase);
|
/external/ipsec-tools/src/libipsec/ |
D | policy_token.l | 72 hexdigit [0-9A-Fa-f]
|
/external/tcpdump/ |
D | print-esp.c | 198 static u_int hexdigit(netdissect_options *ndo, char hex) in hexdigit() function 216 byte = (hexdigit(ndo, hexstring[0]) << 4) + hexdigit(ndo, hexstring[1]); in hex2byte()
|
/external/ipsec-tools/src/racoon/ |
D | cftoken.l | 114 hexdigit [0-9A-Fa-f]
|
/external/swiftshader/third_party/LLVM/tools/macho-dump/ |
D | macho-dump.cpp | 118 outs() << hexdigit((Data[i] >> 4) & 0xF, /*LowerCase=*/true); in DumpSectionData() 119 outs() << hexdigit((Data[i] >> 0) & 0xF, /*LowerCase=*/true); in DumpSectionData()
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
D | raw_ostream.cpp | 202 *this << hexdigit((c >> 4 & 0xF)); in write_escaped() 203 *this << hexdigit((c >> 0) & 0xF); in write_escaped()
|
/external/clang/lib/Frontend/ |
D | TextDiagnostic.cpp | 140 expandedCP.insert(expandedCP.begin()+3, llvm::hexdigit(c%16)); in printableTextForNextCharacter() 144 expandedCP.insert(expandedCP.begin()+3, llvm::hexdigit(0)); in printableTextForNextCharacter() 156 expandedByte[1] = llvm::hexdigit(byte / 16); in printableTextForNextCharacter() 157 expandedByte[2] = llvm::hexdigit(byte % 16); in printableTextForNextCharacter()
|
/external/swiftshader/third_party/LLVM/lib/VMCore/ |
D | AsmWriter.cpp | 75 Out << '\\' << hexdigit(C >> 4) << hexdigit(C & 0x0F); in PrintEscapedString() 1291 Out << '\\' << hexdigit(Name[0] >> 4) << hexdigit(Name[0] & 0x0F); in printNamedMDNode() 1297 Out << '\\' << hexdigit(C >> 4) << hexdigit(C & 0x0F); in printNamedMDNode()
|
/external/llvm/lib/DebugInfo/DWARF/ |
D | DWARFDebugFrame.cpp | 251 OS << ' ' << hexdigit(Byte >> 4) << hexdigit(Byte & 0xf); in dumpHeader()
|
/external/swiftshader/third_party/LLVM/lib/MC/ |
D | MCAssembler.cpp | 874 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF); in dump()
|
/external/llvm/lib/IR/ |
D | AsmWriter.cpp | 347 Out << '\\' << hexdigit(C >> 4) << hexdigit(C & 0x0F); in PrintEscapedString() 2333 Out << '\\' << hexdigit(Name[0] >> 4) << hexdigit(Name[0] & 0x0F); in printMetadataIdentifier() 2340 Out << '\\' << hexdigit(C >> 4) << hexdigit(C & 0x0F); in printMetadataIdentifier()
|
/external/valgrind/coregrind/m_aspacemgr/ |
D | aspacemgr-linux.c | 3236 static Int hexdigit ( HChar c ) in hexdigit() function 3262 while (hexdigit(*buf) >= 0) { in readhex() 3263 *val = (*val << 4) + hexdigit(*buf); in readhex() 3274 while (hexdigit(*buf) >= 0) { in readhex64() 3275 *val = (*val << 4) + hexdigit(*buf); in readhex64()
|
/external/llvm/tools/llvm-objdump/ |
D | llvm-objdump.cpp | 1376 outs() << hexdigit((Contents[addr + i] >> 4) & 0xF, true) in PrintSectionContents() 1377 << hexdigit(Contents[addr + i] & 0xF, true); in PrintSectionContents()
|
/external/swiftshader/third_party/LLVM/lib/Target/CBackend/ |
D | CBackend.cpp | 1640 Out << "\\x" << hexdigit(C >> 4) << hexdigit(C & 0x0F); in PrintEscapedString()
|
/external/protobuf/php/ext/google/protobuf/ |
D | upb.c | 10148 static void hexdigit(upb_json_parser *p, const char *ptr) { in hexdigit() function 11010 { hexdigit(parser, p); } in parse()
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
D | org.apache.jasper_5.5.17.v201004212143.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
/external/protobuf/ruby/ext/google/protobuf_c/ |
D | upb.c | 10844 static void hexdigit(upb_json_parser *p, const char *ptr) { in hexdigit() function 11711 { hexdigit(parser, p); } in parse()
|
/external/guice/extensions/struts2/lib/ |
D | core-3.1.1.jar | META-INF/
org/
org/eclipse/
org/eclipse/jdt/
org/eclipse ... |