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

/external/llvm/include/llvm/Support/
H A DOnDiskHashTable.h70 Info &InfoObj)
71 : 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
69 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...]
/external/clang/lib/Serialization/
H A DMultiOnDiskHashTable.h54 const Info &InfoObj)
56 Table(NumBuckets, NumEntries, Buckets, Payload, Base, InfoObj) {}
138 Info &InfoObj = HT.getInfoObj(); local
144 auto L = InfoObj.ReadKeyDataLength(LocalPtr);
145 const internal_key_type &Key = InfoObj.ReadKey(LocalPtr, L.first);
147 InfoObj.ReadDataInto(Key, LocalPtr + L.first, L.second,
182 void add(file_type File, storage_type Data, Info InfoObj = Info()) {
195 OverriddenFiles.push_back(InfoObj.ReadFileRef(Ptr));
207 Buckets, Ptr, Data, std::move(InfoObj));
259 Info &InfoObj local
52 OnDiskTable(file_type File, unsigned NumBuckets, unsigned NumEntries, storage_type Buckets, storage_type Payload, storage_type Base, const Info &InfoObj) argument
[all...]
/external/llvm/include/llvm/ProfileData/
H A DInstrProfWriter.h40 InstrProfRecordWriterTrait *InfoObj; member in class:llvm::InstrProfWriter
/external/llvm/lib/ProfileData/
H A DInstrProfWriter.cpp146 InfoObj(new InstrProfRecordWriterTrait()) {}
148 InstrProfWriter::~InstrProfWriter() { delete InfoObj; }
153 InfoObj->ValueProfDataEndianness = Endianness;
218 InfoObj->SummaryBuilder = &ISB;
255 uint64_t HashTableStart = Generator.Emit(OS.OS, *InfoObj);
264 InfoObj->SummaryBuilder = 0;

Completed in 144 milliseconds