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

  /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...]
  /external/stlport/test/unit/
multiset_test.cpp 15 typedef multiset<int, less<int> > mset; typedef in class:MultisetTest
46 mset s;
53 mset::iterator i = s.find(40);
66 mset s(array, array + 9);
67 mset::iterator i;
72 pair<mset::iterator, mset::iterator> p = s.equal_range(5);
77 mset::const_iterator ci;
82 pair<mset::const_iterator, mset::const_iterator> cp
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
multiset_test.cpp 15 typedef multiset<int, less<int> > mset; typedef in class:MultisetTest
46 mset s;
53 mset::iterator i = s.find(40);
66 mset s(array, array + 9);
67 mset::iterator i;
72 pair<mset::iterator, mset::iterator> p = s.equal_range(5);
77 mset::const_iterator ci;
82 pair<mset::const_iterator, mset::const_iterator> cp
    [all...]
  /ndk/tests/device/test-stlport/unit/
multiset_test.cpp 15 typedef multiset<int, less<int> > mset; typedef in class:MultisetTest
46 mset s;
53 mset::iterator i = s.find(40);
66 mset s(array, array + 9);
67 mset::iterator i;
72 pair<mset::iterator, mset::iterator> p = s.equal_range(5);
77 mset::const_iterator ci;
82 pair<mset::const_iterator, mset::const_iterator> cp
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_report.cc 29 : mset(MBlockReportMutex) {
79 static void PrintMutexSet(Vector<ReportMopMutex> const& mset) {
80 for (uptr i = 0; i < mset.Size(); i++) {
83 const ReportMopMutex m = mset[i];
85 Printf(i == mset.Size() - 1 ? ")" : ",");
102 PrintMutexSet(mop->mset);
tsan_report.h 52 Vector<ReportMopMutex> mset; member in struct:__tsan::ReportMop
tsan_rtl_report.cc 146 const StackTrace *stack, const MutexSet *mset) {
156 for (uptr i = 0; i < mset->Size(); i++) {
157 MutexSet::Desc d = mset->Get(i);
166 mop->mset.PushBack(mtx);
170 mop->mset.PushBack(mtx);
372 void RestoreStack(int tid, const u64 epoch, StackTrace *stk, MutexSet *mset) {
409 if (mset)
410 *mset = hdr->mset0;
426 if (mset) {
428 mset->Add(pc, true, epoch0 + i)
    [all...]
tsan_rtl_mutex.cc 78 thr->mset.Remove(s->GetId());
111 thr->mset.Add(s->GetId(), true, thr->fast_state.epoch());
148 thr->mset.Del(s->GetId(), true);
169 thr->mset.Add(s->GetId(), false, thr->fast_state.epoch());
192 thr->mset.Del(s->GetId(), false);
237 thr->mset.Del(s->GetId(), write);
tsan_rtl.h 416 MutexSet mset; member in struct:__tsan::ThreadState
555 const MutexSet *mset);
573 void RestoreStack(int tid, const u64 epoch, StackTrace *stk, MutexSet *mset);
tsan_interface_java.cc 50 thr->mset.Remove(s->GetId());
tsan_rtl.cc 293 hdr->mset0 = thr->mset;

Completed in 82 milliseconds