Searched defs:unit_type (Results 1 - 5 of 5) sorted by relevance

/vbox/src/libs/libpng-1.2.8/
H A Dpngget.c303 png_uint_32 *res_x, png_uint_32 *res_y, int *unit_type)
320 if (unit_type != NULL)
322 *unit_type = (int)info_ptr->phys_unit_type;
324 if(*unit_type == 1)
582 png_int_32 *offset_x, png_int_32 *offset_y, int *unit_type)
585 && offset_x != NULL && offset_y != NULL && unit_type != NULL)
590 *unit_type = (int)info_ptr->offset_unit_type;
660 png_uint_32 *res_x, png_uint_32 *res_y, int *unit_type)
678 if (unit_type != NULL)
680 *unit_type
302 png_get_pHYs_dpi(png_structp png_ptr, png_infop info_ptr, png_uint_32 *res_x, png_uint_32 *res_y, int *unit_type) argument
581 png_get_oFFs(png_structp png_ptr, png_infop info_ptr, png_int_32 *offset_x, png_int_32 *offset_y, int *unit_type) argument
659 png_get_pHYs(png_structp png_ptr, png_infop info_ptr, png_uint_32 *res_x, png_uint_32 *res_y, int *unit_type) argument
[all...]
H A Dpngset.c355 png_int_32 offset_x, png_int_32 offset_y, int unit_type)
363 info_ptr->offset_unit_type = (png_byte)unit_type;
498 png_uint_32 res_x, png_uint_32 res_y, int unit_type)
506 info_ptr->phys_unit_type = (png_byte)unit_type;
354 png_set_oFFs(png_structp png_ptr, png_infop info_ptr, png_int_32 offset_x, png_int_32 offset_y, int unit_type) argument
497 png_set_pHYs(png_structp png_ptr, png_infop info_ptr, png_uint_32 res_x, png_uint_32 res_y, int unit_type) argument
H A Dpngtest.c922 int unit_type; local
924 if (png_get_oFFs(read_ptr, read_info_ptr,&offset_x,&offset_y,&unit_type))
926 png_set_oFFs(write_ptr, write_info_ptr, offset_x, offset_y, unit_type);
948 int unit_type; local
950 if (png_get_pHYs(read_ptr, read_info_ptr, &res_x, &res_y, &unit_type))
952 png_set_pHYs(write_ptr, write_info_ptr, res_x, res_y, unit_type);
H A Dpngrutil.c1473 int unit_type; local
1505 unit_type = buf[8];
1506 png_set_pHYs(png_ptr, info_ptr, res_x, res_y, unit_type);
1516 int unit_type; local
1548 unit_type = buf[8];
1549 png_set_oFFs(png_ptr, info_ptr, offset_x, offset_y, unit_type);
H A Dpngwutil.c1472 int unit_type)
1480 if (unit_type >= PNG_OFFSET_LAST)
1485 buf[8] = (png_byte)unit_type;
1625 int unit_type)
1633 if (unit_type >= PNG_RESOLUTION_LAST)
1638 buf[8] = (png_byte)unit_type;
1471 png_write_oFFs(png_structp png_ptr, png_int_32 x_offset, png_int_32 y_offset, int unit_type) argument
1623 png_write_pHYs(png_structp png_ptr, png_uint_32 x_pixels_per_unit, png_uint_32 y_pixels_per_unit, int unit_type) argument

Completed in 2287 milliseconds