Home
last modified time | relevance | path

Searched refs:Chunks (Results 1 – 15 of 15) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DDebugCounter.cpp19 void DebugCounter::printChunks(raw_ostream &OS, ArrayRef<Chunk> Chunks) { in printChunks() argument
20 if (Chunks.empty()) { in printChunks()
24 for (auto E : Chunks) { in printChunks()
34 bool DebugCounter::parseChunks(StringRef Str, SmallVector<Chunk> &Chunks) { in parseChunks() argument
53 if (!Chunks.empty() && Num <= Chunks[Chunks.size() - 1].End) { in parseChunks()
55 << " <= " << Chunks[Chunks.size() - 1].End << "\n"; in parseChunks()
69 Chunks.push_back({Num, Num2}); in parseChunks()
71 Chunks.push_back({Num, Num}); in parseChunks()
188 SmallVector<Chunk> Chunks; in push_back() local
190 if (parseChunks(CounterPair.second, Chunks)) { in push_back()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DRewriteRope.h173 RopePieceBTree Chunks; variable
183 RewriteRope(const RewriteRope &RHS) : Chunks(RHS.Chunks) {} in RewriteRope()
192 iterator begin() const { return Chunks.begin(); } in begin()
193 iterator end() const { return Chunks.end(); } in end()
194 unsigned size() const { return Chunks.size(); } in size()
196 void clear() { Chunks.clear(); } in clear()
201 Chunks.insert(0, MakeRopeString(Start, End)); in assign()
208 Chunks.insert(Offset, MakeRopeString(Start, End)); in insert()
215 Chunks.erase(Offset, NumBytes); in erase()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DCodeCompleteConsumer.cpp286 const Chunk *Chunks, unsigned NumChunks, unsigned Priority, in CodeCompletionString() argument
297 StoredChunks[I] = Chunks[I]; in CodeCompletionString()
434 sizeof(CodeCompletionString) + sizeof(Chunk) * Chunks.size() + in TakeString()
438 Chunks.data(), Chunks.size(), Priority, Availability, Annotations.data(), in TakeString()
440 Chunks.clear(); in TakeString()
445 Chunks.push_back(Chunk(CodeCompletionString::CK_TypedText, Text)); in AddTypedTextChunk()
449 Chunks.push_back(Chunk::CreateText(Text)); in AddTextChunk()
453 Chunks.push_back(Chunk::CreateOptional(Optional)); in AddOptionalChunk()
457 Chunks.push_back(Chunk::CreatePlaceholder(Placeholder)); in AddPlaceholderChunk()
461 Chunks.push_back(Chunk::CreateInformative(Text)); in AddInformativeChunk()
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dsize_class_allocator.h54 CompactPtrT CompactP = C->Chunks[--C->Count]; in allocate()
70 C->Chunks[C->Count++] = in deallocate()
143 CompactPtrT Chunks[2 * SizeClassMap::MaxNumCachedHint]; member
166 Allocator->popBlocks(this, ClassId, C->Chunks, MaxRefill); in refill()
174 Allocator->pushBlocks(this, ClassId, &C->Chunks[0], Count); in drain()
178 C->Chunks[I] = C->Chunks[I + Count]; in drain()
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DBytesOutputStyle.cpp401 auto Chunks = Stream.getC11LinesSubstream(); in dumpModuleC11() local
403 Chunks); in dumpModuleC11()
416 auto Chunks = Stream.getC13LinesSubstream(); in dumpModuleC13() local
420 std::tie(ThisChunk, Chunks) = Chunks.split(SS.getRecordLength()); in dumpModuleC13()
425 P.formatMsfStreamData("Debug Chunks", File, Layout, Chunks); in dumpModuleC13()
H A Dllvm-pdbutil.cpp1449 static void simplifyChunkList(llvm::cl::list<opts::ModuleSubsection> &Chunks) { in simplifyChunkList() argument
1452 if (!llvm::is_contained(Chunks, opts::ModuleSubsection::All)) in simplifyChunkList()
1454 Chunks.reset(); in simplifyChunkList()
1455 Chunks.push_back(opts::ModuleSubsection::All); in simplifyChunkList()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp360 Doc.Chunks.insert( in ELFState()
361 Doc.Chunks.begin(), in ELFState()
367 for (size_t I = 0; I < Doc.Chunks.size(); ++I) { in ELFState()
368 const std::unique_ptr<ELFYAML::Chunk> &C = Doc.Chunks[I]; in ELFState()
447 if (Doc.Chunks.back().get() == SecHdrTable) in ELFState()
448 Doc.Chunks.insert(Doc.Chunks.end() - 1, std::move(Sec)); in ELFState()
450 Doc.Chunks.push_back(std::move(Sec)); in ELFState()
456 Doc.Chunks.push_back( in ELFState()
540 for (size_t I = 0, E = Doc.Chunks.size(); I != E; ++I) { in initProgramHeaders()
541 NameToIndex[Doc.Chunks[I]->Name] = I + 1; in initProgramHeaders()
[all …]
H A DELFYAML.cpp2008 IO.mapOptional("Sections", Object.Chunks); in mapping()
/freebsd/contrib/llvm-project/lld/docs/
H A DNewLLD.rst190 Chunks created for common or BSS symbols are not backed by sections.
193 Chunks know about their size, how to copy their data to mmap'ed outputs,
201 input files as Chunks for ELF. Instead, we directly use the input section
205 mmap'ed outputs, just like COFF Chunks.
209 OutputSection is a container of InputSections (ELF) or Chunks (COFF).
219 They are responsible for creating and owning Symbols and InputSections/Chunks.
223 The writer is responsible for writing file headers and InputSections/Chunks to
224 a file. It creates OutputSections, put all InputSections/Chunks into them,
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DDebugCounter.h179 SmallVector<Chunk> Chunks; member
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h735 std::vector<Chunk *> Chunks; member
744 std::vector<std::unique_ptr<Chunk>> Chunks; member
756 for (const std::unique_ptr<Chunk> &Sec : Chunks) in getSections()
763 for (const std::unique_ptr<Chunk> &C : Chunks) in getSectionHeaderTable()
/freebsd/contrib/llvm-project/llvm/lib/Frontend/Offloading/
H A DUtility.cpp439 Object.Chunks.push_back( in containerizeOpenMPSPIRVImage()
450 Object.Chunks.push_back( in containerizeOpenMPSPIRVImage()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DCodeCompleteConsumer.h594 CodeCompletionString(const Chunk *Chunks, unsigned NumChunks,
698 SmallVector<Chunk, 4> Chunks; variable
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachinePipeliner.cpp1134 SmallVector<LoadStoreChunk, 2> Chunks(1); in computeDependenciesAux() local
1140 Chunks.emplace_back(); in computeDependenciesAux()
1143 Chunks.back().append(SU); in computeDependenciesAux()
1154 for (const LoadStoreChunk &Chunk : Chunks) in computeDependenciesAux()
/freebsd/contrib/ncurses/misc/
H A Dterminfo.src5264 # Chunks from xterm #230: