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.cpp6005 unsigned InputIdx = 0; in parseMSInlineAsm() local
6065 ++InputIdx; in parseMSInlineAsm()
6176 OS << "${" << InputIdx++ << ":P}"; in parseMSInlineAsm()
6179 OS << '$' << InputIdx++; in parseMSInlineAsm()
6193 OS << "${" << InputIdx++ << ":P}"; in parseMSInlineAsm()
6195 OS << '$' << InputIdx++; in parseMSInlineAsm()
6198 OS << "${" << InputIdx++ << ":P}"; in parseMSInlineAsm()
H A DMasmParser.cpp7362 unsigned InputIdx = 0; in parseMSInlineAsm() local
7421 ++InputIdx; in parseMSInlineAsm()
7529 OS << "${" << InputIdx++ << ":P}"; in parseMSInlineAsm()
7532 OS << '$' << InputIdx++; in parseMSInlineAsm()
7545 OS << '$' << InputIdx++; in parseMSInlineAsm()
7548 OS << "${" << InputIdx++ << ":P}"; in parseMSInlineAsm()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp5994 int InputIdx = M / NumSubElts; in getFauxShuffleMask() local
5995 M = (NumElts * (1 + InputIdx)) + (M % NumSubElts); in getFauxShuffleMask()
39927 int InputIdx = OpMask[OpIdx] / (int)OpMask.size(); in combineX86ShufflesRecursively() local
39928 assert(0 <= OpInputIdx[InputIdx] && "Unknown target shuffle input"); in combineX86ShufflesRecursively()
39929 OpMaskedIdx += OpInputIdx[InputIdx] * MaskWidth; in combineX86ShufflesRecursively()