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

  /external/libpng/contrib/gregbook/
readppm.c 145 ulg rowbytes; local
154 *pRowbytes = rowbytes = channels*width;
157 if ((image_data = (uch *)malloc(rowbytes*height)) == NULL) {
161 Trace((stderr, "readpng_get_image: rowbytes = %ld, height = %ld\n", rowbytes, height));
166 fread(image_data, 1L, rowbytes*height, saved_infile);
readpng.c 209 png_uint_32 i, rowbytes; local
248 * get rowbytes and channels, and allocate image memory */
252 *pRowbytes = rowbytes = png_get_rowbytes(png_ptr, info_ptr);
255 if ((image_data = (uch *)malloc(rowbytes*height)) == NULL) {
266 Trace((stderr, "readpng_get_image: channels = %d, rowbytes = %ld, height = %ld\n", *pChannels, rowbytes, height));
272 row_pointers[i] = image_data + i*rowbytes;
readpng2.h 96 int rowbytes; member in struct:_mainprog_info
wpng.c 166 ulg rowbytes; local
684 /* calculate rowbytes on basis of image type; note that this becomes much
689 rowbytes = wpng_info.width;
691 rowbytes = wpng_info.width * 3;
693 rowbytes = wpng_info.width * 4;
705 ulg image_bytes = rowbytes * wpng_info.height; /* overflow? */
716 wpng_info.row_pointers[i] = wpng_info.image_data + i*rowbytes;
735 wpng_info.image_data = (uch *)malloc(rowbytes);
744 bytes = fread(wpng_info.image_data, 1, rowbytes, wpng_info.infile);
745 if (bytes != rowbytes) {
    [all...]
rpng2-win.c 621 ulg rowbytes = rpng2_info.rowbytes; local
624 Trace((stderr, " rowbytes = %d\n", rpng2_info.rowbytes))
628 rpng2_info.image_data = (uch *)malloc(rowbytes * rpng2_info.height);
643 rpng2_info.row_pointers[i] = rpng2_info.image_data + i*rowbytes;
    [all...]
rpng2-x.c 773 ulg rowbytes = rpng2_info.rowbytes; local
776 Trace((stderr, " rowbytes = %d\n", rpng2_info.rowbytes))
780 rpng2_info.image_data = (uch *)malloc(rowbytes * rpng2_info.height);
795 rpng2_info.row_pointers[i] = rpng2_info.image_data + i*rowbytes;
    [all...]
  /ndk/tests/build/issue20862-libpng-O0/jni/
pnginfo.h 62 png_size_t rowbytes; /* bytes needed to hold an untransformed row */ member in struct:png_info_def
pngstruct.h 104 png_size_t rowbytes; /* size of row in bytes */ member in struct:png_struct_def
png.h 843 png_size_t rowbytes; \/* number of bytes in row *\/ member in struct:png_row_info_struct
    [all...]
  /hardware/ti/omap4xxx/hwc/
hwc.c 110 int rowbytes; member in struct:omap4_hwc_img
113 } dock_image = { .rowbytes = 0 };
    [all...]
  /external/chromium_org/third_party/libpng/
png.h 1158 png_uint_32 rowbytes; \/* number of bytes in row *\/ member in struct:png_row_info_struct
    [all...]
  /external/libpng/
png.h 1205 png_uint_32 rowbytes; \/* number of bytes in row *\/ member in struct:png_row_info_struct
    [all...]
  /external/qemu/distrib/libpng-1.2.19/
png.h 702 png_uint_32 rowbytes; /* bytes needed to hold an untransformed row */ member in struct:png_info_struct
1041 png_uint_32 rowbytes; \/* number of bytes in row *\/ member in struct:png_row_info_struct
1166 png_uint_32 rowbytes; \/* size of row in bytes *\/ member in struct:png_struct_def
    [all...]

Completed in 1397 milliseconds