Lines Matching refs:counter
56 val = v->counter; in atomic64_read()
68 v->counter = i; in atomic64_set()
80 v->counter c_op a; \
93 val = (v->counter c_op a); \
120 val = v->counter - 1; in atomic64_dec_if_positive()
122 v->counter = val; in atomic64_dec_if_positive()
135 val = v->counter; in atomic64_cmpxchg()
137 v->counter = n; in atomic64_cmpxchg()
150 val = v->counter; in atomic64_xchg()
151 v->counter = new; in atomic64_xchg()
164 if (v->counter != u) { in atomic64_add_unless()
165 v->counter += a; in atomic64_add_unless()