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

12345678910

/external/compiler-rt/test/tsan/
H A Dmutex_annotations.cc12 ANNOTATE_RWLOCK_CREATE_STATIC(&state_);
14 ANNOTATE_RWLOCK_CREATE(&state_);
18 ANNOTATE_RWLOCK_DESTROY(&state_);
22 ANNOTATE_RWLOCK_ACQUIRED(&state_, true);
26 ANNOTATE_RWLOCK_RELEASED(&state_, true);
30 long long state_; member in class:Mutex
/external/webrtc/talk/session/media/
H A Drtcpmuxfilter.cc34 RtcpMuxFilter::RtcpMuxFilter() : state_(ST_INIT), offer_enable_(false) {
38 return state_ == ST_SENTPRANSWER ||
39 state_ == ST_RECEIVEDPRANSWER ||
40 state_ == ST_ACTIVE;
44 state_ = ST_ACTIVE;
48 if (state_ == ST_ACTIVE) {
59 state_ = (src == CS_LOCAL) ? ST_SENTOFFER : ST_RECEIVEDOFFER;
65 if (state_ == ST_ACTIVE) {
78 state_ = ST_RECEIVEDPRANSWER;
80 state_
[all...]
/external/libcxx/test/support/
H A Ddeleter_types.h31 int state_; member in class:Deleter
37 Deleter(Deleter&& r) : state_(r.state_) {r.state_ = 0;}
40 state_ = r.state_;
41 r.state_ = 0;
46 Deleter() : state_(0) {}
47 explicit Deleter(int s) : state_(s) {}
48 ~Deleter() {assert(state_ >
69 int state_; member in class:Deleter
99 mutable int state_; member in class:Deleter
131 mutable int state_; member in class:Deleter
169 int state_; member in class:CDeleter
190 int state_; member in class:CDeleter
217 int state_; member in class:NCDeleter
236 int state_; member in class:NCDeleter
256 int state_; member in class:NCConstDeleter
275 int state_; member in class:NCConstDeleter
295 int state_; member in class:CopyDeleter
318 int state_; member in class:CopyDeleter
352 int state_; member in class:test_deleter
[all...]
/external/webrtc/webrtc/base/
H A Drandom.h56 state_ ^= state_ >> 12;
57 state_ ^= state_ << 25;
58 state_ ^= state_ >> 27;
59 RTC_DCHECK(state_ != 0x0ULL);
60 return state_ * 2685821657736338717ull;
63 uint64_t state_; member in class:webrtc::Random
H A Dsignalthread.cc24 state_(kInit),
38 ASSERT(kInit == state_);
45 if (kInit == state_ || kComplete == state_) {
46 state_ = kRunning;
57 if ((kInit == state_) || (kComplete == state_)) {
59 } else if (kRunning == state_ || kReleasing == state_) {
60 state_
[all...]
H A Dtransformadapter.cc25 direction_read_(direction_read), state_(ST_PROCESSING), len_(0) {
39 while (state_ != ST_ERROR) {
40 if (state_ == ST_COMPLETE)
44 if ((state_ == ST_PROCESSING) && (len_ < sizeof(buffer_))) {
54 state_ = ST_ERROR;
57 state_ = ST_FLUSHING;
68 (state_ == ST_FLUSHING));
72 state_ = ST_COMPLETE;
74 state_ = ST_ERROR;
77 } else if ((out_len == 0) && (state_
[all...]
/external/webrtc/webrtc/common_audio/
H A Dsparse_fir_filter.cc24 state_(sparsity_ * (num_nonzero_coeffs - 1) + offset_, 0.f) {
40 out[i] += state_[i + (nonzero_coeffs_.size() - j - 1) * sparsity_] *
46 if (state_.size() > 0u) {
47 if (length >= state_.size()) {
48 std::memcpy(&state_[0],
49 &in[length - state_.size()],
50 state_.size() * sizeof(*in));
52 std::memmove(&state_[0],
53 &state_[length],
54 (state_
[all...]
H A Dfir_filter_neon.cc29 state_(static_cast<float*>(
40 memset(state_.get(),
42 (max_input_length + state_length_) * sizeof(state_[0]));
48 memcpy(&state_[state_length_], in, length * sizeof(*in));
53 float* in_ptr = &state_[i];
69 memmove(state_.get(), &state_[length], state_length_ * sizeof(state_[0]));
/external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.dtor/
H A Dnull.pass.cpp21 int state_; member in class:Deleter
27 Deleter() : state_(0) {}
29 int state() const {return state_;}
31 void operator()(void*) {++state_;}
/external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/
H A Ddefault01.pass.cpp23 int state_; member in class:Deleter
29 Deleter() : state_(5) {}
31 int state() const {return state_;}
H A Dnullptr.pass.cpp22 int state_; member in class:Deleter
28 Deleter() : state_(5) {}
30 int state() const {return state_;}
/external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/
H A Dnullptr.pass.cpp22 int state_; member in class:Deleter
28 Deleter() : state_(5) {}
30 int state() const {return state_;}
H A Dmove_convert08.fail.cpp50 int state_; member in class:Deleter
55 Deleter(Deleter&& r) : state_(r.state_) {r.state_ = 0;}
58 state_ = r.state_;
59 r.state_ = 0;
63 Deleter() : state_(5) {}
68 : state_(d.state()) {d.set_state(0);}
76 int state() const {return state_;}
[all...]
H A Dmove_convert11.fail.cpp50 int state_; member in class:Deleter
55 Deleter(Deleter&& r) : state_(r.state_) {r.state_ = 0;}
58 state_ = r.state_;
59 r.state_ = 0;
63 Deleter() : state_(5) {}
68 : state_(d.state()) {d.set_state(0);}
76 int state() const {return state_;}
[all...]
/external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.observers/
H A Dindex.pass.cpp21 int state_; member in class:A
24 A() : state_(++next_) {}
25 int get() const {return state_;}
28 {return x.state_ == y;}
30 A& operator=(int i) {state_ = i; return *this;}
/external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.observers/
H A Dindex.fail.cpp21 int state_; member in class:A
24 A() : state_(++next_) {}
25 int get() const {return state_;}
28 {return x.state_ == y;}
30 A& operator=(int i) {state_ = i; return *this;}
/external/clang/test/CodeGenCXX/
H A Drvalue-references.cpp42 int* state_; member in class:C
47 C(int state) : state_(new int(state)) { }
50 state_ = a.state_;
51 a.state_ = 0;
55 delete state_;
56 state_ = 0;
/external/libchrome/base/message_loop/
H A Dmessage_pump_glib.cc183 : state_(NULL),
221 if (state_ && // state_ may be null during tests.
222 state_->has_work)
231 if (!state_) // state_ may be null during tests.
250 state_->has_work = true;
253 if (state_->has_work)
266 state_->has_work = false;
267 if (state_
[all...]
/external/parameter-framework/asio/include/asio/detail/
H A Dposix_event.hpp54 state_ |= 1;
63 state_ |= 1;
64 bool have_waiters = (state_ > 1);
75 state_ |= 1;
76 if (state_ > 1)
91 state_ &= ~std::size_t(1);
99 while ((state_ & 1) == 0)
101 state_ += 2;
103 state_ -= 2;
109 std::size_t state_; member in class:asio::detail::posix_event
[all...]
/external/parameter-framework/asio-1.10.6/include/asio/detail/
H A Dposix_event.hpp54 state_ |= 1;
63 state_ |= 1;
64 bool have_waiters = (state_ > 1);
75 state_ |= 1;
76 if (state_ > 1)
91 state_ &= ~std::size_t(1);
99 while ((state_ & 1) == 0)
101 state_ += 2;
103 state_ -= 2;
109 std::size_t state_; member in class:asio::detail::posix_event
[all...]
/external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.runtime/
H A Dnull_ctor.pass.cpp23 int state_; member in class:Deleter
29 Deleter() : state_(0) {}
31 int state() const {return state_;}
33 void operator()(void*) {++state_;}
/external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.modifiers/
H A Dswap.pass.cpp23 int state_; member in struct:A
25 A() : state_(0) {++count;}
26 explicit A(int i) : state_(i) {++count;}
27 A(const A& a) : state_(a.state_) {++count;}
28 A& operator=(const A& a) {state_ = a.state_; return *this;}
32 {return x.state_ == y.state_;}
/external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.modifiers/
H A Dswap.pass.cpp23 int state_; member in struct:A
25 explicit A(int i) : state_(i) {++count;}
26 A(const A& a) : state_(a.state_) {++count;}
27 A& operator=(const A& a) {state_ = a.state_; return *this;}
31 {return x.state_ == y.state_;}
/external/v8/tools/clang/blink_gc_plugin/
H A DJsonWriter.h19 state_.push(false);
28 state_.pop();
33 state_.push(false);
37 state_.pop();
58 if (state_.empty())
60 if (state_.top()) {
64 state_.top() = true;
67 std::stack<bool> state_; member in class:JsonWriter
/external/webrtc/talk/app/webrtc/
H A Dmediastreamtrack.h47 return state_;
59 bool fire_on_change = (state_ != new_state);
60 state_ = new_state;
70 state_(MediaStreamTrackInterface::kInitializing) {
76 MediaStreamTrackInterface::TrackState state_; member in class:webrtc::MediaStreamTrack

Completed in 2296 milliseconds

12345678910