Searched refs:row_bytes (Results 1 - 8 of 8) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/libpng/libpng-1.2.50/contrib/pngminus/
H A Dpng2pnm.c196 png_uint_32 row_bytes; local
314 /* row_bytes is the width x number of channels x (bit-depth / 8) */
315 row_bytes = png_get_rowbytes (png_ptr, info_ptr);
317 if ((png_pixels = (png_byte *) malloc (row_bytes * height * sizeof (png_byte))) == NULL) {
332 row_pointers[i] = png_pixels + i * row_bytes;
H A Dpnm2png.c193 png_uint_32 row_bytes; local
332 /* row_bytes is the width x number of channels x (bit-depth / 8) */
333 row_bytes = width * channels * ((bit_depth <= 8) ? 1 : 2);
335 if ((png_pixels = (png_byte *) malloc (row_bytes * height * sizeof (png_byte))) == NULL)
423 row_pointers[i] = png_pixels + i * row_bytes;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/libpng/libpng-1.2.50/
H A Dpngrutil.c3201 png_size_t row_bytes; local
3331 row_bytes = ((png_ptr->width + 7) & ~((png_uint_32)7));
3335 row_bytes = PNG_ROWBYTES(max_pixel_depth, row_bytes) +
3338 if (row_bytes > (png_uint_32)65536L)
3342 if (row_bytes + 64 > png_ptr->old_big_row_buf_size)
3347 row_bytes + 64);
3350 row_bytes + 64);
3351 png_ptr->old_big_row_buf_size = row_bytes + 64;
3355 png_ptr->old_big_row_buf_size = row_bytes
[all...]
H A Dpngwtran.c264 png_uint_32 row_bytes = row_info->rowbytes;
273 for (i = 0; i < row_bytes; i++, bp++)
H A Dpngwutil.c2152 png_uint_32 row_bytes = row_info->rowbytes; local
2210 for (i = 0, rp = row_buf + 1; i < row_bytes; i++, rp++)
2265 for (lp = row_buf + 1; i < row_bytes;
2322 for (lp = row_buf + 1; i < row_bytes;
2378 pp = prev_row + 1; i < row_bytes;
2426 pp = prev_row + 1; i < row_bytes; i++)
2484 for (lp = row_buf + 1; i < row_bytes; i++)
2537 for (lp = row_buf + 1; i < row_bytes; i++)
2597 for (lp = row_buf + 1, cp = prev_row + 1; i < row_bytes; i++)
2671 for (lp = row_buf + 1, cp = prev_row + 1; i < row_bytes;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/png/
H A Dpngwtran.c257 png_uint_32 row_bytes = row_info->rowbytes;
266 for (i = 0; i < row_bytes; i++, bp++)
H A Dpngrutil.c2956 png_uint_32 row_bytes; local
2974 row_bytes = PNG_ROWBYTES(png_ptr->pixel_depth,png_ptr->iwidth) + 1;
2976 png_ptr->irowbytes = (png_size_t)row_bytes;
2977 if((png_uint_32)png_ptr->irowbytes != row_bytes)
3090 row_bytes = ((png_ptr->width + 7) & ~((png_uint_32)7));
3093 row_bytes = PNG_ROWBYTES(max_pixel_depth,row_bytes) +
3096 if (row_bytes > (png_uint_32)65536L)
3099 png_ptr->big_row_buf = (png_bytep)png_malloc(png_ptr, row_bytes+64);
3102 png_ptr->row_buf_size = row_bytes;
[all...]
H A Dpngwutil.c2061 png_uint_32 row_bytes = row_info->rowbytes; local
2107 for (i = 0, rp = row_buf + 1; i < row_bytes; i++, rp++)
2162 for (lp = row_buf + 1; i < row_bytes;
2219 for (lp = row_buf + 1; i < row_bytes;
2275 pp = prev_row + 1; i < row_bytes;
2323 pp = prev_row + 1; i < row_bytes; i++)
2381 for (lp = row_buf + 1; i < row_bytes; i++)
2434 for (lp = row_buf + 1; i < row_bytes; i++)
2494 for (lp = row_buf + 1, cp = prev_row + 1; i < row_bytes; i++)
2568 for (lp = row_buf + 1, cp = prev_row + 1; i < row_bytes;
[all...]

Completed in 185 milliseconds