Lines Matching defs:cnt
10 int cnt;
17 int cnt = st->cnt;
21 for (i=0; i<cnt; i++) {
29 if (i==cnt) {
36 if (aio_suspend((void *)cbs, cnt, 0))
70 int lio_listio(int mode, struct aiocb *restrict const *restrict cbs, int cnt, struct sigevent *restrict sev)
76 if (cnt < 0) {
82 if (!(st = malloc(sizeof *st + cnt*sizeof *cbs))) {
86 st->cnt = cnt;
88 memcpy(st->cbs, (void*) cbs, cnt*sizeof *cbs);
91 for (i=0; i<cnt; i++) {