Lines Matching refs:l
26 long l = 0; in percpu_test_init() local
33 l += -1; in percpu_test_init()
35 CHECK(l, long_counter, -1); in percpu_test_init()
37 l += 1; in percpu_test_init()
39 CHECK(l, long_counter, 0); in percpu_test_init()
64 l += -ui_one; in percpu_test_init()
66 CHECK(l, long_counter, 0xffffffff); in percpu_test_init()
68 l += ui_one; in percpu_test_init()
70 CHECK(l, long_counter, (long)0x100000000LL); in percpu_test_init()
73 l = 0; in percpu_test_init()
76 l -= ui_one; in percpu_test_init()
78 CHECK(l, long_counter, -1); in percpu_test_init()
80 l = 0; in percpu_test_init()
83 l += ui_one; in percpu_test_init()
85 CHECK(l, long_counter, 1); in percpu_test_init()
87 l += -ui_one; in percpu_test_init()
89 CHECK(l, long_counter, (long)0x100000000LL); in percpu_test_init()
91 l = 0; in percpu_test_init()
94 l -= ui_one; in percpu_test_init()
96 CHECK(l, long_counter, -1); in percpu_test_init()
97 CHECK(l, long_counter, ULONG_MAX); in percpu_test_init()