Lines Matching +full:- +full:j
1 // SPDX-License-Identifier: GPL-2.0+
46 boottime = systable->boottime; in setup()
63 size_t i, j; in execute() local
67 ret = boottime->create_event_ex(0, TPL_NOTIFY, in execute()
77 ret = boottime->signal_event(events[i]); in execute()
82 for (j = 0; j < GROUP_SIZE; ++j) { in execute()
83 if (counter[j] != i) { in execute()
84 efi_st_printf("i %u, j %u, count %u\n", in execute()
85 (unsigned int)i, (unsigned int)j, in execute()
86 (unsigned int)counter[j]); in execute()
92 ret = boottime->check_event(events[j]); in execute()
97 if (counter[j] != i) { in execute()
98 efi_st_printf("i %u, j %u, count %u\n", in execute()
99 (unsigned int)i, (unsigned int)j, in execute()
100 (unsigned int)counter[j]); in execute()
106 ret = boottime->check_event(events[j]); in execute()
112 if (counter[j] != i + 1) { in execute()
113 efi_st_printf("i %u, j %u, count %u\n", in execute()
114 (unsigned int)i, (unsigned int)j, in execute()
115 (unsigned int)counter[j]); in execute()
124 ret = boottime->close_event(events[i]); in execute()