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.cpp430 unsigned StringLen, std::vector<Candidate> &CandidatesForRepeatedSeq,
518 unsigned StringLen, std::vector<Candidate> &CandidatesForRepeatedSeq, in emitNotOutliningCheaperRemark() argument
529 R << "Did not outline " << NV("Length", StringLen) << " instructions" in emitNotOutliningCheaperRemark()
589 unsigned StringLen = RS.Length; in findCandidates() local
590 LLVM_DEBUG(dbgs() << " Sequence length: " << StringLen << "\n"); in findCandidates()
618 unsigned EndIdx = StartIdx + StringLen - 1; in findCandidates()
642 CandidatesForRepeatedSeq.emplace_back(StartIdx, StringLen, StartIt, EndIt, in findCandidates()
673 emitNotOutliningCheaperRemark(StringLen, CandidatesForRepeatedSeq, *OF); in findCandidates()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DMemoryBuffer.cpp314 size_t StringLen = sizeof(MemBuffer) + sizeof(size_t) + NameRef.size() + 1; in getNewUninitMemBuffer() local
315 size_t RealLen = StringLen + Size + 1 + BufAlign.value(); in getNewUninitMemBuffer()
327 char *Buf = (char *)alignAddr(Mem + StringLen, BufAlign); in getNewUninitMemBuffer()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DIRSimilarityIdentifier.cpp974 unsigned StringLen = RS.Length; in createCandidatesFromSuffixTree() local
975 if (StringLen < 2) in createCandidatesFromSuffixTree()
980 unsigned EndIdx = StartIdx + StringLen - 1; in createCandidatesFromSuffixTree()
1005 CandsForRepSubstring.emplace_back(StartIdx, StringLen, *StartIt, *EndIt); in createCandidatesFromSuffixTree()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DWasmObjectFile.cpp124 uint32_t StringLen = readULEB128(Ctx); in readString() local
125 if (Ctx.Ptr + StringLen > Ctx.End) in readString()
128 StringRef(reinterpret_cast<const char *>(Ctx.Ptr), StringLen); in readString()
129 Ctx.Ptr += StringLen; in readString()