Home | History | Annotate | Download | only in cups

Lines Matching defs:byte

324     fputs("cupsFileWrite(256 512-byte records): ", stdout);
460 int byte; /* Byte from file */
708 for (i = 0, byte = 0; i < 256; i ++)
709 if ((byte = cupsFileGetChar(fp)) != i)
714 else if (byte >= 0)
716 printf("FAIL (Got %d, expected %d)\n", byte, i);
763 if ((byte = cupsFileGetChar(fp)) < 0)
765 else if (byte != partial_line[i])
772 printf("FAIL (got '%c', expected '%c')\n", byte, partial_line[i]);