Lines Matching defs:count
759 int count;
762 for (count = 0; count < width; count++)
773 i = srcbuffer[count + (count >> 2)]; /* Low byte for pixel */
774 j = srcbuffer[(((count / 4) + 1) * 5) - 1]; /* "5th" byte */
775 j = j >> ((count % 4) * 2); /* Get upper 2 bits of intensity */
785 dstbuffer[count * 2] = HIGH_BYTE(k);
786 dstbuffer[(count * 2) + 1] = LOW_BYTE(k);
790 dstbuffer[count * 3 * 2] = HIGH_BYTE(k);
791 dstbuffer[(count * 3 * 2) + 1] = LOW_BYTE(k);
930 int count, readnum, colournum, scanlinenum;
1022 for (count = 0; count < sp->scanheadwidth; count++)
1026 sp->blackweight[count] = (column_sum(&image, count) * 6)
1114 for (count = 0; count < sp->scanheadwidth; count++)
1117 sp->redweight[count] =
1118 column_sum(&image, count) >> 6;
1120 sp->greenweight[count] =
1121 column_sum(&image, count) >> 6;
1123 sp->blueweight[count] =
1124 column_sum(&image, count) >> 6;