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

  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
call-c.cc 26 Foo() : x_(1) { }
27 int func() const { return x_; }
29 int x_; member in struct:Foo
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
call-c.cc 26 Foo() : x_(1) { }
27 int func() const { return x_; }
29 int x_; member in struct:Foo
  /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
tsan_shadow.h 26 x_ = tid << kTidShift;
27 x_ |= epoch;
33 explicit FastState(u64 x) : x_(x) {}
35 u64 raw() const { return x_; }
38 u64 res = (x_ & ~kIgnoreBit) >> kTidShift;
43 u64 res = x_ >> kTidShift;
48 u64 res = x_ & ((1ull << kClkBits) - 1);
54 x_ += 1;
59 void SetIgnoreBit() { x_ |= kIgnoreBit; }
60 void ClearIgnoreBit() { x_ &= ~kIgnoreBit;
91 u64 x_; member in class:__tsan::FastState
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_rtl.h 109 x_ = tid << kTidShift;
110 x_ |= epoch;
117 : x_(x) {
121 return x_;
125 u64 res = (x_ & ~kIgnoreBit) >> kTidShift;
130 u64 res = x_ >> kTidShift;
135 u64 res = x_ & ((1ull << kClkBits) - 1);
141 x_ += 1;
146 void SetIgnoreBit() { x_ |= kIgnoreBit; }
147 void ClearIgnoreBit() { x_ &= ~kIgnoreBit;
180 u64 x_; member in class:__tsan::FastState
    [all...]

Completed in 16 milliseconds