Lines Matching defs:run
46 int run, copy;
56 run = copy = 0;
59 if(code >= 0xF8) { /* very long run */
62 run = ((code & 0x7) << 16) + (c0 << 8) + c1 + 2;
63 } else if (code >= 0xF0) { /* long run */
65 run = ((code & 0xF) << 8) + c0 + 2;
66 } else if (code >= 0xE0) { /* short run */
67 run = (code & 0x1F) + 2;
79 /* perform actual run or copy */
80 if(run) {
84 for(i = 0; i < run; i++) {
85 int step = FFMIN(run - i, width - filled);
93 while (run - i > width && rows_to_go > 0) {
202 if(code > 0xE0) { /* run code: 0xE1..0xFF */