Searched refs:epoch (Results 1 - 25 of 25) sorted by relevance

/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_mutexset.cc25 void MutexSet::Add(u64 id, bool write, u64 epoch) { argument
30 descs_[i].epoch = epoch;
39 if (descs_[i].epoch < minepoch) {
40 minepoch = descs_[i].epoch;
50 descs_[size_].epoch = epoch;
H A Dtsan_mutexset.h28 u64 epoch; member in struct:__tsan::MutexSet::Desc
35 void Add(u64 id, bool write, u64 epoch);
55 void MutexSet::Add(u64 id, bool write, u64 epoch) {} argument
H A Dtsan_rtl_mutex.cc73 RestoreStack(last.tid(), last.epoch(), &trace, 0);
102 thr->clock.set(thr->tid, thr->fast_state.epoch());
111 thr->mset.Add(s->GetId(), true, thr->fast_state.epoch());
140 thr->clock.set(thr->tid, thr->fast_state.epoch());
141 thr->fast_synch_epoch = thr->fast_state.epoch();
165 thr->clock.set(thr->tid, thr->fast_state.epoch());
169 thr->mset.Add(s->GetId(), false, thr->fast_state.epoch());
187 thr->clock.set(thr->tid, thr->fast_state.epoch());
188 thr->fast_synch_epoch = thr->fast_state.epoch();
208 thr->clock.set(thr->tid, thr->fast_state.epoch());
[all...]
H A Dtsan_rtl.h143 // epoch : kClkBits
148 FastState(u64 tid, u64 epoch) { argument
150 x_ |= epoch << kClkShift;
152 DCHECK_EQ(epoch, this->epoch());
174 u64 epoch() const { function in class:__tsan::FastState
180 u64 old_epoch = epoch();
182 DCHECK_EQ(old_epoch + 1, epoch());
208 return epoch() & mask;
223 // epoch
[all...]
H A Dtsan_rtl_thread.cc60 // Can't increment epoch w/o writing to the trace as well.
62 args->thr->clock.set(args->thr->tid, args->thr->fast_state.epoch());
63 args->thr->fast_synch_epoch = args->thr->fast_state.epoch();
118 DPrintf("#%d: ThreadStart epoch=%zu stk_addr=%zx stk_size=%zx "
128 // Can't increment epoch w/o writing to the trace as well.
130 thr->clock.set(thr->tid, thr->fast_state.epoch());
131 thr->fast_synch_epoch = thr->fast_state.epoch();
143 epoch1 = thr->fast_state.epoch();
H A Dtsan_rtl.cc78 ThreadState::ThreadState(Context *ctx, int tid, int unique_id, u64 epoch, argument
81 : fast_state(tid, epoch)
289 unsigned trace = (thr->fast_state.epoch() / kTracePartSize) % TraceParts();
291 hdr->epoch0 = thr->fast_state.epoch();
351 return old.epoch() >= thr->fast_synch_epoch;
355 return thr->clock.get(old.TidWithIgnore()) >= old.epoch();
424 StoreShadow(shadow_mem + (cur.epoch() % kShadowCnt), store_word);
H A Dtsan_rtl_report.cc372 void RestoreStack(int tid, const u64 epoch, StackTrace *stk, MutexSet *mset) { argument
373 // This function restores stack trace and mutex set for the thread/epoch.
375 // trace part, and then replaying the trace till the given epoch.
395 const int partidx = (epoch / kTracePartSize) % TraceParts();
397 if (epoch < hdr->epoch0)
399 const u64 epoch0 = RoundDown(epoch, TraceSize());
400 const u64 eend = epoch % TraceSize();
402 DPrintf("#%d: RestoreStack epoch=%zu ebegin=%zu eend=%zu partidx=%d\n",
403 tid, (uptr)epoch, (uptr)ebegin, (uptr)eend, partidx);
635 RestoreStack(s2.tid(), s2.epoch(),
[all...]
H A Dtsan_interface_atomic.cc257 thr->clock.set(thr->tid, thr->fast_state.epoch());
281 thr->clock.set(thr->tid, thr->fast_state.epoch());
294 thr->clock.set(thr->tid, thr->fast_state.epoch());
354 thr->clock.set(thr->tid, thr->fast_state.epoch());
/external/compiler-rt/lib/tsan/tests/unit/
H A Dtsan_shadow_test.cc22 EXPECT_EQ(s.epoch(), (u64)22);
31 EXPECT_EQ(s.epoch(), (u64)23);
33 EXPECT_EQ(s.epoch(), (u64)24);
H A Dtsan_mutexset_test.cc18 static void Expect(const MutexSet &mset, uptr i, u64 id, bool write, u64 epoch, argument
23 EXPECT_EQ(epoch, d.epoch);
/external/openssl/include/openssl/
H A Ddtls1.h137 unsigned short epoch; member in struct:dtls1_retransmit_state
171 unsigned short epoch; member in struct:record_pqueue_st
190 * The current data and handshake epoch. This is initially
197 /* records being received in the current epoch */
H A Dssl3.h356 /*r */ unsigned long epoch; /* epoch number, needed by DTLS1 */ member in struct:ssl3_record_st
/external/openssl/ssl/
H A Ddtls1.h137 unsigned short epoch; member in struct:dtls1_retransmit_state
171 unsigned short epoch; member in struct:record_pqueue_st
190 * The current data and handshake epoch. This is initially
197 /* records being received in the current epoch */
H A Dd1_both.c1193 frag->msg_header.saved_retransmit_state.epoch = s->d1->w_epoch;
1270 saved_state.epoch = s->d1->w_epoch;
1271 saved_state.epoch = s->d1->w_epoch;
1280 s->d1->w_epoch = frag->msg_header.saved_retransmit_state.epoch;
1282 if (frag->msg_header.saved_retransmit_state.epoch == saved_state.epoch - 1)
1296 s->d1->w_epoch = saved_state.epoch;
1298 if (frag->msg_header.saved_retransmit_state.epoch == saved_state.epoch - 1)
H A Dd1_pkt.c287 /* retrieve a buffered record that belongs to the new epoch, i.e., not processed
293 /* retrieve a buffered record that belongs to the current epoch, ie, processed */
306 /* Check if epoch is current. */
307 if (s->d1->unprocessed_rcds.epoch != s->d1->r_epoch)
321 /* sync epoch numbers once all the unprocessed records
323 s->d1->processed_rcds.epoch = s->d1->r_epoch;
324 s->d1->unprocessed_rcds.epoch = s->d1->r_epoch + 1;
563 /* The epoch may have changed. If so, process all the
598 /* sequence number is 64 bits, with top 2 bytes = epoch */
599 n2s(p,rr->epoch);
[all...]
H A Dssl3.h356 /*r */ unsigned long epoch; /* epoch number, needed by DTLS1 */ member in struct:ssl3_record_st
/external/libogg/
H A Dlibogg.spec13 # We're forced to use an epoch since both Red Hat and Ximian use it in their
18 Provides: %{name} = %{epoch}:1.0rc3-%{release}
19 Provides: %{name} = %{epoch}:1.0beta4-%{release}
31 Provides: %{name}-devel = %{epoch}:1.0rc3-%{release}
32 Provides: %{name}-devel = %{epoch}:1.0beta4-%{release}
/external/libvorbis/
H A Dlibvorbis.spec13 # We're forced to use an epoch since both Red Hat and Ximian use it in their
18 Provides: %{name} = %{epoch}:1.0rc3-%{release}
19 Provides: %{name} = %{epoch}:1.0beta4-%{release}
36 Provides: %{name}-devel = %{epoch}:1.0rc3-%{release}
37 Provides: %{name}-devel = %{epoch}:1.0beta4-%{release}
/external/tcpdump/
H A Drx.h60 u_int32_t epoch; member in struct:rx_header
H A Dprint-rx.c718 #define UBIK_VERSIONOUT() {int32_t epoch; int32_t counter; \
720 epoch = EXTRACT_32BITS(bp); \
724 printf(" %d.%d", epoch, counter); \
/external/icu4c/i18n/
H A Dastro.cpp525 // Parameters of the Sun's orbit as of the epoch Jan 0.0 1990
528 #define JD_EPOCH 2447891.5 // Julian day of epoch
530 #define SUN_ETA_G (279.403303 * CalendarAstronomer::PI/180) // Ecliptic longitude at epoch
537 // given above for an arbitrary epoch (whatever time the object is
641 double day = jDay - JD_EPOCH; // Days since epoch
644 // circular orbit has travelled since the epoch.
647 // The epoch wasn't at the sun's perigee; find the angular distance
914 // // Compute day number for 0.0 Jan 2000 epoch
1047 #define moonL0 (318.351648 * CalendarAstronomer::PI/180 ) // Mean long. at epoch
1076 // Find the # of days since the epoch o
1416 const double epoch = 2451545.0; // 2000 AD, January 1.5 local
[all...]
/external/icu4c/test/intltest/
H A Ddtfmrgts.cpp532 UDate epoch = date(0, 0, 0); local
536 calA->setTime(epoch, status);
538 calB->setTime(epoch, status);
H A Dcalregts.cpp1273 UDate epoch = makeDate(1970, UCAL_JANUARY, 1); local
1300 if (cal->getTime(status) != epoch)
1301 errln(UnicodeString("Fail: clear() broken Want ") + epoch);
2062 fmt.format(cutover, temp) + "}(epoch days-" + (int)days + ", jd" + (2440588 + days) +")");
/external/chromium/net/base/
H A Dcookie_monster_unittest.cc704 const time_t epoch; member in struct:net::__anon2915::CookieDateParsingCase
794 EXPECT_EQ(tests[i].epoch, parsed_time.ToTimeT()) << tests[i].str;
871 // Delete it via Expires, with a unix epoch of 0.
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.mortbay.jetty.server_6.1.23.v201004211559.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 1211 milliseconds