Home
last modified time | relevance | path

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

/external/chromium_org/third_party/cython/src/Cython/Compiler/
DLexicon.py23 hexdigit = Any("0123456789ABCDEFabcdef")
32 intconst = decimal | (Str("0") + ((Any("Xx") + Rep1(hexdigit)) |
46 two_hex = hexdigit + hexdigit
/external/llvm/lib/MC/
DYAML.cpp62 OS << hexdigit(Byte >> 4); in writeAsHex()
63 OS << hexdigit(Byte & 0xf); in writeAsHex()
DMCAssembler.cpp1162 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF); in dump()
1186 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF); in dump()
/external/llvm/tools/llvm-readobj/
DStreamWriter.cpp47 OS << hexdigit((Data[addr + i] >> 4) & 0xF, false) in printBinaryImpl()
48 << hexdigit(Data[addr + i] & 0xF, false); in printBinaryImpl()
/external/llvm/include/llvm/ADT/
DStringExtras.h26 static inline char hexdigit(unsigned X, bool LowerCase = false) {
66 *--BufPtr = hexdigit(Mod); in utohex_buffer()
/external/ipsec-tools/src/libipsec/
Dpolicy_token.l72 hexdigit [0-9A-Fa-f]
/external/qemu/android/utils/
Dmisc.c159 hexdigit( int c ) in hexdigit() function
180 int c = hexdigit(*hex++); in hex2int()
/external/tcpdump/
Dprint-esp.c169 static u_int hexdigit(netdissect_options *ndo, char hex) in hexdigit() function
187 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/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/nasm/
Dnasm-token.re68 hexdigit = [0-9a-fA-F_];
183 digit hexdigit* 'h' {
190 (("$" digit) | '0x') hexdigit+ {
658 digit hexdigit* 'h' {
665 (("$" digit) | '0x') hexdigit+ {
/external/llvm/lib/Support/
Draw_ostream.cpp204 *this << hexdigit((c >> 4 & 0xF)); in write_escaped()
205 *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/llvm/tools/macho-dump/
Dmacho-dump.cpp116 outs() << hexdigit((Data[i] >> 4) & 0xF, /*LowerCase=*/true); in DumpSectionData()
117 outs() << hexdigit((Data[i] >> 0) & 0xF, /*LowerCase=*/true); in DumpSectionData()
/external/llvm/lib/IR/
DAsmWriter.cpp103 Out << '\\' << hexdigit(C >> 4) << hexdigit(C & 0x0F); in PrintEscapedString()
1377 Out << '\\' << hexdigit(Name[0] >> 4) << hexdigit(Name[0] & 0x0F); in printNamedMDNode()
1384 Out << '\\' << hexdigit(C >> 4) << hexdigit(C & 0x0F); in printNamedMDNode()
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/
Dgas-token.re185 hexdigit = [0-9a-fA-F];
256 '0x' hexdigit+ {
/external/llvm/tools/llvm-objdump/
Dllvm-objdump.cpp654 outs() << hexdigit((Contents[addr + i] >> 4) & 0xF, true) in PrintSectionContents()
655 << hexdigit(Contents[addr + i] & 0xF, true); in PrintSectionContents()
/external/valgrind/main/coregrind/m_aspacemgr/
Daspacemgr-linux.c3124 static Int hexdigit ( HChar c ) in hexdigit() function
3150 while (hexdigit(*buf) >= 0) { in readhex()
3151 *val = (*val << 4) + hexdigit(*buf); in readhex()
3162 while (hexdigit(*buf) >= 0) { in readhex64()
3163 *val = (*val << 4) + hexdigit(*buf); in readhex64()