Lines Matching refs:neg
147 refcount_t neg = REFCOUNT_INIT(0);
150 refcount_dec(&neg);
152 check_negative(&neg, 0);
161 refcount_t neg = REFCOUNT_INIT(0);
164 if (refcount_dec_and_test(&neg))
167 check_negative(&neg, 0);
176 refcount_t neg = REFCOUNT_INIT(3);
179 if (refcount_sub_and_test(5, &neg))
182 check_negative(&neg, 3);
191 refcount_t neg = REFCOUNT_INIT(0);
194 if (refcount_sub_and_test(0, &neg))
197 check_negative(&neg, 0);