Lines Matching refs:count
374 int count = 0;
385 count = GetDataBlock(fd, (unsigned char*) buf);
386 } while (count > 0);
387 return count;
390 count = GetDataBlock(fd, (unsigned char*) buf);
391 if (count < 0) {
399 count = GetDataBlock(fd, (unsigned char*) buf);
400 } while (count > 0);
401 return count;
405 count = GetDataBlock(fd, (unsigned char*) buf);
406 } while (count > 0);
407 return count;
417 unsigned char count;
419 if (! ReadOK(fd,&count,1)) {
423 ZeroDataBlock = count == 0;
425 if ((count != 0) && (! ReadOK(fd, buf, count))) {
429 return count;
594 int count;
600 while ((count = GetDataBlock(fd, buf)) > 0)
603 if (count != 0)
660 unsigned char count;
678 if ((count = GetDataBlock(fd, &buf[2])) == 0)
681 last_byte = 2 + count;
683 lastbit = (2+count)*8 ;