Home | History | Annotate | Download | only in libpng-1.2.46

Lines Matching refs:mod_time

1729 png_write_tIME(png_structp png_ptr, png_timep mod_time)
1738 if (mod_time->month > 12 || mod_time->month < 1 ||
1739 mod_time->day > 31 || mod_time->day < 1 ||
1740 mod_time->hour > 23 || mod_time->second > 60)
1746 png_save_uint_16(buf, mod_time->year);
1747 buf[2] = mod_time->month;
1748 buf[3] = mod_time->day;
1749 buf[4] = mod_time->hour;
1750 buf[5] = mod_time->minute;
1751 buf[6] = mod_time->second;