Searched defs:row_pointers (Results 1 - 8 of 8) sorted by relevance

/external/libpng/contrib/gregbook/
H A Dreadpng.c210 png_bytepp row_pointers = NULL; local
259 if ((row_pointers = (png_bytepp)malloc(height*sizeof(png_bytep))) == NULL) {
269 /* set the individual row_pointers to point at the correct offsets */
272 row_pointers[i] = image_data + i*rowbytes;
277 png_read_image(png_ptr, row_pointers);
283 free(row_pointers);
284 row_pointers = NULL;
H A Dreadpng2.h92 uch **row_pointers; member in struct:_mainprog_info
H A Dwritepng.h100 uch **row_pointers; member in struct:_mainprog_info
/external/libpng/contrib/pngminus/
H A Dpng2pnm.c194 png_byte **row_pointers = NULL; local
322 if ((row_pointers = (png_byte **) malloc (height * sizeof (png_bytep))) == NULL)
330 /* set the individual row_pointers to point at the correct offsets */
332 row_pointers[i] = png_pixels + i * row_bytes;
335 png_read_image (png_ptr, row_pointers);
422 if (row_pointers != (unsigned char**) NULL)
423 free (row_pointers);
H A Dpnm2png.c191 png_byte **row_pointers = NULL; local
412 if (row_pointers == (unsigned char**) NULL)
414 if ((row_pointers = (png_byte **) malloc (height * sizeof (png_bytep))) == NULL)
421 /* set the individual row_pointers to point at the correct offsets */
423 row_pointers[i] = png_pixels + i * row_bytes;
426 png_write_image (png_ptr, row_pointers);
434 if (row_pointers != (unsigned char**) NULL)
435 free (row_pointers);
/external/libpng/
H A Dpngset.c1132 png_set_rows(png_structp png_ptr, png_infop info_ptr, png_bytepp row_pointers) argument
1139 if (info_ptr->row_pointers && (info_ptr->row_pointers != row_pointers))
1141 info_ptr->row_pointers = row_pointers;
1142 if (row_pointers)
/external/qemu/distrib/libpng-1.2.19/
H A Dpngset.c1165 png_set_rows(png_structp png_ptr, png_infop info_ptr, png_bytepp row_pointers) argument
1172 if(info_ptr->row_pointers && (info_ptr->row_pointers != row_pointers))
1174 info_ptr->row_pointers = row_pointers;
1175 if(row_pointers)
H A Dpng.h681 * splt_palettes, scal_unit, row_pointers, and unknowns. By default, these
914 png_bytepp row_pointers; /* the image bits */ member in struct:png_info_struct
2103 /* Returns row_pointers, which is an array of pointers to scanlines that was
2107 /* Set row_pointers, which is an array of pointers to scanlines for use
2110 png_infop info_ptr, png_bytepp row_pointers));

Completed in 86 milliseconds