Home
last modified time | relevance | path

Searched refs:hexdigit (Results 1 – 25 of 31) 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/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/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/swiftshader/third_party/subzero/src/
DIceGlobalInits.cpp26 char hexdigit(unsigned X) { return X < 10 ? '0' + X : 'A' + X - 10; } in hexdigit() function
208 Stream << '\\' << hexdigit(C >> 4) << hexdigit(C & 0x0F); in dump()
/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/python/cpython2/Objects/
Dunicodeobject.c3047 static const char *hexdigit = "0123456789abcdef"; in unicodeescape_string() local
3105 *p++ = hexdigit[(ch >> 28) & 0x0000000F]; in unicodeescape_string()
3106 *p++ = hexdigit[(ch >> 24) & 0x0000000F]; in unicodeescape_string()
3107 *p++ = hexdigit[(ch >> 20) & 0x0000000F]; in unicodeescape_string()
3108 *p++ = hexdigit[(ch >> 16) & 0x0000000F]; in unicodeescape_string()
3109 *p++ = hexdigit[(ch >> 12) & 0x0000000F]; in unicodeescape_string()
3110 *p++ = hexdigit[(ch >> 8) & 0x0000000F]; in unicodeescape_string()
3111 *p++ = hexdigit[(ch >> 4) & 0x0000000F]; in unicodeescape_string()
3112 *p++ = hexdigit[ch & 0x0000000F]; in unicodeescape_string()
3127 *p++ = hexdigit[(ucs >> 28) & 0x0000000F]; in unicodeescape_string()
[all …]
/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/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DStringExtras.h27 static inline char hexdigit(unsigned X, bool LowerCase = false) {
56 *--BufPtr = hexdigit(Mod, LowerCase);
/external/python/cpython2/Modules/
DcPickle.c1318 static const char *hexdigit = "0123456789abcdef"; in modified_EncodeRawUnicodeEscape() local
1342 *p++ = hexdigit[(ch >> 28) & 0xf]; in modified_EncodeRawUnicodeEscape()
1343 *p++ = hexdigit[(ch >> 24) & 0xf]; in modified_EncodeRawUnicodeEscape()
1344 *p++ = hexdigit[(ch >> 20) & 0xf]; in modified_EncodeRawUnicodeEscape()
1345 *p++ = hexdigit[(ch >> 16) & 0xf]; in modified_EncodeRawUnicodeEscape()
1346 *p++ = hexdigit[(ch >> 12) & 0xf]; in modified_EncodeRawUnicodeEscape()
1347 *p++ = hexdigit[(ch >> 8) & 0xf]; in modified_EncodeRawUnicodeEscape()
1348 *p++ = hexdigit[(ch >> 4) & 0xf]; in modified_EncodeRawUnicodeEscape()
1349 *p++ = hexdigit[ch & 15]; in modified_EncodeRawUnicodeEscape()
1364 *p++ = hexdigit[(ucs >> 28) & 0xf]; in modified_EncodeRawUnicodeEscape()
[all …]
/external/tcpdump/
Dprint-esp.c280 static u_int hexdigit(netdissect_options *ndo, char hex) in hexdigit() function
298 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-subzero/lib/Support/
Draw_ostream.cpp167 *this << hexdigit((c >> 4 & 0xF)); in write_escaped()
168 *this << hexdigit((c >> 0) & 0xF); in write_escaped()
DNativeFormatting.cpp157 *--CurPtr = hexdigit(x, !Upper); in write_hex()
/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.c3252 static Int hexdigit ( HChar c ) in hexdigit() function
3278 while (hexdigit(*buf) >= 0) { in readhex()
3279 *val = (*val << 4) + hexdigit(*buf); in readhex()
3290 while (hexdigit(*buf) >= 0) { in readhex64()
3291 *val = (*val << 4) + hexdigit(*buf); in readhex64()

12