Home
last modified time | relevance | path

Searched refs:InputIdx (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Demangle/
H A DRustDemangle.cpp1113 size_t InputIdx = 0; in decodePunycode() local
1123 for (; InputIdx != DelimiterPos; ++InputIdx) { in decodePunycode()
1124 char C = Input[InputIdx]; in decodePunycode()
1132 ++InputIdx; in decodePunycode()
1157 for (size_t I = 0; InputIdx != Input.size(); I += 1) { in decodePunycode()
1162 if (InputIdx == Input.size()) in decodePunycode()
1164 char C = Input[InputIdx++]; in decodePunycode()
/llvm-project-15.0.7/llvm/lib/MC/MCParser/
H A DAsmParser.cpp5976 unsigned InputIdx = 0; in parseMSInlineAsm() local
6036 ++InputIdx; in parseMSInlineAsm()
6150 OS << "${" << InputIdx++ << ":P}"; in parseMSInlineAsm()
6153 OS << '$' << InputIdx++; in parseMSInlineAsm()
6167 OS << "${" << InputIdx++ << ":P}"; in parseMSInlineAsm()
6169 OS << '$' << InputIdx++; in parseMSInlineAsm()
6172 OS << "${" << InputIdx++ << ":P}"; in parseMSInlineAsm()
H A DMasmParser.cpp7374 unsigned InputIdx = 0; in parseMSInlineAsm() local
7433 ++InputIdx; in parseMSInlineAsm()
7544 OS << "${" << InputIdx++ << ":P}"; in parseMSInlineAsm()
7547 OS << '$' << InputIdx++; in parseMSInlineAsm()
7560 OS << '$' << InputIdx++; in parseMSInlineAsm()
7563 OS << "${" << InputIdx++ << ":P}"; in parseMSInlineAsm()
/llvm-project-15.0.7/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp8345 int InputIdx = M / NumSubElts; in getFauxShuffleMask() local
8346 M = (NumElts * (1 + InputIdx)) + (M % NumSubElts); in getFauxShuffleMask()
39251 int InputIdx = OpMask[OpIdx] / (int)OpMask.size(); in combineX86ShufflesRecursively() local
39252 assert(0 <= OpInputIdx[InputIdx] && "Unknown target shuffle input"); in combineX86ShufflesRecursively()
39253 OpMaskedIdx += OpInputIdx[InputIdx] * MaskWidth; in combineX86ShufflesRecursively()