Lines Matching defs:lines
92 * CHUNK_SIZE lines whenever needed. The count of the
93 * current size is maintained in the variable "lines"
103 static int lines;
246 lines = CHUNK_SIZE;
247 ttnames = calloc(lines, sizeof (char *));
248 logouts = calloc(lines, sizeof (time_t));
258 for (i = 0; i <= lines; i++) {
259 if (i == lines)
386 for (i = 0; i < lines; i++)
417 lines += CHUNK_SIZE;
418 tmpttnames = realloc(ttnames, sizeof (char *)*lines);
419 tmplogouts = realloc(logouts, sizeof (time_t)*lines);
427 for (j = lines-CHUNK_SIZE; j < lines; j++) {