Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DOnDiskHashTable.h68 Info &InfoObj) in Item() argument
69 : Key(Key), Data(Data), Next(nullptr), Hash(InfoObj.ComputeHash(Key)) {} in Item()
117 Info InfoObj; in insert() local
118 insert(Key, Data, InfoObj); in insert()
125 typename Info::data_type_ref Data, Info &InfoObj) { in insert() argument
129 insert(Buckets, NumBuckets, new (BA.Allocate()) Item(Key, Data, InfoObj)); in insert()
133 bool contains(typename Info::key_type_ref Key, Info &InfoObj) { in contains() argument
134 unsigned Hash = InfoObj.ComputeHash(Key); in contains()
136 if (I->Hash == Hash && InfoObj.EqualKey(I->Key, Key)) in contains()
143 Info InfoObj; in Emit() local
[all …]
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DMultiOnDiskHashTable.h68 const Info &InfoObj) in OnDiskTable()
70 Table(NumBuckets, NumEntries, Buckets, Payload, Base, InfoObj) {} in OnDiskTable()
152 Info &InfoObj = HT.getInfoObj(); in condense() local
158 auto L = InfoObj.ReadKeyDataLength(LocalPtr); in condense()
159 const internal_key_type &Key = InfoObj.ReadKey(LocalPtr, L.first); in condense()
161 InfoObj.ReadDataInto(Key, LocalPtr + L.first, L.second, in condense()
195 void add(file_type File, storage_type Data, Info InfoObj = Info()) {
211 OverriddenFiles.push_back(InfoObj.ReadFileRef(Ptr));
222 Buckets, Ptr, Data, std::move(InfoObj));
274 Info &InfoObj = HT.getInfoObj(); in findAll() local
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfWriter.cpp132 InfoObj(new InstrProfRecordWriterTrait()), in InstrProfWriter()
147 InstrProfWriter::~InstrProfWriter() { delete InfoObj; } in ~InstrProfWriter()
151 InfoObj->ValueProfDataEndianness = Endianness; in setValueProfDataEndianness()
552 InfoObj->SummaryBuilder = &ISB; in writeImpl()
554 InfoObj->CSSummaryBuilder = &CSISB; in writeImpl()
613 uint64_t HashTableStart = Generator.Emit(OS.OS, *InfoObj); in writeImpl()
656 InfoObj->SummaryBuilder = nullptr; in writeImpl()
665 InfoObj->CSSummaryBuilder = nullptr; in writeImpl()
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfWriter.h69 InstrProfRecordWriterTrait *InfoObj; variable