Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DMachineOutliner.cpp382 unsigned StringLen, std::vector<Candidate> &CandidatesForRepeatedSeq,
470 unsigned StringLen, std::vector<Candidate> &CandidatesForRepeatedSeq, in emitNotOutliningCheaperRemark() argument
481 R << "Did not outline " << NV("Length", StringLen) << " instructions" in emitNotOutliningCheaperRemark()
538 unsigned StringLen = RS.Length; in findCandidates() local
540 unsigned EndIdx = StartIdx + StringLen - 1; in findCandidates()
574 CandidatesForRepeatedSeq.emplace_back(StartIdx, StringLen, StartIt, in findCandidates()
601 emitNotOutliningCheaperRemark(StringLen, CandidatesForRepeatedSeq, OF); in findCandidates()
/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DMemoryBuffer.cpp309 size_t StringLen = sizeof(MemBuffer) + sizeof(size_t) + NameRef.size() + 1; in getNewUninitMemBuffer() local
310 size_t RealLen = StringLen + Size + 1 + BufAlign.value(); in getNewUninitMemBuffer()
322 char *Buf = (char *)alignAddr(Mem + StringLen, BufAlign); in getNewUninitMemBuffer()
/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DIRSimilarityIdentifier.cpp921 unsigned StringLen = RS.Length; in createCandidatesFromSuffixTree() local
922 if (StringLen < 2) in createCandidatesFromSuffixTree()
927 unsigned EndIdx = StartIdx + StringLen - 1; in createCandidatesFromSuffixTree()
952 CandsForRepSubstring.emplace_back(StartIdx, StringLen, *StartIt, *EndIt); in createCandidatesFromSuffixTree()
/openbsd-src/gnu/llvm/llvm/lib/Object/
H A DWasmObjectFile.cpp113 uint32_t StringLen = readULEB128(Ctx); in readString() local
114 if (Ctx.Ptr + StringLen > Ctx.End) in readString()
117 StringRef(reinterpret_cast<const char *>(Ctx.Ptr), StringLen); in readString()
118 Ctx.Ptr += StringLen; in readString()