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

  /external/libpng/contrib/gregbook/
readpng.c 210 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;
readpng2.h 92 uch **row_pointers; member in struct:_mainprog_info
writepng.h 100 uch **row_pointers; member in struct:_mainprog_info
  /external/libpng/contrib/pngminus/
png2pnm.c 194 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);
pnm2png.c 191 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);
  /development/tools/etc1tool/
etc1tool.cpp 142 png_bytep* row_pointers = NULL; // Does not need to be deallocated. local
193 row_pointers = png_get_rows(png_ptr, info_ptr);
209 memcpy(pSourceImage + y * stride, row_pointers[y], stride);
  /hardware/ti/omap4xxx/hwc/
hwc.c 1572 png_bytepp row_pointers = NULL; local
    [all...]
  /external/qemu/distrib/libpng-1.2.19/
png.h 681 * 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
    [all...]

Completed in 329 milliseconds