Home | History | Annotate | Download | only in rtl

Lines Matching refs:acquired

68 // last_acquire_ - current thread time when it acquired something from
73 // the remaining bits hold "acquired" flag (the actual value is thread's
76 // acquired this clock (except possibly dirty_tids_).
78 // need to acquire regardless of "acquired" flag value;
118 // Check if we've already acquired src after the last release operation on src
119 bool acquired = false;
130 acquired = true;
134 if (acquired) {
149 acquired = true;
153 // Remember that this thread has acquired this clock.
157 if (acquired) {
179 // Check if we had not acquired anything from other threads
192 // First, remember whether we've acquired dst.
193 bool acquired = IsAlreadyAcquired(dst);
194 if (acquired)
202 // Clear 'acquired' flag in the remaining elements.
211 // If we've acquired dst, remember this fact,
213 if (acquired)
266 // Update the threads time, but preserve 'acquired' flag.
280 // Reset all 'acquired' flags, O(N).
288 // Checks whether the current threads has already acquired src.