Home | History | Annotate | Download | only in memory

Lines Matching defs:instance_

206     base::subtle::AtomicWord value = base::subtle::NoBarrier_Load(&instance_);
209 ANNOTATE_HAPPENS_AFTER(&instance_);
214 if (base::subtle::Acquire_CompareAndSwap(&instance_,
217 // instance_ was NULL and is now kBeingCreatedMarker. Only one thread
225 ANNOTATE_HAPPENS_BEFORE(&instance_);
227 &instance_, reinterpret_cast<base::subtle::AtomicWord>(newval));
243 value = base::subtle::NoBarrier_Load(&instance_);
250 ANNOTATE_HAPPENS_AFTER(&instance_);
259 // created. We should only ever get here with a valid instance_ pointer.
261 reinterpret_cast<Type*>(base::subtle::NoBarrier_Load(&instance_)));
262 instance_ = 0;
264 static base::subtle::AtomicWord instance_;
269 instance_ = 0;