Searched refs:StringLen (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | MachineOutliner.cpp | 437 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 D | MemoryBuffer.cpp | 322 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 D | IRSimilarityIdentifier.cpp | 974 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 D | WasmObjectFile.cpp | 126 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()
|