Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringExtras.h37 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);
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/AsmParser/
H A DAArch64AsmParser.cpp3790 std::string LowerCase = Parser.getTok().getIdentifier().lower(); in parseSymbolicImmVal() local
3791 RefKind = StringSwitch<AArch64MCExpr::VariantKind>(LowerCase) in parseSymbolicImmVal()