Lines Matching refs:skip
42 * <skip> <run> <data>
44 * where <skip> is the number of transparent pixels to skip,
55 * <skip> and <run> are unsigned 8 bit integers, except for 32 bit depth
59 * The end of the sequence is marked by a zero <skip>,<run> pair at the *
73 * the alpha value occupying the highest 8 bits. The <skip> and <run>
81 * The <skip> and <run> counts are 8 bit for the opaque lines, 16 bit
85 * The end of the sequence is marked by a zero <skip>,<run> pair at the
863 /* skip lines at the top if neccessary */
1056 /* skip padding if necessary */ \
1128 /* skip lines at the top if necessary */
1135 /* skip opaque line */
1149 /* skip padding */
1152 /* skip translucent line */
1212 /* skip padding if necessary */ \
1520 int run, skip, len;
1527 skip = runstart - skipstart;
1528 if(skip == w)
1531 while(skip > max_opaque_run) {
1533 skip -= max_opaque_run;
1536 ADD_OPAQUE_COUNTS(skip, len);
1555 int run, skip, len;
1562 skip = runstart - skipstart;
1563 blankline &= (skip == w);
1565 while(skip > max_transl_run) {
1567 skip -= max_transl_run;
1570 ADD_TRANSL_COUNTS(skip, len);
1649 int skip, run;
1685 skip = run = 0;
1709 int run, skip, len;
1719 skip = runstart - skipstart;
1720 if(skip == w)
1725 while(skip > maxn) {
1727 skip -= maxn;
1730 ADD_COUNTS(skip, len);
1875 /* skip padding if needed */