Home
last modified time | relevance | path

Searched refs:Epoch (Results 1 – 25 of 30) sorted by relevance

12

/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_defs.h62 enum class Epoch : u16 {}; enum
64 constexpr Epoch kEpochZero = static_cast<Epoch>(0);
65 constexpr Epoch kEpochOver = static_cast<Epoch>(1 << kEpochBits);
66 constexpr Epoch kEpochLast = static_cast<Epoch>((1 << kEpochBits) - 1);
68 inline Epoch EpochInc(Epoch epoch) { in EpochInc()
69 return static_cast<Epoch>(static_cast<u16>(epoch) + 1); in EpochInc()
72 inline bool EpochOverflow(Epoch epoch) { return epoch == kEpochOver; } in EpochOverflow()
H A Dtsan_vector_clock.h24 Epoch Get(Sid sid) const;
25 void Set(Sid sid, Epoch v);
37 VECTOR_ALIGNED Epoch clk_[kThreadSlotCount];
40 ALWAYS_INLINE Epoch VectorClock::Get(Sid sid) const { in Get()
44 ALWAYS_INLINE void VectorClock::Set(Sid sid, Epoch v) { in Set()
H A Dtsan_shadow.h32 Epoch epoch() const { return static_cast<Epoch>(part_.epoch_); } in epoch()
34 void SetEpoch(Epoch epoch) { part_.epoch_ = static_cast<u16>(epoch); } in SetEpoch()
81 Epoch epoch() const { return static_cast<Epoch>(part_.epoch_); } in epoch()
140 static RawShadow FreedInfo(Sid sid, Epoch epoch) { in FreedInfo()
H A Dtsan_vector_clock.cpp20 const uptr kVectorClockSize = kThreadSlotCount * sizeof(Epoch) / sizeof(m128);
89 Epoch tmp = dst->clk_[i]; in ReleaseStoreAcquire()
H A Dtsan_rtl.h136 Epoch epoch;
147 Epoch epoch() const { in epoch()
148 return static_cast<Epoch>(atomic_load(&raw_epoch, memory_order_relaxed)); in epoch()
151 void SetEpoch(Epoch v) { in SetEpoch()
694 bool RestoreStack(EventType type, Sid sid, Epoch epoch, uptr addr, uptr size,
H A Dtsan_rtl_report.cpp356 Epoch epoch, Func f) { in TraceReplay()
359 Epoch ev_epoch = kEpochOver; in TraceReplay()
376 ev_epoch = static_cast<Epoch>(ev->epoch); in TraceReplay()
432 bool RestoreStack(EventType type, Sid sid, Epoch epoch, uptr addr, uptr size, in RestoreStack()
488 [&](Sid ev_sid, Epoch ev_epoch, Event *evp) { in RestoreStack()
H A Dtsan_rtl_mutex.cpp505 Epoch epoch = EpochInc(thr->fast_state.epoch()); in IncrementEpoch()
H A Dtsan_rtl.cpp303 Epoch epoch = EpochInc(slot->epoch()); in SlotAttachAndLock()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DEpochTracker.h38 uint64_t Epoch = 0; variable
45 void incrementEpoch() { ++Epoch; } in incrementEpoch()
67 : EpochAddress(&Parent->Epoch), EpochAtCreation(Parent->Epoch) {} in HandleBase()
H A DDenseMap.h508 DebugEpochBase &Epoch,
512 return iterator(B, E, Epoch, NoAdvance);
514 return iterator(P, E, Epoch, NoAdvance);
518 const DebugEpochBase &Epoch,
522 return const_iterator(B, E, Epoch, NoAdvance);
524 return const_iterator(P, E, Epoch, NoAdvance);
1255 DenseMapIterator(pointer Pos, pointer E, const DebugEpochBase &Epoch,
1257 : DebugEpochBase::HandleBase(&Epoch), Ptr(Pos), End(E) {
H A DSmallPtrSet.h283 const DebugEpochBase &Epoch) in SmallPtrSetIterator() argument
284 : SmallPtrSetIteratorImpl(BP, E), DebugEpochBase::HandleBase(&Epoch) {} in SmallPtrSetIterator()
/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerIOPosix.cpp55 void ListFilesInDirRecursive(const std::string &Dir, long *Epoch, in ListFilesInDirRecursive() argument
58 if (Epoch) in ListFilesInDirRecursive()
59 if (E && *Epoch >= E) return; in ListFilesInDirRecursive()
74 ListFilesInDirRecursive(Path, Epoch, V, false); in ListFilesInDirRecursive()
77 if (Epoch && TopDir) in ListFilesInDirRecursive()
78 *Epoch = E; in ListFilesInDirRecursive()
H A DFuzzerIO.cpp101 void ReadDirToVectorOfUnits(const char *Path, std::vector<Unit> *V, long *Epoch, in ReadDirToVectorOfUnits() argument
104 long E = Epoch ? *Epoch : 0; in ReadDirToVectorOfUnits()
106 ListFilesInDirRecursive(Path, Epoch, &Files, /*TopDir*/true); in ReadDirToVectorOfUnits()
110 if (Epoch && GetEpoch(X) < E) continue; in ReadDirToVectorOfUnits()
H A DFuzzerIOWindows.cpp113 void ListFilesInDirRecursive(const std::string &Dir, long *Epoch, in ListFilesInDirRecursive() argument
116 if (Epoch) in ListFilesInDirRecursive()
117 if (E && *Epoch >= E) return; in ListFilesInDirRecursive()
146 ListFilesInDirRecursive(FileName, Epoch, V, false); in ListFilesInDirRecursive()
158 if (Epoch && TopDir) in ListFilesInDirRecursive()
159 *Epoch = E; in ListFilesInDirRecursive()
H A DFuzzerIO.h35 void ReadDirToVectorOfUnits(const char *Path, std::vector<Unit> *V, long *Epoch,
73 void ListFilesInDirRecursive(const std::string &Dir, long *Epoch,
/freebsd/crypto/openssl/doc/man3/
H A DSCT_new.pod112 since the Unix Epoch).
153 The time that the SCT was issued (time in milliseconds since the Unix Epoch).
H A DSSL_SESSION_get_time.pod27 established. The time is given in seconds since the Epoch and therefore
H A DCT_POLICY_EVAL_CTX_new.pod101 The time should be in milliseconds since the Unix Epoch.
/freebsd/contrib/file/magic/Magdir/
H A Dluks84 # seqid; sequence ID, increased on update; called Epoch by cryptsetup with value like: 3 4 8 10
H A Dvirtual45 # creation Time in seconds since 1 Jan 2000 UTC~946684800 sec. since Unix Epoch
/freebsd/usr.sbin/bsdconfig/usermgmt/include/
H A Dmessages.subr94 msg_number_of_seconds_since_epoch="Number of seconds since the Epoch\n(1 = %s)\nNULL or zero to dis…
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DCompilerInvocation.cpp4653 StringRef Epoch = A->getValue(); in ParsePreprocessorArgs() local
4660 if (Epoch.getAsInteger(10, V) || V > MaxTimestamp) { in ParsePreprocessorArgs()
4662 << Epoch << MaxTimestamp; in ParsePreprocessorArgs()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnosticDriverKinds.td541 "'-fbuild-session-timestamp=<seconds since Epoch>' or '-fbuild-session-file=<file>'">;
/freebsd/crypto/openssl/doc/man1/
H A Dopenssl-verification-options.pod261 January 1, 1970 (i.e., the Unix Epoch).
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DClang.cpp1298 if (const char *Epoch = std::getenv("SOURCE_DATE_EPOCH")) { in AddPreprocessingOptions() local
1300 CmdArgs.push_back(Args.MakeArgString(Epoch)); in AddPreprocessingOptions()

12