Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Demangle/
H A DRustDemangle.cpp1107 size_t InputIdx = 0; in decodePunycode() local
1117 for (; InputIdx != DelimiterPos; ++InputIdx) { in decodePunycode()
1118 char C = Input[InputIdx]; in decodePunycode()
1126 ++InputIdx; in decodePunycode()
1151 for (size_t I = 0; InputIdx != Input.size(); I += 1) { in decodePunycode()
1156 if (InputIdx == Input.size()) in decodePunycode()
1158 char C = Input[InputIdx++]; in decodePunycode()
/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DAsmParser.cpp5941 unsigned InputIdx = 0; in parseMSInlineAsm() local
6001 ++InputIdx; in parseMSInlineAsm()
6112 OS << "${" << InputIdx++ << ":P}"; in parseMSInlineAsm()
6115 OS << '$' << InputIdx++; in parseMSInlineAsm()
6129 OS << "${" << InputIdx++ << ":P}"; in parseMSInlineAsm()
6131 OS << '$' << InputIdx++; in parseMSInlineAsm()
6134 OS << "${" << InputIdx++ << ":P}"; in parseMSInlineAsm()
H A DMasmParser.cpp5898 unsigned InputIdx = 0; in parseMSInlineAsm() local
5957 ++InputIdx; in parseMSInlineAsm()
6065 OS << "${" << InputIdx++ << ":P}"; in parseMSInlineAsm()
6068 OS << '$' << InputIdx++; in parseMSInlineAsm()
6081 OS << '$' << InputIdx++; in parseMSInlineAsm()
6084 OS << "${" << InputIdx++ << ":P}"; in parseMSInlineAsm()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp6311 int InputIdx = M / NumSubElts; in getFauxShuffleMask() local
6312 M = (NumElts * (1 + InputIdx)) + (M % NumSubElts); in getFauxShuffleMask()
41389 int InputIdx = OpMask[OpIdx] / (int)OpMask.size(); in combineX86ShufflesRecursively() local
41390 assert(0 <= OpInputIdx[InputIdx] && "Unknown target shuffle input"); in combineX86ShufflesRecursively()
41391 OpMaskedIdx += OpInputIdx[InputIdx] * MaskWidth; in combineX86ShufflesRecursively()