Searched refs:pixel_bytes (Results 1 - 4 of 4) sorted by relevance

/vbox/src/libs/libpng-1.2.8/
H A Dpngvcrd.c386 png_size_t pixel_bytes; local
391 pixel_bytes = (png_ptr->row_info.pixel_depth >> 3);
393 pixel_bytes;
394 dstptr = row + offset_table[png_ptr->pass]*pixel_bytes;
395 initial_val = offset_table[png_ptr->pass]*pixel_bytes;
396 final_val = png_ptr->width*pixel_bytes;
397 incr1 = (disp)*pixel_bytes;
400 png_memcpy(dstptr, srcptr, pixel_bytes);
502 png_size_t pixel_bytes; local
507 pixel_bytes
637 png_size_t pixel_bytes; local
781 png_size_t pixel_bytes; local
943 png_size_t pixel_bytes; local
970 png_size_t pixel_bytes; local
1205 png_size_t pixel_bytes; local
[all...]
H A Dpnggccrd.c54 * x [DONE] write MMX code for 64-bit case (pixel_bytes == 8) [not tested]
55 * - write MMX code for 48-bit case (pixel_bytes == 6)
56 * - figure out what's up with 24-bit case (pixel_bytes == 3):
59 * x [DONE] replace pixel_bytes within each block with the true
224 * - eliminated incorrect use of width_mmx in pixel_bytes == 8 case
231 * - test png_do_read_interlace() 64-bit case (pixel_bytes == 8)
232 * - write MMX code for 48-bit case (pixel_bytes == 6)
233 * - figure out what's up with 24-bit case (pixel_bytes == 3):
393 #define BPP3 3 /* bytes per pixel (a.k.a. pixel_bytes) */
1711 png_size_t pixel_bytes; local
[all...]
H A Dpngrutil.c2426 png_size_t pixel_bytes = (png_ptr->row_info.pixel_depth >> 3); local
2436 png_memcpy(dp, sp, pixel_bytes);
2439 sp += pixel_bytes;
2440 dp += pixel_bytes;
2650 png_size_t pixel_bytes = (row_info->pixel_depth >> 3); local
2651 png_bytep sp = row + (png_size_t)(row_info->width - 1) * pixel_bytes;
2652 png_bytep dp = row + (png_size_t)(final_width - 1) * pixel_bytes;
2662 png_memcpy(v, sp, pixel_bytes);
2665 png_memcpy(dp, v, pixel_bytes);
2666 dp -= pixel_bytes;
[all...]
H A Dpngwutil.c2018 png_size_t pixel_bytes; local
2023 pixel_bytes = (row_info->pixel_depth >> 3);
2030 sp = row + (png_size_t)i * pixel_bytes;
2033 png_memcpy(dp, sp, pixel_bytes);
2035 dp += pixel_bytes;

Completed in 2089 milliseconds