/external/compiler-rt/lib/tsan/tests/unit/ |
tsan_mutexset_test.cc | 18 static void Expect(const MutexSet &mset, uptr i, u64 id, bool write, u64 epoch, 20 MutexSet::Desc d = mset.Get(i); 28 MutexSet mset; local 29 EXPECT_EQ(mset.Size(), (uptr)0); 31 mset.Add(1, true, 2); 32 EXPECT_EQ(mset.Size(), (uptr)1); 33 Expect(mset, 0, 1, true, 2, 1); 34 mset.Del(1, true); 35 EXPECT_EQ(mset.Size(), (uptr)0); 37 mset.Add(3, true, 4) 49 MutexSet mset; local 67 MutexSet mset; local 77 MutexSet mset; local 90 MutexSet mset; local 109 MutexSet mset; local [all...] |
/device/google/cuttlefish_common/guest/hals/hwcomposer/vsoc/ |
stats_keeper.cpp | 44 void MultisetDeleteOne(std::multiset<T>* mset, const T& key) { 45 mset->erase(mset->find(key)); 48 const T& MultisetMin(const std::multiset<T>& mset) { 49 return *mset.begin(); 52 const T& MultisetMax(const std::multiset<T>& mset) { 53 return *mset.rbegin();
|
/external/compiler-rt/lib/tsan/rtl/ |
tsan_report.h | 59 Vector<ReportMopMutex> mset; member in struct:__tsan::ReportMop
|
tsan_report.cc | 67 : mset(MBlockReportMutex) { 138 static void PrintMutexSet(Vector<ReportMopMutex> const& mset) { 139 for (uptr i = 0; i < mset.Size(); i++) { 142 const ReportMopMutex m = mset[i]; 144 Printf(i == mset.Size() - 1 ? ")" : ","); 163 PrintMutexSet(mop->mset);
|
tsan_rtl_report.cc | 164 const MutexSet *mset) { 176 for (uptr i = 0; i < mset->Size(); i++) { 177 MutexSet::Desc d = mset->Get(i); 180 mop->mset.PushBack(mtx); 373 MutexSet *mset) { 395 if (mset) 396 *mset = hdr->mset0; 414 if (mset) { 416 mset->Add(pc, true, epoch0 + i); 418 mset->Del(pc, true) [all...] |
tsan_rtl_mutex.cc | 131 thr->mset.Remove(mid); 171 thr->mset.Add(s->GetId(), true, thr->fast_state.epoch()); 214 thr->mset.Del(s->GetId(), true); 249 thr->mset.Add(s->GetId(), false, thr->fast_state.epoch()); 290 thr->mset.Del(mid, false); 330 thr->mset.Del(s->GetId(), write);
|
tsan_rtl.h | 390 MutexSet mset; member in struct:__tsan::ThreadState 562 const MutexSet *mset); 588 MutexSet *mset);
|
tsan_rtl.cc | 513 hdr->mset0 = thr->mset;
|
/external/protobuf/python/google/protobuf/internal/ |
descriptor_test.py | 344 self.assertEqual("EmbeddedMessageSetElement", file_options.mset.Extensions[ [all...] |
/external/protobuf/src/google/protobuf/ |
descriptor_unittest.cc | [all...] |