HomeSort by: relevance | last modified time | path
    Searched defs:FastState (Results 1 - 3 of 3) sorted by relevancy

  /src/external/gpl3/gcc/dist/libsanitizer/tsan/
tsan_shadow.h 16 class FastState {
18 FastState() { Reset(); }
55 static_assert(sizeof(FastState) == kShadowSize, "bad FastState size");
61 Shadow(FastState state, u32 addr, u32 size, AccessType typ) {
71 // FastState::ignore_accesses_ and it may be set spuriously.
133 FastState fs;
  /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
tsan_shadow.h 17 // FastState (from most significant bit):
23 class FastState {
25 FastState(u64 tid, u64 epoch) {
33 explicit FastState(u64 x) : x_(x) {}
102 class Shadow : public FastState {
104 explicit Shadow(u64 x) : FastState(x) {}
106 explicit Shadow(const FastState &s) : FastState(s.x_) { ClearHistorySize(); }
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_rtl.h 100 // FastState (from most significant bit):
106 class FastState {
108 FastState(u64 tid, u64 epoch) {
116 explicit FastState(u64 x)
191 class Shadow : public FastState {
194 : FastState(x) {
197 explicit Shadow(const FastState &s)
198 : FastState(s.x_) {
375 FastState fast_state;
843 void ALWAYS_INLINE TraceAddEvent(ThreadState *thr, FastState fs
    [all...]

Completed in 14 milliseconds