Searched refs:LowerCase (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | StringExtras.h | 37 inline char hexdigit(unsigned X, bool LowerCase = false) { 40 const uint8_t Offset = LowerCase ? 32 : 0; 165 inline std::string utohexstr(uint64_t X, bool LowerCase = false, 174 *--BufPtr = hexdigit(Mod, LowerCase); 183 inline void toHex(ArrayRef<uint8_t> Input, bool LowerCase, in toHex() argument 190 Output[i * 2 ] = hexdigit(c >> 4, LowerCase); in toHex() 191 Output[i * 2 + 1] = hexdigit(c & 15, LowerCase); in toHex() 195 inline std::string toHex(ArrayRef<uint8_t> Input, bool LowerCase = false) { 197 toHex(Input, LowerCase, Output); 201 inline std::string toHex(StringRef Input, bool LowerCase = false) { [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/AsmParser/ |
H A D | AArch64AsmParser.cpp | 4296 std::string LowerCase = getTok().getIdentifier().lower(); in parseSymbolicImmVal() local 4297 RefKind = StringSwitch<AArch64MCExpr::VariantKind>(LowerCase) in parseSymbolicImmVal()
|