Lines Matching refs:l
27 long l = 0; in percpu_test_init() local
34 l += -1; in percpu_test_init()
36 CHECK(l, long_counter, -1); in percpu_test_init()
38 l += 1; in percpu_test_init()
40 CHECK(l, long_counter, 0); in percpu_test_init()
65 l += -ui_one; in percpu_test_init()
67 CHECK(l, long_counter, 0xffffffff); in percpu_test_init()
69 l += ui_one; in percpu_test_init()
71 CHECK(l, long_counter, (long)0x100000000LL); in percpu_test_init()
74 l = 0; in percpu_test_init()
77 l -= ui_one; in percpu_test_init()
79 CHECK(l, long_counter, -1); in percpu_test_init()
81 l = 0; in percpu_test_init()
84 l += ui_one; in percpu_test_init()
86 CHECK(l, long_counter, 1); in percpu_test_init()
88 l += -ui_one; in percpu_test_init()
90 CHECK(l, long_counter, (long)0x100000000LL); in percpu_test_init()
92 l = 0; in percpu_test_init()
95 l -= ui_one; in percpu_test_init()
97 CHECK(l, long_counter, -1); in percpu_test_init()
98 CHECK(l, long_counter, ULONG_MAX); in percpu_test_init()