Lines Matching refs:i
55 unsigned char i, j; in testfunc() local
64 for (i = 0; i != 10; i++) in testfunc()
65 kfifo_put(&test, i); in testfunc()
71 i = kfifo_out(&test, buf, 5); in testfunc()
72 printk(KERN_INFO "buf: %.*s\n", i, buf); in testfunc()
86 for (i = 20; kfifo_put(&test, i); i++) in testfunc()
92 if (kfifo_peek(&test, &i)) in testfunc()
93 printk(KERN_INFO "%d\n", i); in testfunc()
97 while (kfifo_get(&test, &i)) { in testfunc()
98 printk(KERN_INFO "item = %d\n", i); in testfunc()
99 if (i != expected_result[j++]) { in testfunc()