Lines Matching defs:arraysz
77 size_t arraysz, entlen;
93 arraysz = INT_MAX;
95 arraysz = (size_t)tmp_arraysz;
96 names = malloc(arraysz * sizeof (struct dirent64 *));
116 if (nitems >= arraysz) {
124 arraysz += 512; /* no science here */
126 arraysz * sizeof (struct dirent64 *));
162 size_t arraysz, entlen;
178 arraysz = INT_MAX;
180 arraysz = (size_t)tmp_arraysz;
181 names = malloc(arraysz * sizeof (struct dirent *));
201 if (nitems >= arraysz) {
209 arraysz += 512; /* no science here */
211 arraysz * sizeof (struct dirent *));