HomeSort by: relevance | last modified time | path
    Searched defs:InfoObj (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/
InstrProfWriter.h 45 InstrProfRecordWriterTrait *InfoObj;
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
MultiOnDiskHashTable.h 68 const Info &InfoObj)
70 Table(NumBuckets, NumEntries, Buckets, Payload, Base, InfoObj) {}
154 Info &InfoObj = HT.getInfoObj();
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 = HT.getInfoObj()
    [all...]
  /src/external/apache2/llvm/dist/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...]

Completed in 23 milliseconds