HomeSort by relevance Sort by last modified time
    Searched defs:image_data (Results 1 - 6 of 6) sorted by null

  /external/libpng/contrib/gregbook/
readppm.c 69 uch *image_data = NULL; variable
157 if ((image_data = (uch *)malloc(rowbytes*height)) == NULL) {
166 fread(image_data, 1L, rowbytes*height, saved_infile);
169 return image_data;
175 if (free_image_data && image_data) {
176 free(image_data);
177 image_data = NULL;
readpng.c 73 uch *image_data = NULL; variable
255 if ((image_data = (uch *)malloc(rowbytes*height)) == NULL) {
261 free(image_data);
262 image_data = NULL;
272 row_pointers[i] = image_data + i*rowbytes;
288 return image_data;
294 if (free_image_data && image_data) {
295 free(image_data);
296 image_data = NULL;
readpng2.h 91 uch *image_data; member in struct:_mainprog_info
rpng-win.c 127 static uch *image_data; variable
390 image_data = readpng_get_image(display_exponent, &image_channels,
396 * nuke image_data!) */
401 if (!image_data) {
411 free(image_data);
556 src = image_data + row*image_rowbytes;
629 if (image_data) {
630 free(image_data);
631 image_data = NULL;
writepng.h 99 uch *image_data; member in struct:_mainprog_info
rpng-x.c 135 static uch *image_data; variable
378 image_data = readpng_get_image(display_exponent, &image_channels,
384 * nuke image_data!) */
389 if (!image_data) {
399 free(image_data);
709 src = image_data + row*image_rowbytes;
783 src = image_data + row*image_rowbytes;
863 if (image_data) {
864 free(image_data);
865 image_data = NULL
    [all...]

Completed in 59 milliseconds