Searched refs:Sparse (Results 1 - 6 of 6) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSparseSet.h1 //===- llvm/ADT/SparseSet.h - Sparse set ------------------------*- C++ -*-===//
132 SparseT *Sparse = nullptr; member in class:llvm::SparseSet
147 ~SparseSet() { free(Sparse); }
162 free(Sparse);
163 // The Sparse array doesn't actually need to be initialized, so malloc
166 Sparse = static_cast<SparseT*>(safe_calloc(U, sizeof(SparseT)));
195 // Sparse does not need to be cleared, see find().
207 for (unsigned i = Sparse[Idx], e = size(); i < e; i += Stride) {
254 Sparse[Idx] = size();
267 // Sparse doe
[all...]
H A DSparseMultiSet.h1 //===- llvm/ADT/SparseMultiSet.h - Sparse multiset --------------*- C++ -*-===//
123 SparseT *Sparse = nullptr; member in class:llvm::SparseMultiSet
195 ~SparseMultiSet() { free(Sparse); }
209 free(Sparse);
210 // The Sparse array doesn't actually need to be initialized, so malloc
213 Sparse = static_cast<SparseT*>(safe_calloc(U, sizeof(SparseT)));
343 // Sparse does not need to be cleared, see find().
357 for (unsigned i = Sparse[Idx], e = Dense.size(); i < e; i += Stride) {
427 Sparse[Idx] = NodeIdx;
498 Sparse[sparseInde
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfWriter.h40 bool Sparse; member in class:llvm::InstrProfWriter
47 InstrProfWriter(bool Sparse = false);
102 void setOutputSparse(bool Sparse);
/freebsd-12-stable/sys/contrib/zstd/contrib/pzstd/
H A DOptions.h22 enum class WriteMode { Regular, Auto, Sparse };
H A DOptions.cpp150 writeMode = WriteMode::Sparse;
151 notSupported("Sparse mode");
155 notSupported("Sparse mode");
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfWriter.cpp168 InstrProfWriter::InstrProfWriter(bool Sparse) argument
169 : Sparse(Sparse), InfoObj(new InstrProfRecordWriterTrait()) {}
179 void InstrProfWriter::setOutputSparse(bool Sparse) { argument
180 this->Sparse = Sparse;
260 if (!Sparse)

Completed in 184 milliseconds