Lines Matching refs:output_bytes
4596 int output_bytes = out_n*bytes; in stbi__create_png_image_raw() local
4601 …a->out = (stbi_uc *) stbi__malloc_mad3(x, y, output_bytes, 0); // extra bytes to write off the end… in stbi__create_png_image_raw()
4657 cur += output_bytes; in stbi__create_png_image_raw()
4658 prior += output_bytes; in stbi__create_png_image_raw()
4687 …=x-1; i >= 1; --i, cur[filter_bytes]=255,raw+=filter_bytes,cur+=output_bytes,prior+=output_bytes) \ in stbi__create_png_image_raw()
4691 …STBI__CASE(STBI__F_sub) { cur[k] = STBI__BYTECAST(raw[k] + cur[k- output_bytes]); } break; in stbi__create_png_image_raw()
4693 …_avg) { cur[k] = STBI__BYTECAST(raw[k] + ((prior[k] + cur[k- output_bytes])>>1)); } break; in stbi__create_png_image_raw()
4694 …{ cur[k] = STBI__BYTECAST(raw[k] + stbi__paeth(cur[k- output_bytes],prior[k],prior[k- output_bytes… in stbi__create_png_image_raw()
4695 …CASE(STBI__F_avg_first) { cur[k] = STBI__BYTECAST(raw[k] + (cur[k- output_bytes] >> 1)); } brea… in stbi__create_png_image_raw()
4696 …F_paeth_first) { cur[k] = STBI__BYTECAST(raw[k] + stbi__paeth(cur[k- output_bytes],0,0)); } break; in stbi__create_png_image_raw()
4704 for (i=0; i < x; ++i,cur+=output_bytes) { in stbi__create_png_image_raw()