Lines Matching defs:row
1222 int row;
1227 for (row = 0; row < (h>>1); row++) {
1228 stbi_uc *row0 = bytes + row*bytes_per_row;
1229 stbi_uc *row1 = bytes + (h - row - 1)*bytes_per_row;
2191 // where does it appear in the 8x8 matrix coded as row-major?
2622 // rounding biases in column/row passes, see stbi__idct_block for explanation.
2659 // row pass
2844 // row pass
3540 // note we can't handle the last pixel in a row in this loop
3553 __m128i curr = _mm_add_epi16(nears, diff); // current row
3556 // row. "prev" is current row shifted right by 1 pixel; we need to
3558 // "next" is current row shifted left by 1 pixel, with first pixel
3593 int16x8_t curr = vaddq_s16(nears, diff); // current row
3596 // row. "prev" is current row shifted right by 1 pixel; we need to
3598 // "next" is current row shifted left by 1 pixel, with first pixel
3853 int ypos; // which pre-expansion row we're on
4622 // synthetic filters used for first scanline to avoid needing a dummy row of 0s
4692 // if first row, use special filter that doesn't sample previous row
4766 cur = a->out + stride*j; // start at the beginning of the row again
5205 raw_len = bpl * s->img_y * s->img_n /* pixels */ + s->img_y /* filter mode per row */;
5934 int row = tga_inverted ? tga_height -i - 1 : i;
5935 stbi_uc *tga_row = tga_data + row*tga_width*tga_comp;
6221 // The RLE-compressed data is preceded by a 2-byte data count for each row in the data,