Lines Matching refs:l
30 long l = 0; in percpu_test_init() local
36 l += -1; in percpu_test_init()
38 CHECK(l, long_counter, -1); in percpu_test_init()
40 l += 1; in percpu_test_init()
42 CHECK(l, long_counter, 0); in percpu_test_init()
67 l += -ui_one; in percpu_test_init()
69 CHECK(l, long_counter, 0xffffffff); in percpu_test_init()
71 l += ui_one; in percpu_test_init()
73 CHECK(l, long_counter, (long)0x100000000LL); in percpu_test_init()
76 l = 0; in percpu_test_init()
79 l -= ui_one; in percpu_test_init()
81 CHECK(l, long_counter, -1); in percpu_test_init()
83 l = 0; in percpu_test_init()
86 l += ui_one; in percpu_test_init()
88 CHECK(l, long_counter, 1); in percpu_test_init()
90 l += -ui_one; in percpu_test_init()
92 CHECK(l, long_counter, (long)0x100000000LL); in percpu_test_init()
94 l = 0; in percpu_test_init()
97 l -= ui_one; in percpu_test_init()
99 CHECK(l, long_counter, -1); in percpu_test_init()
100 CHECK(l, long_counter, ULONG_MAX); in percpu_test_init()