Searched refs:pixel_depth (Results 1 - 25 of 33) sorted by relevance

12

/external/qemu/distrib/libpng-1.2.19/
H A Dpnggccrd.c426 * - enable pixel_depth == 8 cases in png_read_filter_row()? (test speed)
992 (png_size_t)PNG_ROWBYTES(png_ptr->row_info.pixel_depth,png_ptr->width));
996 switch (png_ptr->row_info.pixel_depth)
998 case 24: /* png_ptr->row_info.pixel_depth */
1164 case 32: /* png_ptr->row_info.pixel_depth */
1335 case 8: /* png_ptr->row_info.pixel_depth */
1470 case 1: /* png_ptr->row_info.pixel_depth */
1527 case 2: /* png_ptr->row_info.pixel_depth */
1582 case 4: /* png_ptr->row_info.pixel_depth */
1637 case 16: /* png_ptr->row_info.pixel_depth */
[all...]
H A Dpngrtran.c1243 info_ptr->pixel_depth = (png_byte)(info_ptr->channels *
1246 info_ptr->rowbytes = PNG_ROWBYTES(info_ptr->pixel_depth,info_ptr->width);
1480 /* png_byte pixel_depth; bits per pixel (depth*channels) */
1488 png_ptr->row_info.pixel_depth = (png_byte)(png_ptr->row_info.bit_depth *
1490 png_ptr->row_info.rowbytes = PNG_ROWBYTES(png_ptr->row_info.pixel_depth,
1582 row_info->pixel_depth = (png_byte)(8 * row_info->channels);
1747 row_info->pixel_depth = (png_byte)(8 * row_info->channels);
1976 row_info->pixel_depth = 16;
1990 row_info->pixel_depth = 16;
2011 row_info->pixel_depth
[all...]
H A Dpngrutil.c407 png_ptr->pixel_depth = (png_byte)(png_ptr->bit_depth *
409 png_ptr->rowbytes = PNG_ROWBYTES(png_ptr->pixel_depth,png_ptr->width);
2334 (png_size_t)PNG_ROWBYTES(png_ptr->row_info.pixel_depth,png_ptr->width));
2338 switch (png_ptr->row_info.pixel_depth)
2341 case 24: /* png_ptr->row_info.pixel_depth */
2384 case 32: /* png_ptr->row_info.pixel_depth */
2427 case 8: /* png_ptr->row_info.pixel_depth */
2469 case 1: /* png_ptr->row_info.pixel_depth */
2526 case 2: /* png_ptr->row_info.pixel_depth */
2581 case 4: /* png_ptr->row_info.pixel_depth */
[all...]
H A Dpngvcrd.c16 * a sign error in the post-MMX cleanup code for each pixel_depth resulted
134 (png_size_t)PNG_ROWBYTES(png_ptr->row_info.pixel_depth,
141 switch (png_ptr->row_info.pixel_depth)
260 pixel_bytes = (png_ptr->row_info.pixel_depth >> 3);
404 pixel_bytes = (png_ptr->row_info.pixel_depth >> 3);
510 pixel_bytes = (png_ptr->row_info.pixel_depth >> 3);
792 pixel_bytes = (png_ptr->row_info.pixel_depth >> 3);
956 pixel_bytes = (png_ptr->row_info.pixel_depth >> 3);
984 pixel_bytes = (png_ptr->row_info.pixel_depth >> 3);
999 } /* end switch (png_ptr->row_info.pixel_depth) */
[all...]
H A Dpngwtran.c37 /* png_byte pixel_depth; bits per pixel (depth*channels) */
197 row_info->pixel_depth = (png_byte)(bit_depth * row_info->channels);
198 row_info->rowbytes = PNG_ROWBYTES(row_info->pixel_depth,
H A Dpngtrans.c436 row_info->pixel_depth = 24;
482 row_info->pixel_depth = 48;
512 row_info->pixel_depth = 8;
538 row_info->pixel_depth = 16;
H A Dpngpread.c814 png_ptr->row_info.pixel_depth = png_ptr->pixel_depth;
816 png_ptr->row_info.rowbytes = PNG_ROWBYTES(png_ptr->row_info.pixel_depth,
1042 png_ptr->irowbytes = PNG_ROWBYTES(png_ptr->pixel_depth,
H A Dpngwutil.c480 png_ptr->pixel_depth = (png_byte)(bit_depth * png_ptr->channels);
481 png_ptr->rowbytes = PNG_ROWBYTES(png_ptr->pixel_depth, width);
1961 switch (row_info->pixel_depth)
2074 pixel_bytes = (row_info->pixel_depth >> 3);
2096 row_info->rowbytes = PNG_ROWBYTES(row_info->pixel_depth,
2123 bpp = (row_info->pixel_depth + 7) >> 3;
/external/chromium_org/third_party/libpng/
H A Dpngrtran.c1325 info_ptr->pixel_depth = (png_byte)(info_ptr->channels *
1328 info_ptr->rowbytes = PNG_ROWBYTES(info_ptr->pixel_depth, info_ptr->width);
1567 /* png_byte pixel_depth; bits per pixel (depth*channels) */
1575 png_ptr->row_info.pixel_depth = (png_byte)(png_ptr->row_info.bit_depth *
1577 png_ptr->row_info.rowbytes = PNG_ROWBYTES(png_ptr->row_info.pixel_depth,
1672 row_info->pixel_depth = (png_byte)(8 * row_info->channels);
1845 row_info->pixel_depth = (png_byte)(8 * row_info->channels);
2077 row_info->pixel_depth = 16;
2091 row_info->pixel_depth = 16;
2112 row_info->pixel_depth
[all...]
H A Dpngrutil.c503 png_ptr->pixel_depth = (png_byte)(png_ptr->bit_depth *
505 png_ptr->rowbytes = PNG_ROWBYTES(png_ptr->pixel_depth, png_ptr->width);
2520 PNG_ROWBYTES(png_ptr->row_info.pixel_depth, png_ptr->width));
2524 switch (png_ptr->row_info.pixel_depth)
2687 png_size_t pixel_bytes = (png_ptr->row_info.pixel_depth >> 3);
2737 switch (row_info->pixel_depth)
2907 png_size_t pixel_bytes = (row_info->pixel_depth >> 3);
2932 row_info->rowbytes = PNG_ROWBYTES(row_info->pixel_depth, final_width);
2954 png_uint_32 bpp = (row_info->pixel_depth + 7) >> 3;
2985 png_uint_32 bpp = (row_info->pixel_depth
[all...]
H A Dpngwtran.c42 /* png_byte pixel_depth; bits per pixel (depth*channels) */
203 row_info->pixel_depth = (png_byte)(bit_depth * row_info->channels);
204 row_info->rowbytes = PNG_ROWBYTES(row_info->pixel_depth,
H A Dpngtrans.c469 row_info->pixel_depth = 24;
515 row_info->pixel_depth = 48;
545 row_info->pixel_depth = 8;
571 row_info->pixel_depth = 16;
H A Dpngpread.c335 (uInt) PNG_ROWBYTES(png_ptr->pixel_depth,
862 (uInt) PNG_ROWBYTES(png_ptr->pixel_depth,
939 png_ptr->row_info.pixel_depth = png_ptr->pixel_depth;
941 png_ptr->row_info.rowbytes = PNG_ROWBYTES(png_ptr->row_info.pixel_depth,
H A Dpngread.c731 (uInt)(PNG_ROWBYTES(png_ptr->pixel_depth,
773 png_ptr->row_info.pixel_depth = png_ptr->pixel_depth;
774 png_ptr->row_info.rowbytes = PNG_ROWBYTES(png_ptr->row_info.pixel_depth,
H A Dpngwutil.c500 png_ptr->pixel_depth = (png_byte)(bit_depth * png_ptr->channels);
501 png_ptr->rowbytes = PNG_ROWBYTES(png_ptr->pixel_depth, width);
1995 switch (row_info->pixel_depth)
2108 pixel_bytes = (row_info->pixel_depth >> 3);
2130 row_info->rowbytes = PNG_ROWBYTES(row_info->pixel_depth,
2168 bpp = (row_info->pixel_depth + 7) >> 3;
H A Dpngwrite.c908 png_ptr->row_info.pixel_depth = (png_byte)(png_ptr->row_info.bit_depth *
911 png_ptr->row_info.rowbytes = PNG_ROWBYTES(png_ptr->row_info.pixel_depth,
918 png_debug1(3, "row_info->pixel_depth = %d", png_ptr->row_info.pixel_depth);
/external/libpng/
H A Dpngrtran.c1325 info_ptr->pixel_depth = (png_byte)(info_ptr->channels *
1328 info_ptr->rowbytes = PNG_ROWBYTES(info_ptr->pixel_depth, info_ptr->width);
1567 /* png_byte pixel_depth; bits per pixel (depth*channels) */
1575 png_ptr->row_info.pixel_depth = (png_byte)(png_ptr->row_info.bit_depth *
1577 png_ptr->row_info.rowbytes = PNG_ROWBYTES(png_ptr->row_info.pixel_depth,
1672 row_info->pixel_depth = (png_byte)(8 * row_info->channels);
1845 row_info->pixel_depth = (png_byte)(8 * row_info->channels);
2077 row_info->pixel_depth = 16;
2091 row_info->pixel_depth = 16;
2112 row_info->pixel_depth
[all...]
H A Dpngrutil.c519 png_ptr->pixel_depth = (png_byte)(png_ptr->bit_depth *
521 png_ptr->rowbytes = PNG_ROWBYTES(png_ptr->pixel_depth, png_ptr->width);
2536 PNG_ROWBYTES(png_ptr->row_info.pixel_depth, png_ptr->width));
2540 switch (png_ptr->row_info.pixel_depth)
2703 png_size_t pixel_bytes = (png_ptr->row_info.pixel_depth >> 3);
2753 switch (row_info->pixel_depth)
2923 png_size_t pixel_bytes = (row_info->pixel_depth >> 3);
2948 row_info->rowbytes = PNG_ROWBYTES(row_info->pixel_depth, final_width);
2970 png_uint_32 bpp = (row_info->pixel_depth + 7) >> 3;
3001 png_uint_32 bpp = (row_info->pixel_depth
[all...]
H A Dpngread.c740 (uInt)(PNG_ROWBYTES(png_ptr->pixel_depth,
797 png_ptr->row_info.pixel_depth = png_ptr->pixel_depth;
798 png_ptr->row_info.rowbytes = PNG_ROWBYTES(png_ptr->row_info.pixel_depth,
961 PNG_ROWBYTES(png_ptr->pixel_depth, png_ptr->iwidth) + 1;
1030 PNG_ROWBYTES(png_ptr->pixel_depth, png_ptr->iwidth) + 1;
H A Dpngwtran.c42 /* png_byte pixel_depth; bits per pixel (depth*channels) */
203 row_info->pixel_depth = (png_byte)(bit_depth * row_info->channels);
204 row_info->rowbytes = PNG_ROWBYTES(row_info->pixel_depth,
H A Dpngtrans.c469 row_info->pixel_depth = 24;
515 row_info->pixel_depth = 48;
545 row_info->pixel_depth = 8;
571 row_info->pixel_depth = 16;
H A Dpngpread.c335 (uInt) PNG_ROWBYTES(png_ptr->pixel_depth,
862 (uInt) PNG_ROWBYTES(png_ptr->pixel_depth,
939 png_ptr->row_info.pixel_depth = png_ptr->pixel_depth;
941 png_ptr->row_info.rowbytes = PNG_ROWBYTES(png_ptr->row_info.pixel_depth,
H A Dpngwutil.c500 png_ptr->pixel_depth = (png_byte)(bit_depth * png_ptr->channels);
501 png_ptr->rowbytes = PNG_ROWBYTES(png_ptr->pixel_depth, width);
1995 switch (row_info->pixel_depth)
2108 pixel_bytes = (row_info->pixel_depth >> 3);
2130 row_info->rowbytes = PNG_ROWBYTES(row_info->pixel_depth,
2168 bpp = (row_info->pixel_depth + 7) >> 3;
H A Dpngwrite.c908 png_ptr->row_info.pixel_depth = (png_byte)(png_ptr->row_info.bit_depth *
911 png_ptr->row_info.rowbytes = PNG_ROWBYTES(png_ptr->row_info.pixel_depth,
918 png_debug1(3, "row_info->pixel_depth = %d", png_ptr->row_info.pixel_depth);
/external/qemu/distrib/sdl-1.2.15/src/video/riscos/
H A DSDL_riscosFullScreenVideo.c53 int pixel_depth; // 2^pixel_depth = bpp,i.e. 0 = 1, 1 = 2, 4 = 16, 5 = 32 member in struct:tagScreenModeBlock
682 smb.pixel_depth = 3;
691 smb.pixel_depth = 4;
695 smb.pixel_depth = 5;

Completed in 193 milliseconds

12