Home
last modified time | relevance | path

Searched refs:DefaultRadix (Results 1 – 2 of 2) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/MC/MCParser/
DMCAsmLexer.h58 unsigned DefaultRadix = 10; variable
168 unsigned getMasmDefaultRadix() const { return DefaultRadix; } in getMasmDefaultRadix()
169 void setMasmDefaultRadix(unsigned Radix) { DefaultRadix = Radix; } in setMasmDefaultRadix()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/MC/MCParser/
DAsmLexer.cpp264 static unsigned doHexLookAhead(const char *&CurPtr, unsigned DefaultRadix, in doHexLookAhead() argument
286 return DefaultRadix; in doHexLookAhead()
289 static const char *findLastDigit(const char *CurPtr, unsigned DefaultRadix) { in findLastDigit() argument
290 while (hexDigitValue(*CurPtr) < DefaultRadix) { in findLastDigit()
391 DefaultRadix < 14 && in LexDigit()
395 DefaultRadix < 12 && in LexDigit()
424 if (Result.getAsInteger(DefaultRadix, Value)) { in LexDigit()
426 "invalid " + radixName(DefaultRadix) + " number"); in LexDigit()