Searched refs:sshift (Results 1 – 3 of 3) sorted by relevance
3684 unsigned int sshift, dshift; in png_do_read_interlace() local3695 sshift = ((row_info->width + 7) & 0x07); in png_do_read_interlace()3705 sshift = 7 - ((row_info->width + 7) & 0x07); in png_do_read_interlace()3714 v = (png_byte)((*sp >> sshift) & 0x01); in png_do_read_interlace()3731 if (sshift == s_end) in png_do_read_interlace()3733 sshift = s_start; in png_do_read_interlace()3738 sshift = (unsigned int)((int)sshift + s_inc); in png_do_read_interlace()3747 unsigned int sshift, dshift; in png_do_read_interlace() local3756 sshift = (((row_info->width + 3) & 0x03) << 1); in png_do_read_interlace()3766 sshift = ((3 - ((row_info->width + 3) & 0x03)) << 1); in png_do_read_interlace()[all …]
3561 int sshift, dshift; in png_do_read_interlace() local3571 sshift = (int)((row_info->width + 7) & 0x07); in png_do_read_interlace()3581 sshift = 7 - (int)((row_info->width + 7) & 0x07); in png_do_read_interlace()3590 v = (png_byte)((*sp >> sshift) & 0x01); in png_do_read_interlace()3607 if (sshift == s_end) in png_do_read_interlace()3609 sshift = s_start; in png_do_read_interlace()3614 sshift += s_inc; in png_do_read_interlace()3623 int sshift, dshift; in png_do_read_interlace() local3631 sshift = (int)(((row_info->width + 3) & 0x03) << 1); in png_do_read_interlace()3641 sshift = (int)((3 - ((row_info->width + 3) & 0x03)) << 1); in png_do_read_interlace()[all …]
212 unsigned sshift, dshift; in emit_blit_buffer() local246 sshift = sbox->x & 0x3f; in emit_blit_buffer()309 OUT_RING(ring, CP_BLIT_1_SRC_X1(sshift) | CP_BLIT_1_SRC_Y1(0)); in emit_blit_buffer()310 OUT_RING(ring, CP_BLIT_2_SRC_X2(sshift+w-1) | CP_BLIT_2_SRC_Y2(0)); in emit_blit_buffer()