Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineOutliner.cpp482 unsigned StringLen, std::vector<Candidate> &CandidatesForRepeatedSeq,
593 unsigned StringLen, std::vector<Candidate> &CandidatesForRepeatedSeq, in emitNotOutliningCheaperRemark() argument
604 R << "Did not outline " << NV("Length", StringLen) << " instructions" in emitNotOutliningCheaperRemark()
763 unsigned StringLen = RS.Length; in findCandidates() local
764 LLVM_DEBUG(dbgs() << " Sequence length: " << StringLen << "\n"); in findCandidates()
795 unsigned EndIdx = StartIdx + StringLen - 1; in findCandidates()
817 CandidatesForRepeatedSeq.emplace_back(StartIdx, StringLen, StartIt, EndIt, in findCandidates()
850 emitNotOutliningCheaperRemark(StringLen, CandidatesForRepeatedSeq, in findCandidates()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DMemoryBuffer.cpp319 size_t StringLen = sizeof(MemBuffer) + sizeof(size_t) + NameRef.size() + 1; in getNewUninitMemBuffer() local
320 size_t RealLen = StringLen + Size + 1 + BufAlign.value(); in getNewUninitMemBuffer()
339 char *Buf = (char *)alignAddr(Mem + StringLen, BufAlign); in getNewUninitMemBuffer()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DIRSimilarityIdentifier.cpp968 unsigned StringLen = RS.Length; in createCandidatesFromSuffixTree() local
969 if (StringLen < 2) in createCandidatesFromSuffixTree()
974 unsigned EndIdx = StartIdx + StringLen - 1; in createCandidatesFromSuffixTree()
999 CandsForRepSubstring.emplace_back(StartIdx, StringLen, *StartIt, *EndIt); in createCandidatesFromSuffixTree()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DWasmObjectFile.cpp123 uint32_t StringLen = readULEB128(Ctx); in readString() local
124 if (Ctx.Ptr + StringLen > Ctx.End) in readString()
127 StringRef(reinterpret_cast<const char *>(Ctx.Ptr), StringLen); in readString()
128 Ctx.Ptr += StringLen; in readString()