HomeSort by relevance Sort by last modified time
    Searched refs:mset (Results 1 - 12 of 12) 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.h 59 Vector<ReportMopMutex> mset; member in struct:__tsan::ReportMop
tsan_report.cc 49 : mset(MBlockReportMutex) {
111 static void PrintMutexSet(Vector<ReportMopMutex> const& mset) {
112 for (uptr i = 0; i < mset.Size(); i++) {
115 const ReportMopMutex m = mset[i];
117 Printf(i == mset.Size() - 1 ? ")" : ",");
136 PrintMutexSet(mop->mset);
tsan_rtl_report.cc 172 const StackTrace *stack, const MutexSet *mset) {
184 for (uptr i = 0; i < mset->Size(); i++) {
185 MutexSet::Desc d = mset->Get(i);
188 mop->mset.PushBack(mtx);
390 void RestoreStack(int tid, const u64 epoch, StackTrace *stk, MutexSet *mset) {
419 if (mset)
420 *mset = hdr->mset0;
436 if (mset) {
438 mset->Add(pc, true, epoch0 + i);
440 mset->Del(pc, true)
    [all...]
tsan_rtl_mutex.cc 143 thr->mset.Remove(mid);
174 thr->mset.Add(s->GetId(), true, thr->fast_state.epoch());
217 thr->mset.Del(s->GetId(), true);
251 thr->mset.Add(s->GetId(), false, thr->fast_state.epoch());
292 thr->mset.Del(mid, false);
332 thr->mset.Del(s->GetId(), write);
tsan_rtl.h 350 MutexSet mset; member in struct:__tsan::ThreadState
502 const MutexSet *mset);
527 void RestoreStack(int tid, const u64 epoch, StackTrace *stk, MutexSet *mset);
tsan_rtl.cc 466 hdr->mset0 = thr->mset;
  /external/chromium_org/third_party/protobuf/python/google/protobuf/internal/
descriptor_test.py 339 self.assertEqual("EmbeddedMessageSetElement", file_options.mset.Extensions[
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
descriptor_unittest.cc     [all...]

Completed in 226 milliseconds