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.cpp437 unsigned StringLen, std::vector<Candidate> &CandidatesForRepeatedSeq,
525 unsigned StringLen, std::vector<Candidate> &CandidatesForRepeatedSeq, in emitNotOutliningCheaperRemark() argument
536 R << "Did not outline " << NV("Length", StringLen) << " instructions" in emitNotOutliningCheaperRemark()
596 unsigned StringLen = RS.Length; in findCandidates() local
597 LLVM_DEBUG(dbgs() << " Sequence length: " << StringLen << "\n"); in findCandidates()
628 unsigned EndIdx = StartIdx + StringLen - 1; in findCandidates()
650 CandidatesForRepeatedSeq.emplace_back(StartIdx, StringLen, StartIt, EndIt, in findCandidates()
681 emitNotOutliningCheaperRemark(StringLen, CandidatesForRepeatedSeq, *OF); in findCandidates()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DMemoryBuffer.cpp322 size_t StringLen = sizeof(MemBuffer) + sizeof(size_t) + NameRef.size() + 1; in getNewUninitMemBuffer() local
323 size_t RealLen = StringLen + Size + 1 + BufAlign.value(); in getNewUninitMemBuffer()
342 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.cpp126 uint32_t StringLen = readULEB128(Ctx); in readString() local
127 if (Ctx.Ptr + StringLen > Ctx.End) in readString()
130 StringRef(reinterpret_cast<const char *>(Ctx.Ptr), StringLen); in readString()
131 Ctx.Ptr += StringLen; in readString()