Home
last modified time | relevance | path

Searched refs:hexdigit (Results 1 – 25 of 29) sorted by relevance

12

/external/syslinux/core/fs/pxe/
Durlparse.c153 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/
DYAML.cpp60 OS << hexdigit(Byte >> 4) << hexdigit(Byte & 0xf); in writeAsHex()
/external/llvm/lib/Support/
DScopedPrinter.cpp40 OS << hexdigit((Data[addr + i] >> 4) & 0xF, false) in printBinaryImpl()
41 << hexdigit(Data[addr + i] & 0xF, false); in printBinaryImpl()
Draw_ostream.cpp175 *--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/
Dcrossystem_arch.c352 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/
DStringExtras.h30 static inline char hexdigit(unsigned X, bool LowerCase = false) {
54 *--BufPtr = hexdigit(Mod); in utohex_buffer()
/external/llvm/lib/MC/
DMCFragment.cpp363 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/
DStringExtras.h26 static inline char hexdigit(unsigned X, bool LowerCase = false) {
55 *--BufPtr = hexdigit(Mod, LowerCase);
/external/ipsec-tools/src/libipsec/
Dpolicy_token.l72 hexdigit [0-9A-Fa-f]
/external/tcpdump/
Dprint-esp.c198 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/
Dcftoken.l114 hexdigit [0-9A-Fa-f]
/external/swiftshader/third_party/LLVM/tools/macho-dump/
Dmacho-dump.cpp118 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/
Draw_ostream.cpp202 *this << hexdigit((c >> 4 & 0xF)); in write_escaped()
203 *this << hexdigit((c >> 0) & 0xF); in write_escaped()
/external/clang/lib/Frontend/
DTextDiagnostic.cpp140 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/
DAsmWriter.cpp75 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/
DDWARFDebugFrame.cpp251 OS << ' ' << hexdigit(Byte >> 4) << hexdigit(Byte & 0xf); in dumpHeader()
/external/swiftshader/third_party/LLVM/lib/MC/
DMCAssembler.cpp874 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF); in dump()
/external/llvm/lib/IR/
DAsmWriter.cpp347 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/
Daspacemgr-linux.c3236 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/
Dllvm-objdump.cpp1376 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/
DCBackend.cpp1640 Out << "\\x" << hexdigit(C >> 4) << hexdigit(C & 0x0F); in PrintEscapedString()
/external/protobuf/php/ext/google/protobuf/
Dupb.c10148 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/
Dorg.apache.jasper_5.5.17.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
/external/protobuf/ruby/ext/google/protobuf_c/
Dupb.c10844 static void hexdigit(upb_json_parser *p, const char *ptr) { in hexdigit() function
11711 { hexdigit(parser, p); } in parse()
/external/guice/extensions/struts2/lib/
Dcore-3.1.1.jarMETA-INF/ org/ org/eclipse/ org/eclipse/jdt/ org/eclipse ...

12