HomeSort by relevance Sort by last modified time
    Searched refs:rowbytes (Results 1 - 25 of 73) sorted by null

1 2 3

  /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 if (fread(image_data, 1L, rowbytes*height, saved_infile) <
167 rowbytes*height) {
readpng.c 211 png_uint_32 i, rowbytes; local
260 * get rowbytes and channels, and allocate image memory */
264 *pRowbytes = rowbytes = png_get_rowbytes(png_ptr, info_ptr);
267 if ((image_data = (uch *)malloc(rowbytes*height)) == NULL) {
278 Trace((stderr, "readpng_get_image: channels = %d, rowbytes = %ld, height = %ld\n",
279 *pChannels, rowbytes, height));
285 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...]
  /external/libpng/contrib/libtests/
readpng.c 63 png_size_t rowbytes = png_get_rowbytes(png_ptr, info_ptr); local
66 row = malloc(rowbytes);
67 display = malloc(rowbytes);
makepng.c 329 set_value(png_bytep row, size_t rowbytes, png_uint_32 x, unsigned int bit_depth,
340 if (offset < rowbytes && (bit_depth < 16 || offset+1 < rowbytes))
390 generate_row(png_bytep row, size_t rowbytes, unsigned int y, int color_type,
410 assert(y == 0 && rowbytes == 1 && size_max == 1);
416 assert(y == 0 && rowbytes == 1 && size_max == 3);
422 assert(y == 0 && rowbytes == 8 && size_max == 15);
440 assert(y == 0 && rowbytes == 256 && size_max == 255);
479 assert(rowbytes == 512 && size_max == 255);
504 assert(size_max == 255 && rowbytes == 256*(pixel_depth>>3))
953 png_size_t rowbytes = png_get_rowbytes(png_ptr, info_ptr); local
    [all...]
timepng.c 64 png_size_t rowbytes = png_get_rowbytes(png_ptr, info_ptr); local
66 row = malloc(rowbytes);
67 display = malloc(rowbytes);
  /external/libpng/contrib/intel/
filter_sse2_intrinsics.c 55 int rb = row_info->rowbytes;
74 int rb = row_info->rowbytes;
96 int rb = row_info->rowbytes;
127 int rb = row_info->rowbytes;
193 int rb = row_info->rowbytes;
249 int rb = row_info->rowbytes;
  /external/opencv3/3rdparty/libtiff/
tif_fax3.c 53 tmsize_t rowbytes; /* bytes in a decoded scanline */ member in struct:__anon20983
231 if (occ % sp->b.rowbytes)
250 buf += sp->b.rowbytes;
251 occ -= sp->b.rowbytes;
275 if (occ % sp->b.rowbytes)
307 buf += sp->b.rowbytes;
308 occ -= sp->b.rowbytes;
479 tmsize_t rowbytes; local
491 rowbytes = TIFFTileRowSize(tif);
494 rowbytes = TIFFScanlineSize(tif)
    [all...]
  /external/pdfium/third_party/libtiff/
tif_fax3.c 53 tmsize_t rowbytes; /* bytes in a decoded scanline */ member in struct:__anon22262
231 if (occ % sp->b.rowbytes)
250 buf += sp->b.rowbytes;
251 occ -= sp->b.rowbytes;
275 if (occ % sp->b.rowbytes)
307 buf += sp->b.rowbytes;
308 occ -= sp->b.rowbytes;
480 tmsize_t rowbytes; local
492 rowbytes = TIFFTileRowSize(tif);
495 rowbytes = TIFFScanlineSize(tif)
    [all...]
  /external/libpng/
pnginfo.h 61 png_size_t rowbytes; /* bytes needed to hold an untransformed row */ member in struct:png_info_def
pngrtran.c     [all...]
  /external/mesa3d/src/glx/apple/
apple_cgl.h 62 GLsizei width, GLsizei height, GLint rowbytes,
  /external/pdfium/third_party/lpng_v163/
pnginfo.h 62 png_size_t rowbytes; /* bytes needed to hold an untransformed row */ member in struct:png_info_def
pngrtran.c     [all...]
  /external/skia/src/gpu/
GrSWMaskHelper.h 133 const void *data, size_t rowbytes);
  /external/libpng/arm/
filter_neon.S 66 ldr r3, [r0, #4] @ rowbytes
82 ldr r3, [r0, #4] @ rowbytes
108 ldr r3, [r0, #4] @ rowbytes
121 ldr r12, [r0, #4] @ rowbytes
143 ldr r12, [r0, #4] @ rowbytes
193 ldr r12, [r0, #4] @ rowbytes
217 ldr r12, [r0, #4] @ rowbytes
filter_neon_intrinsics.c 47 png_bytep rp_stop = row + row_info->rowbytes;
66 png_bytep rp_stop = row + row_info->rowbytes;
111 png_bytep rp_stop = row + row_info->rowbytes;
139 png_bytep rp_stop = row + row_info->rowbytes;
204 png_bytep rp_stop = row + row_info->rowbytes;
270 png_bytep rp_stop = row + row_info->rowbytes;
335 png_bytep rp_stop = row + row_info->rowbytes;
  /external/opencv3/3rdparty/libpng/arm/
filter_neon.S 41 ldr r3, [r0, #4] @ rowbytes
57 ldr r3, [r0, #4] @ rowbytes
83 ldr r3, [r0, #4] @ rowbytes
96 ldr r12, [r0, #4] @ rowbytes
118 ldr r12, [r0, #4] @ rowbytes
168 ldr r12, [r0, #4] @ rowbytes
192 ldr r12, [r0, #4] @ rowbytes
  /external/opencv3/3rdparty/libpng/
pnginfo.h 62 png_size_t rowbytes; /* bytes needed to hold an untransformed row */ member in struct:png_info_def
pngrtran.c     [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
pngrtran.c     [all...]
  /external/freetype/src/sfnt/
pngshim.c 62 for ( i = 0; i < row_info->rowbytes; i += 4 )
105 for ( i = 0; i < row_info->rowbytes; i += 4 )
  /external/pdfium/third_party/freetype/src/sfnt/
pngshim.c 62 for ( i = 0; i < row_info->rowbytes; i += 4 )
105 for ( i = 0; i < row_info->rowbytes; i += 4 )

Completed in 661 milliseconds

1 2 3