Home | History | Annotate | Download | only in libpng16

Lines Matching refs:png_byte

158    png_byte buf[8];
216 png_byte tmpbuf[PNG_INFLATE_BUF_SIZE];
250 png_byte crc_bytes[4];
831 png_byte buf[13];
861 png_ptr->bit_depth = (png_byte)bit_depth;
862 png_ptr->interlaced = (png_byte)interlace_type;
863 png_ptr->color_type = (png_byte)color_type;
865 png_ptr->filter_type = (png_byte)filter_type;
867 png_ptr->compression_type = (png_byte)compression_type;
892 png_ptr->pixel_depth = (png_byte)(png_ptr->bit_depth * png_ptr->channels);
983 png_byte buf[3];
993 png_byte buf[3];
1113 png_byte buf[4];
1151 png_byte sample_depth;
1152 png_byte buf[4];
1232 png_byte buf[32];
1304 png_byte intent;
1806 png_byte readbuf[PNG_MAX_PALETTE_LENGTH];
1829 png_byte buf[2];
1845 png_byte buf[6];
1911 png_byte buf[6];
2045 png_byte buf[2];
2062 png_byte buf[9];
2108 png_byte buf[9];
2156 png_byte type, nparams;
2377 png_byte buf[7];
2787 png_ptr->unknown_chunk.location = (png_byte)png_ptr->mode/*SAFE*/;
3064 png_byte end_byte = 0;
3284 *dp = (png_byte)((*dp & ~m) | (*sp & m));
3536 *end_ptr = (png_byte)((end_byte & end_mask) | (*end_ptr & ~end_mask));
3564 png_byte v;
3590 v = (png_byte)((*sp >> sshift) & 0x01);
3595 *dp = (png_byte)(tmp & 0xff);
3650 png_byte v;
3653 v = (png_byte)((*sp >> sshift) & 0x03);
3658 *dp = (png_byte)(tmp & 0xff);
3713 png_byte v = (png_byte)((*sp >> sshift) & 0x0f);
3720 *dp = (png_byte)(tmp & 0xff);
3758 png_byte v[8]; /* SAFE; pixel_depth does not exceed 64 */
3797 *rp = (png_byte)(((int)(*rp) + (int)(*(rp-bpp))) & 0xff);
3813 *rp = (png_byte)(((int)(*rp) + (int)(*pp++)) & 0xff);
3830 *rp = (png_byte)(((int)(*rp) +
3838 *rp = (png_byte)(((int)(*rp) +
3855 *row++ = (png_byte)a;
3889 *row++ = (png_byte)a;
3906 *row++ = (png_byte)a;
3937 *row++ = (png_byte)a;
4010 png_byte tmpbuf[PNG_INFLATE_BUF_SIZE];
4179 static PNG_CONST png_byte png_pass_start[7] = {0, 4, 0, 2, 0, 1, 0};
4182 static PNG_CONST png_byte png_pass_inc[7] = {8, 8, 4, 4, 2, 2, 1};
4185 static PNG_CONST png_byte png_pass_ystart[7] = {0, 0, 4, 0, 2, 0, 1};
4188 static PNG_CONST png_byte png_pass_yinc[7] = {8, 8, 8, 4, 4, 2, 2};
4244 static PNG_CONST png_byte png_pass_start[7] = {0, 4, 0, 2, 0, 1, 0};
4247 static PNG_CONST png_byte png_pass_inc[7] = {8, 8, 4, 4, 2, 2, 1};
4250 static PNG_CONST png_byte png_pass_ystart[7] = {0, 0, 4, 0, 2, 0, 1};
4253 static PNG_CONST png_byte png_pass_yinc[7] = {8, 8, 8, 4, 4, 2, 2};
4430 png_ptr->maximum_pixel_depth = (png_byte)max_pixel_depth;