Searched refs:InfoObj (Results 1 - 4 of 4) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DOnDiskHashTable.h69 Info &InfoObj)
70 : Key(Key), Data(Data), Next(nullptr), Hash(InfoObj.ComputeHash(Key)) {}
118 Info InfoObj; local
119 insert(Key, Data, InfoObj);
126 typename Info::data_type_ref Data, Info &InfoObj) {
130 insert(Buckets, NumBuckets, new (BA.Allocate()) Item(Key, Data, InfoObj));
134 bool contains(typename Info::key_type_ref Key, Info &InfoObj) { argument
135 unsigned Hash = InfoObj.ComputeHash(Key);
137 if (I->Hash == Hash && InfoObj.EqualKey(I->Key, Key))
144 Info InfoObj; local
68 Item(typename Info::key_type_ref Key, typename Info::data_type_ref Data, Info &InfoObj) argument
125 insert(typename Info::key_type_ref Key, typename Info::data_type_ref Data, Info &InfoObj) argument
151 Emit(raw_ostream &Out, Info &InfoObj) argument
279 Info InfoObj; member in class:llvm::OnDiskChainedHashTable
325 Info *InfoObj; member in class:llvm::OnDiskChainedHashTable::iterator
329 iterator(const internal_key_type K, const unsigned char *D, offset_type L, Info *InfoObj) argument
502 Info *InfoObj; member in class:llvm::OnDiskIterableChainedHashTable::key_iterator
507 key_iterator(const unsigned char *const Ptr, offset_type NumEntries, Info *InfoObj) argument
548 Info *InfoObj; member in class:llvm::OnDiskIterableChainedHashTable::data_iterator
553 data_iterator(const unsigned char *const Ptr, offset_type NumEntries, Info *InfoObj) argument
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/lib/Serialization/
H A DMultiOnDiskHashTable.h68 const Info &InfoObj)
70 Table(NumBuckets, NumEntries, Buckets, Payload, Base, InfoObj) {}
154 Info &InfoObj = HT.getInfoObj(); local
160 auto L = InfoObj.ReadKeyDataLength(LocalPtr);
161 const internal_key_type &Key = InfoObj.ReadKey(LocalPtr, L.first);
163 InfoObj.ReadDataInto(Key, LocalPtr + L.first, L.second,
197 void add(file_type File, storage_type Data, Info InfoObj = Info()) {
211 OverriddenFiles.push_back(InfoObj.ReadFileRef(Ptr));
223 Buckets, Ptr, Data, std::move(InfoObj));
275 Info &InfoObj local
66 OnDiskTable(file_type File, unsigned NumBuckets, unsigned NumEntries, storage_type Buckets, storage_type Payload, storage_type Base, const Info &InfoObj) argument
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfWriter.cpp169 : Sparse(Sparse), InfoObj(new InstrProfRecordWriterTrait()) {}
171 InstrProfWriter::~InstrProfWriter() { delete InfoObj; }
176 InfoObj->ValueProfDataEndianness = Endianness;
293 InfoObj->SummaryBuilder = &ISB;
295 InfoObj->CSSummaryBuilder = &CSISB;
344 uint64_t HashTableStart = Generator.Emit(OS.OS, *InfoObj);
353 InfoObj->SummaryBuilder = nullptr;
362 InfoObj->CSSummaryBuilder = nullptr;
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfWriter.h44 InstrProfRecordWriterTrait *InfoObj; member in class:llvm::InstrProfWriter

Completed in 129 milliseconds