Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DMachineOutliner.cpp865 unsigned StringLen, std::vector<Candidate> &CandidatesForRepeatedSeq,
951 unsigned StringLen, std::vector<Candidate> &CandidatesForRepeatedSeq, in emitNotOutliningCheaperRemark() argument
962 R << "Did not outline " << NV("Length", StringLen) << " instructions" in emitNotOutliningCheaperRemark()
1021 unsigned StringLen = RS.Length; in findCandidates() local
1023 unsigned EndIdx = StartIdx + StringLen - 1; in findCandidates()
1058 CandidatesForRepeatedSeq.emplace_back(StartIdx, StringLen, StartIt, in findCandidates()
1085 emitNotOutliningCheaperRemark(StringLen, CandidatesForRepeatedSeq, OF); in findCandidates()
/freebsd-12.1/contrib/llvm/lib/Object/
H A DWasmObjectFile.cpp114 uint32_t StringLen = readULEB128(Ctx); in readString() local
115 if (Ctx.Ptr + StringLen > Ctx.End) in readString()
118 StringRef(reinterpret_cast<const char *>(Ctx.Ptr), StringLen); in readString()
119 Ctx.Ptr += StringLen; in readString()