HomeSort by relevance Sort by last modified time
    Searched refs:InfoObj (Results 1 - 7 of 7) sorted by null

  /external/llvm/include/llvm/Support/
OnDiskHashTable.h 70 Info &InfoObj)
71 : Key(Key), Data(Data), Next(nullptr), Hash(InfoObj.ComputeHash(Key)) {}
118 Info InfoObj;
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) {
135 unsigned Hash = InfoObj.ComputeHash(Key);
137 if (I->Hash == Hash && InfoObj.EqualKey(I->Key, Key))
144 Info InfoObj;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
OnDiskHashTable.h 69 Info &InfoObj)
70 : Key(Key), Data(Data), Next(nullptr), Hash(InfoObj.ComputeHash(Key)) {}
118 Info InfoObj;
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) {
135 unsigned Hash = InfoObj.ComputeHash(Key);
137 if (I->Hash == Hash && InfoObj.EqualKey(I->Key, Key))
144 Info InfoObj;
    [all...]
  /external/clang/lib/Serialization/
MultiOnDiskHashTable.h 54 const Info &InfoObj)
56 Table(NumBuckets, NumEntries, Buckets, Payload, Base, InfoObj) {}
138 Info &InfoObj = HT.getInfoObj();
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 = HT.getInfoObj()
    [all...]
  /external/llvm/include/llvm/ProfileData/
InstrProfWriter.h 40 InstrProfRecordWriterTrait *InfoObj;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ProfileData/
InstrProfWriter.h 44 InstrProfRecordWriterTrait *InfoObj;
  /external/llvm/lib/ProfileData/
InstrProfWriter.cpp 146 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;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ProfileData/
InstrProfWriter.cpp 166 : Sparse(Sparse), InfoObj(new InstrProfRecordWriterTrait()) {}
168 InstrProfWriter::~InstrProfWriter() { delete InfoObj; }
173 InfoObj->ValueProfDataEndianness = Endianness;
256 InfoObj->SummaryBuilder = &ISB;
293 uint64_t HashTableStart = Generator.Emit(OS.OS, *InfoObj);
302 InfoObj->SummaryBuilder = nullptr;

Completed in 2622 milliseconds