Home | History | Annotate | Download | only in libpng

Lines Matching refs:png_byte

158    png_byte buf[8];
219 png_byte tmpbuf[PNG_INFLATE_BUF_SIZE];
253 png_byte crc_bytes[4];
841 png_byte buf[13];
871 png_ptr->bit_depth = (png_byte)bit_depth;
872 png_ptr->interlaced = (png_byte)interlace_type;
873 png_ptr->color_type = (png_byte)color_type;
875 png_ptr->filter_type = (png_byte)filter_type;
877 png_ptr->compression_type = (png_byte)compression_type;
902 png_ptr->pixel_depth = (png_byte)(png_ptr->bit_depth * png_ptr->channels);
993 png_byte buf[3];
1003 png_byte buf[3];
1123 png_byte buf[4];
1161 png_byte sample_depth;
1162 png_byte buf[4];
1242 png_byte buf[32];
1314 png_byte intent;
1820 png_byte readbuf[PNG_MAX_PALETTE_LENGTH];
1843 png_byte buf[2];
1859 png_byte buf[6];
1925 png_byte buf[6];
2059 png_byte buf[1];
2122 png_byte buf[2];
2139 png_byte buf[9];
2185 png_byte buf[9];
2233 png_byte type, nparams;
2454 png_byte buf[7];
2872 png_ptr->unknown_chunk.location = (png_byte)png_ptr->mode/*SAFE*/;
3187 png_byte end_byte = 0;
3407 *dp = (png_byte)((*dp & ~m) | (*sp & m));
3659 *end_ptr = (png_byte)((end_byte & end_mask) | (*end_ptr & ~end_mask));
3688 png_byte v;
3714 v = (png_byte)((*sp >> sshift) & 0x01);
3719 *dp = (png_byte)(tmp & 0xff);
3775 png_byte v;
3778 v = (png_byte)((*sp >> sshift) & 0x03);
3783 *dp = (png_byte)(tmp & 0xff);
3839 png_byte v = (png_byte)((*sp >> sshift) & 0x0f);
3846 *dp = (png_byte)(tmp & 0xff);
3884 png_byte v[8]; /* SAFE; pixel_depth does not exceed 64 */
3923 *rp = (png_byte)(((int)(*rp) + (int)(*(rp-bpp))) & 0xff);
3939 *rp = (png_byte)(((int)(*rp) + (int)(*pp++)) & 0xff);
3956 *rp = (png_byte)(((int)(*rp) +
3964 *rp = (png_byte)(((int)(*rp) +
3981 *row++ = (png_byte)a;
4018 *row++ = (png_byte)a;
4035 *row++ = (png_byte)a;
4069 *row++ = (png_byte)a;
4142 png_byte tmpbuf[PNG_INFLATE_BUF_SIZE];
4311 static PNG_CONST png_byte png_pass_start[7] = {0, 4, 0, 2, 0, 1, 0};
4314 static PNG_CONST png_byte png_pass_inc[7] = {8, 8, 4, 4, 2, 2, 1};
4317 static PNG_CONST png_byte png_pass_ystart[7] = {0, 0, 4, 0, 2, 0, 1};
4320 static PNG_CONST png_byte png_pass_yinc[7] = {8, 8, 8, 4, 4, 2, 2};
4376 static PNG_CONST png_byte png_pass_start[7] = {0, 4, 0, 2, 0, 1, 0};
4379 static PNG_CONST png_byte png_pass_inc[7] = {8, 8, 4, 4, 2, 2, 1};
4382 static PNG_CONST png_byte png_pass_ystart[7] = {0, 0, 4, 0, 2, 0, 1};
4385 static PNG_CONST png_byte png_pass_yinc[7] = {8, 8, 8, 4, 4, 2, 2};
4562 png_ptr->maximum_pixel_depth = (png_byte)max_pixel_depth;