Lines Matching refs:next

412    void     (*skip)  (void *user,int n);                 // skip the next 'n' bytes, or 'unget' the last -n bytes if negative
1922 // - allows good upsampling (see next)
3403 // repeated 0xff keeps trying to read the next byte of the marker.
3558 // "next" is current row shifted left by 1 pixel, with first pixel
3559 // of next block of 8 pixels added in.
3563 __m128i next = _mm_insert_epi16(nxt0, 3*in_near[i+8] + in_far[i+8], 7);
3567 // odd pixels = 3*cur + next = cur*4 + (next - cur)
3572 __m128i nxtd = _mm_sub_epi16(next, curr);
3598 // "next" is current row shifted left by 1 pixel, with first pixel
3599 // of next block of 8 pixels added in.
3603 int16x8_t next = vsetq_lane_s16(3*in_near[i+8] + in_far[i+8], nxt0, 7);
3607 // odd pixels = 3*cur + next = cur*4 + (next - cur)
3611 int16x8_t nxtd = vsubq_s16(next, curr);
3622 // "previous" value for next iter
4787 // could also overwrite the next scanline. can it overwrite non-empty data
4788 // on the next scanline? yes, consider 1-pixel-wide scanlines with 1-bit-per-pixel.
5976 // yep, get the next byte as a RLE command
6014 // clear the reading flag for the next pixel
6097 // Copy next len+1 bytes literally.
6108 // Next -len+1 bytes in the dest are replicated from next source byte.
6215 // Read the next source byte into n.
6216 // If n is between 0 and 127 inclusive, copy the next n+1 bytes literally.
6217 // Else if n is between -127 and -1 inclusive, copy the next byte -n+1 times.
6898 g->pal[g->bgindex][3] = 255; // just in case it was made transparent, undo that; It will be reset next frame if need be;