Lines Matching refs:lines
106 static int lines; variable
255 lines = CHUNK_SIZE; in main()
256 ttnames = calloc(lines, sizeof (char *)); in main()
257 logouts = calloc(lines, sizeof (time_t)); in main()
267 for (i = 0; i <= lines; i++) { in main()
268 if (i == lines) in main()
433 for (i = 0; i < lines; i++) in main()
470 lines += CHUNK_SIZE; in reallocate_buffer()
471 tmpttnames = realloc(ttnames, sizeof (char *)*lines); in reallocate_buffer()
472 tmplogouts = realloc(logouts, sizeof (time_t)*lines); in reallocate_buffer()
480 for (j = lines-CHUNK_SIZE; j < lines; j++) { in reallocate_buffer()