Lines Matching refs:clk_
102 internal_memset(clk_, 0, sizeof(clk_)); in ThreadClock()
103 clk_[tid_].reused = reused_; in ThreadClock()
128 if (clk_[tid].epoch < epoch) { in acquire()
129 clk_[tid].epoch = epoch; in acquire()
136 last_acquire_ = clk_[tid_].epoch; in acquire()
147 if (clk_[i].epoch < epoch) { in acquire()
148 clk_[i].epoch = epoch; in acquire()
159 last_acquire_ = clk_[tid_].epoch; in acquire()
199 ce.epoch = max(ce.epoch, clk_[i].epoch); in release()
238 ce.epoch = clk_[i].epoch; in ReleaseStore()
267 dst->elem(tid_).epoch = clk_[tid_].epoch; in UpdateCurrentThread()
295 if (clk_[tid].epoch < src->elem(tid).epoch) in IsAlreadyAcquired()
353 DCHECK_GE(v, clk_[tid].epoch); in set()
354 clk_[tid].epoch = v; in set()
357 last_acquire_ = clk_[tid_].epoch; in set()
363 printf("%s%llu", i == 0 ? "" : ",", clk_[i].epoch); in DebugDump()
366 printf("%s%llu", i == 0 ? "" : ",", clk_[i].reused); in DebugDump()