Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/ADT/
H A DStringExtras.h37 inline char hexdigit(unsigned X, bool LowerCase = false) {
40 const uint8_t Offset = LowerCase ? 32 : 0;
152 inline std::string utohexstr(uint64_t X, bool LowerCase = false,
161 *--BufPtr = hexdigit(Mod, LowerCase);
170 inline void toHex(ArrayRef<uint8_t> Input, bool LowerCase, in toHex() argument
177 Output[i * 2 ] = hexdigit(c >> 4, LowerCase); in toHex()
178 Output[i * 2 + 1] = hexdigit(c & 15, LowerCase); in toHex()
182 inline std::string toHex(ArrayRef<uint8_t> Input, bool LowerCase = false) {
184 toHex(Input, LowerCase, Output);
188 inline std::string toHex(StringRef Input, bool LowerCase = false) {
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/AsmParser/
H A DAArch64AsmParser.cpp4264 std::string LowerCase = getTok().getIdentifier().lower(); in parseSymbolicImmVal() local
4265 RefKind = StringSwitch<AArch64MCExpr::VariantKind>(LowerCase) in parseSymbolicImmVal()