Lines Matching refs:count
54 int count;
74 count = fread (cp, 1, statbuf.st_size, fp);
75 if (count == 0 && statbuf.st_size != 0) {
82 cp[count] = '\0'; /* since we allocated one extra */
83 *len_return = count;
95 int count;
105 count = 0;
107 while ((n = fread (cp + count, 1, BUFSIZ, stdin)) > 0) {
108 count += n;
109 /* Here count <= allocated. Prepare for next round. */
110 if (count + BUFSIZ > allocated) {
122 cp[count] = '\0'; /* since we allocated one extra */
123 *len_return = count;