Searched refs:LowerCase (Results 1 – 2 of 2) sorted by relevance
26 static inline char hexdigit(unsigned X, bool LowerCase = false) {27 const char HexChar = LowerCase ? 'a' : 'A';56 static inline char *utohex_buffer(IntTy X, char *BufferEnd, bool LowerCase = false) {66 *--BufPtr = hexdigit(Mod, LowerCase);72 static inline std::string utohexstr(uint64_t X, bool LowerCase = false) {74 return utohex_buffer(X, Buffer+17, LowerCase);
2779 std::string LowerCase = Parser.getTok().getIdentifier().lower(); in parseSymbolicImmVal() local2780 RefKind = StringSwitch<AArch64MCExpr::VariantKind>(LowerCase) in parseSymbolicImmVal()