Lines Matching refs:c
50 struct scandir_cancel_struct c;
60 c.dp = dp;
61 c.v = NULL;
62 c.cnt = 0;
63 __libc_cleanup_push (__scandir_cancel_handler, &c);
86 if (__glibc_unlikely (c.cnt == vsize))
98 c.v = (void *) v;
106 v[c.cnt++] = (struct __old_dirent64 *) memcpy (vnew, d, dsize);
114 while (c.cnt > 0)
115 free (v[--c.cnt]);
117 c.cnt = -1;
123 qsort (v, c.cnt, sizeof (*v),
134 return c.cnt;