Searched refs:stbiw__paeth (Results 1 – 2 of 2) sorted by relevance
/hardware/google/gfxstream/third-party/astc-encoder/Source/ |
D | stb_image_write.h | 1083 static unsigned char stbiw__paeth(int a, int b, int c) in stbiw__paeth() function 1113 … case 4: line_buffer[i] = (signed char) (z[i] - stbiw__paeth(0,z[i-signed_stride],0)); break; in stbiw__encode_png_line() 1122 …case 4: for (i=n; i < width*n; ++i) line_buffer[i] = z[i] - stbiw__paeth(z[i-n], z[i-signed_stride… in stbiw__encode_png_line() 1124 case 6: for (i=n; i < width*n; ++i) line_buffer[i] = z[i] - stbiw__paeth(z[i-n], 0,0); break; in stbiw__encode_png_line()
|
/hardware/google/gfxstream/third-party/stb/include/stb/ |
D | stb_image_write.h | 1083 static unsigned char stbiw__paeth(int a, int b, int c) in stbiw__paeth() function 1113 … case 4: line_buffer[i] = (signed char) (z[i] - stbiw__paeth(0,z[i-signed_stride],0)); break; in stbiw__encode_png_line() 1122 …case 4: for (i=n; i < width*n; ++i) line_buffer[i] = z[i] - stbiw__paeth(z[i-n], z[i-signed_stride… in stbiw__encode_png_line() 1124 case 6: for (i=n; i < width*n; ++i) line_buffer[i] = z[i] - stbiw__paeth(z[i-n], 0,0); break; in stbiw__encode_png_line()
|