Home | History | Annotate | Download | only in tools

Lines Matching refs:file_crc

2778 process_chunk(struct file *file, png_uint_32 file_crc, png_uint_32 next_length,
2795 file->crc ^ 0xffffffff, file_crc);
2802 if ((file->crc ^ 0xffffffff) != file_crc)
2963 png_uint_32 file_crc;
2978 if (read_4(file, &file_crc) == 4) /* else completely truncated */
2995 if ((crc ^ 0xffffffff) == file_crc)
3003 process_chunk(file, file_crc, 0, 0);
3033 process_chunk(file, file_crc, next_length, next_type);
3062 crc = crc_one_byte(crc, file_crc >> 24);
3063 file_crc = (file_crc << 8) + ch;
3113 png_uint_32 file_crc; /* CRC read from file */
3114 unsigned int nread = read_4(file, &file_crc);
3135 process_chunk(file, file_crc, next_length, next_type);
3143 process_chunk(file, file_crc, 0, 0);