Searched refs:LowerCase (Results 1 – 2 of 2) sorted by relevance
37 inline char hexdigit(unsigned X, bool LowerCase = false) {38 const char HexChar = LowerCase ? 'a' : 'A';145 inline std::string utohexstr(uint64_t X, bool LowerCase = false) {153 *--BufPtr = hexdigit(Mod, LowerCase);162 inline std::string toHex(StringRef Input, bool LowerCase = false) {164 const uint8_t Offset = LowerCase ? 32 : 0;177 inline std::string toHex(ArrayRef<uint8_t> Input, bool LowerCase = false) {178 return toHex(toStringRef(Input), LowerCase);
3790 std::string LowerCase = Parser.getTok().getIdentifier().lower(); in parseSymbolicImmVal() local3791 RefKind = StringSwitch<AArch64MCExpr::VariantKind>(LowerCase) in parseSymbolicImmVal()