/third_party/skia/third_party/externals/libpng/ |
D | pngset.c | 969 png_const_timep mod_time) in png_set_tIME() argument 973 if (png_ptr == NULL || info_ptr == NULL || mod_time == NULL || in png_set_tIME() 977 if (mod_time->month == 0 || mod_time->month > 12 || in png_set_tIME() 978 mod_time->day == 0 || mod_time->day > 31 || in png_set_tIME() 979 mod_time->hour > 23 || mod_time->minute > 59 || in png_set_tIME() 980 mod_time->second > 60) in png_set_tIME() 987 info_ptr->mod_time = *mod_time; in png_set_tIME()
|
D | pngwutil.c | 1863 png_write_tIME(png_structrp png_ptr, png_const_timep mod_time) in png_write_tIME() argument 1869 if (mod_time->month > 12 || mod_time->month < 1 || in png_write_tIME() 1870 mod_time->day > 31 || mod_time->day < 1 || in png_write_tIME() 1871 mod_time->hour > 23 || mod_time->second > 60) in png_write_tIME() 1877 png_save_uint_16(buf, mod_time->year); in png_write_tIME() 1878 buf[2] = mod_time->month; in png_write_tIME() 1879 buf[3] = mod_time->day; in png_write_tIME() 1880 buf[4] = mod_time->hour; in png_write_tIME() 1881 buf[5] = mod_time->minute; in png_write_tIME() 1882 buf[6] = mod_time->second; in png_write_tIME()
|
D | pngtest.c | 1344 png_timep mod_time; in test_one_file() local 1346 if (png_get_tIME(read_ptr, read_info_ptr, &mod_time) != 0) in test_one_file() 1348 png_set_tIME(write_ptr, write_info_ptr, mod_time); in test_one_file() 1350 if (png_convert_to_rfc1123_buffer(tIME_string, mod_time) != 0) in test_one_file() 1580 png_timep mod_time; in test_one_file() local 1582 if (png_get_tIME(read_ptr, end_info_ptr, &mod_time) != 0) in test_one_file() 1584 png_set_tIME(write_ptr, write_end_info_ptr, mod_time); in test_one_file() 1586 if (png_convert_to_rfc1123_buffer(tIME_string, mod_time) != 0) in test_one_file()
|
D | pnginfo.h | 129 png_time mod_time; member
|
D | pngget.c | 1076 png_timep *mod_time) in png_get_tIME() argument 1081 (info_ptr->valid & PNG_INFO_tIME) != 0 && mod_time != NULL) in png_get_tIME() 1083 *mod_time = &(info_ptr->mod_time); in png_get_tIME()
|
D | pngrutil.c | 2472 png_time mod_time; in png_handle_tIME() local 2501 mod_time.second = buf[6]; in png_handle_tIME() 2502 mod_time.minute = buf[5]; in png_handle_tIME() 2503 mod_time.hour = buf[4]; in png_handle_tIME() 2504 mod_time.day = buf[3]; in png_handle_tIME() 2505 mod_time.month = buf[2]; in png_handle_tIME() 2506 mod_time.year = png_get_uint_16(buf); in png_handle_tIME() 2508 png_set_tIME(png_ptr, info_ptr, &mod_time); in png_handle_tIME()
|
D | pngwrite.c | 278 png_write_tIME(png_ptr, &(info_ptr->mod_time)); in png_write_info() 383 png_write_tIME(png_ptr, &(info_ptr->mod_time)); in png_write_end()
|
/third_party/flutter/skia/third_party/externals/libpng/ |
D | pngset.c | 969 png_const_timep mod_time) in png_set_tIME() argument 973 if (png_ptr == NULL || info_ptr == NULL || mod_time == NULL || in png_set_tIME() 977 if (mod_time->month == 0 || mod_time->month > 12 || in png_set_tIME() 978 mod_time->day == 0 || mod_time->day > 31 || in png_set_tIME() 979 mod_time->hour > 23 || mod_time->minute > 59 || in png_set_tIME() 980 mod_time->second > 60) in png_set_tIME() 987 info_ptr->mod_time = *mod_time; in png_set_tIME()
|
D | pngwutil.c | 1863 png_write_tIME(png_structrp png_ptr, png_const_timep mod_time) in png_write_tIME() argument 1869 if (mod_time->month > 12 || mod_time->month < 1 || in png_write_tIME() 1870 mod_time->day > 31 || mod_time->day < 1 || in png_write_tIME() 1871 mod_time->hour > 23 || mod_time->second > 60) in png_write_tIME() 1877 png_save_uint_16(buf, mod_time->year); in png_write_tIME() 1878 buf[2] = mod_time->month; in png_write_tIME() 1879 buf[3] = mod_time->day; in png_write_tIME() 1880 buf[4] = mod_time->hour; in png_write_tIME() 1881 buf[5] = mod_time->minute; in png_write_tIME() 1882 buf[6] = mod_time->second; in png_write_tIME()
|
D | pngtest.c | 1344 png_timep mod_time; in test_one_file() local 1346 if (png_get_tIME(read_ptr, read_info_ptr, &mod_time) != 0) in test_one_file() 1348 png_set_tIME(write_ptr, write_info_ptr, mod_time); in test_one_file() 1350 if (png_convert_to_rfc1123_buffer(tIME_string, mod_time) != 0) in test_one_file() 1580 png_timep mod_time; in test_one_file() local 1582 if (png_get_tIME(read_ptr, end_info_ptr, &mod_time) != 0) in test_one_file() 1584 png_set_tIME(write_ptr, write_end_info_ptr, mod_time); in test_one_file() 1586 if (png_convert_to_rfc1123_buffer(tIME_string, mod_time) != 0) in test_one_file()
|
D | pnginfo.h | 129 png_time mod_time; member
|
D | pngget.c | 1076 png_timep *mod_time) in png_get_tIME() argument 1081 (info_ptr->valid & PNG_INFO_tIME) != 0 && mod_time != NULL) in png_get_tIME() 1083 *mod_time = &(info_ptr->mod_time); in png_get_tIME()
|
D | pngrutil.c | 2472 png_time mod_time; in png_handle_tIME() local 2501 mod_time.second = buf[6]; in png_handle_tIME() 2502 mod_time.minute = buf[5]; in png_handle_tIME() 2503 mod_time.hour = buf[4]; in png_handle_tIME() 2504 mod_time.day = buf[3]; in png_handle_tIME() 2505 mod_time.month = buf[2]; in png_handle_tIME() 2506 mod_time.year = png_get_uint_16(buf); in png_handle_tIME() 2508 png_set_tIME(png_ptr, info_ptr, &mod_time); in png_handle_tIME()
|
/third_party/libpng/ |
D | pngset.c | 969 png_const_timep mod_time) in png_set_tIME() argument 973 if (png_ptr == NULL || info_ptr == NULL || mod_time == NULL || in png_set_tIME() 977 if (mod_time->month == 0 || mod_time->month > 12 || in png_set_tIME() 978 mod_time->day == 0 || mod_time->day > 31 || in png_set_tIME() 979 mod_time->hour > 23 || mod_time->minute > 59 || in png_set_tIME() 980 mod_time->second > 60) in png_set_tIME() 987 info_ptr->mod_time = *mod_time; in png_set_tIME()
|
D | pngwutil.c | 1863 png_write_tIME(png_structrp png_ptr, png_const_timep mod_time) in png_write_tIME() argument 1869 if (mod_time->month > 12 || mod_time->month < 1 || in png_write_tIME() 1870 mod_time->day > 31 || mod_time->day < 1 || in png_write_tIME() 1871 mod_time->hour > 23 || mod_time->second > 60) in png_write_tIME() 1877 png_save_uint_16(buf, mod_time->year); in png_write_tIME() 1878 buf[2] = mod_time->month; in png_write_tIME() 1879 buf[3] = mod_time->day; in png_write_tIME() 1880 buf[4] = mod_time->hour; in png_write_tIME() 1881 buf[5] = mod_time->minute; in png_write_tIME() 1882 buf[6] = mod_time->second; in png_write_tIME()
|
D | pngtest.c | 1344 png_timep mod_time; in test_one_file() local 1346 if (png_get_tIME(read_ptr, read_info_ptr, &mod_time) != 0) in test_one_file() 1348 png_set_tIME(write_ptr, write_info_ptr, mod_time); in test_one_file() 1350 if (png_convert_to_rfc1123_buffer(tIME_string, mod_time) != 0) in test_one_file() 1580 png_timep mod_time; in test_one_file() local 1582 if (png_get_tIME(read_ptr, end_info_ptr, &mod_time) != 0) in test_one_file() 1584 png_set_tIME(write_ptr, write_end_info_ptr, mod_time); in test_one_file() 1586 if (png_convert_to_rfc1123_buffer(tIME_string, mod_time) != 0) in test_one_file()
|
D | pnginfo.h | 129 png_time mod_time; member
|
D | pngget.c | 1076 png_timep *mod_time) in png_get_tIME() argument 1081 (info_ptr->valid & PNG_INFO_tIME) != 0 && mod_time != NULL) in png_get_tIME() 1083 *mod_time = &(info_ptr->mod_time); in png_get_tIME()
|
D | pngrutil.c | 2472 png_time mod_time; in png_handle_tIME() local 2501 mod_time.second = buf[6]; in png_handle_tIME() 2502 mod_time.minute = buf[5]; in png_handle_tIME() 2503 mod_time.hour = buf[4]; in png_handle_tIME() 2504 mod_time.day = buf[3]; in png_handle_tIME() 2505 mod_time.month = buf[2]; in png_handle_tIME() 2506 mod_time.year = png_get_uint_16(buf); in png_handle_tIME() 2508 png_set_tIME(png_ptr, info_ptr, &mod_time); in png_handle_tIME()
|
D | pngwrite.c | 278 png_write_tIME(png_ptr, &(info_ptr->mod_time)); in png_write_info() 383 png_write_tIME(png_ptr, &(info_ptr->mod_time)); in png_write_end()
|
/third_party/mesa3d/src/gallium/frontends/va/ |
D | picture_mpeg4.c | 150 int mod_time; in vlVaDecoderFixMPEG4Startcode() local 179 mod_time = context->mpeg4.frame_num % in vlVaDecoderFixMPEG4Startcode() 182 while (mod_time--) in vlVaDecoderFixMPEG4Startcode()
|
/third_party/boost/boost/gil/extension/io/png/detail/ |
D | reader_backend.hpp | 550 png_timep mod_time = png_timep( nullptr ); in read_header() local 553 , &mod_time in read_header() 555 if( mod_time ) in read_header() 557 this->_info._mod_time = *mod_time; in read_header()
|
/third_party/libwebsockets/lib/roles/http/server/ |
D | fops-zip.c | 62 uint32_t mod_time; member 227 priv->hdr.mod_time = get_u32(buf + ZC_LAST_MOD_FILE_TIME); in lws_fops_zip_scan() 361 priv->fop_fd.mod_time = priv->hdr.mod_time; in lws_fops_zip_open()
|
/third_party/libwebsockets/lib/core/ |
D | vfs.c | 48 return fop_fd->mod_time; in lws_vfs_get_mod_time()
|
/third_party/libwebsockets/include/libwebsockets/ |
D | lws-vfs.h | 84 uint32_t mod_time; member
|