Lines Matching refs:png_byte
139 png_byte crc_bytes[4];
338 png_byte buf[13];
368 png_ptr->bit_depth = (png_byte)bit_depth;
369 png_ptr->interlaced = (png_byte)interlace_type;
370 png_ptr->color_type = (png_byte)color_type;
372 png_ptr->filter_type = (png_byte)filter_type;
374 png_ptr->compression_type = (png_byte)compression_type;
395 png_ptr->pixel_depth = (png_byte)(png_ptr->bit_depth *
464 png_byte buf[3];
474 png_byte buf[3];
574 png_byte buf[4];
652 png_byte buf[4];
717 png_byte buf[4];
886 png_byte buf[1];
984 png_byte compression_type;
1236 png_byte readbuf[PNG_MAX_PALETTE_LENGTH];
1257 png_byte buf[2];
1272 png_byte buf[6];
1329 png_byte buf[6];
1454 png_byte buf[2];
1471 png_byte buf[9];
1514 png_byte buf[9];
1560 png_byte type, nparams;
1813 png_byte buf[7];
2299 *dp &= (png_byte)((0x7f7f >> (7 - shift)) & 0xff);
2300 *dp |= (png_byte)(value << shift);
2352 *dp &= (png_byte)((0x3f3f >> (6 - shift)) & 0xff);
2353 *dp |= (png_byte)(value << shift);
2403 *dp &= (png_byte)((0xf0f >> (4 - shift)) & 0xff);
2404 *dp |= (png_byte)(value << shift);
2429 png_byte m = 0x80;
2489 png_byte v;
2514 v = (png_byte)((*sp >> sshift) & 0x01);
2517 *dp &= (png_byte)((0x7f7f >> (7 - dshift)) & 0xff);
2518 *dp |= (png_byte)(v << dshift);
2567 png_byte v;
2570 v = (png_byte)((*sp >> sshift) & 0x03);
2573 *dp &= (png_byte)((0x3f3f >> (6 - dshift)) & 0xff);
2574 *dp |= (png_byte)(v << dshift);
2623 png_byte v = (png_byte)((*sp >> sshift) & 0xf);
2628 *dp &= (png_byte)((0xf0f >> (4 - dshift)) & 0xff);
2629 *dp |= (png_byte)(v << dshift);
2659 png_byte v[8];
2705 *rp = (png_byte)(((int)(*rp) + (int)(*lp++)) & 0xff);
2719 *rp = (png_byte)(((int)(*rp) + (int)(*pp++)) & 0xff);
2735 *rp = (png_byte)(((int)(*rp) +
2742 *rp = (png_byte)(((int)(*rp) +
2760 *rp = (png_byte)(((int)(*rp) + (int)(*pp++)) & 0xff);
2796 *rp = (png_byte)(((int)(*rp) + p) & 0xff);
2883 png_byte chunk_length[4];