HomeSort by relevance Sort by last modified time
    Searched refs:transformations (Results 1 - 22 of 22) sorted by null

  /external/libpng/
pngwtran.c 20 * transformations is significant.
31 if (png_ptr->transformations & PNG_USER_TRANSFORM)
46 if (png_ptr->transformations & PNG_FILLER)
51 if (png_ptr->transformations & PNG_PACKSWAP)
55 if (png_ptr->transformations & PNG_PACK)
60 if (png_ptr->transformations & PNG_SWAP_BYTES)
64 if (png_ptr->transformations & PNG_SHIFT)
69 if (png_ptr->transformations & PNG_SWAP_ALPHA)
73 if (png_ptr->transformations & PNG_INVERT_ALPHA)
77 if (png_ptr->transformations & PNG_BGR
    [all...]
pngrtran.c 15 * Transformations that are used in both reading and writing are
110 png_ptr->transformations |= PNG_BACKGROUND;
115 png_ptr->transformations |= (need_expand ? PNG_BACKGROUND_EXPAND : 0);
128 png_ptr->transformations |= PNG_16_TO_8;
172 png_ptr->transformations |= PNG_DITHER;
543 * only do transformations on images where the file_gamma and screen_gamma
562 png_ptr->transformations |= PNG_GAMMA;
581 png_ptr->transformations |= (PNG_EXPAND | PNG_EXPAND_tRNS);
591 * IOW, a future version of the library may make the transformations flag
612 png_ptr->transformations |= (PNG_EXPAND | PNG_EXPAND_tRNS)
    [all...]
pngtrans.c 28 png_ptr->transformations |= PNG_BGR;
42 png_ptr->transformations |= PNG_SWAP_BYTES;
57 png_ptr->transformations |= PNG_PACK;
73 png_ptr->transformations |= PNG_PACKSWAP;
85 png_ptr->transformations |= PNG_SHIFT;
99 png_ptr->transformations |= PNG_INTERLACE;
120 png_ptr->transformations |= PNG_FILLER;
160 png_ptr->transformations |= PNG_ADD_ALPHA;
175 png_ptr->transformations |= PNG_SWAP_ALPHA;
188 png_ptr->transformations |= PNG_INVERT_ALPHA
    [all...]
pngwrite.c 159 if ((png_ptr->transformations & PNG_INVERT_ALPHA) &&
799 /* Initialize transformations and other stuff if first time */
809 if (png_ptr->transformations & PNG_INVERT_MONO)
814 if (png_ptr->transformations & PNG_FILLER)
820 if (png_ptr->transformations & PNG_PACKSWAP)
825 if (png_ptr->transformations & PNG_PACK)
829 if (png_ptr->transformations & PNG_SHIFT)
833 if (png_ptr->transformations & PNG_BGR)
837 if (png_ptr->transformations & PNG_SWAP_BYTES)
846 if (png_ptr->interlaced && (png_ptr->transformations & PNG_INTERLACE)
    [all...]
pngread.c 589 /* Initialize palette, background, etc, after transformations
628 if (png_ptr->transformations & PNG_INVERT_MONO)
632 if (png_ptr->transformations & PNG_FILLER)
637 if (png_ptr->transformations & PNG_PACKSWAP)
641 if (png_ptr->transformations & PNG_PACK)
645 if (png_ptr->transformations & PNG_SHIFT)
649 if (png_ptr->transformations & PNG_BGR)
653 if (png_ptr->transformations & PNG_SWAP_BYTES)
660 if (png_ptr->interlaced && (png_ptr->transformations & PNG_INTERLACE))
814 if (png_ptr->transformations || (png_ptr->flags&PNG_FLAG_STRIP_ALPHA)
    [all...]
pngrutil.c 2735 png_uint_32 transformations = png_ptr->transformations; local
    [all...]
pngpread.c 951 if (png_ptr->transformations || (png_ptr->flags&PNG_FLAG_STRIP_ALPHA))
956 if (png_ptr->interlaced && (png_ptr->transformations & PNG_INTERLACE))
961 png_ptr->row_buf + 1, png_ptr->pass, png_ptr->transformations);
    [all...]
pngwutil.c 502 /* Set the usr info, so any transformations can modify it */
    [all...]
png.h     [all...]
  /external/qemu/distrib/libpng-1.2.19/
pngwtran.c 16 * transformations is significant.
27 if (png_ptr->transformations & PNG_USER_TRANSFORM)
41 if (png_ptr->transformations & PNG_FILLER)
46 if (png_ptr->transformations & PNG_PACKSWAP)
50 if (png_ptr->transformations & PNG_PACK)
55 if (png_ptr->transformations & PNG_SWAP_BYTES)
59 if (png_ptr->transformations & PNG_SHIFT)
64 if (png_ptr->transformations & PNG_SWAP_ALPHA)
68 if (png_ptr->transformations & PNG_INVERT_ALPHA)
72 if (png_ptr->transformations & PNG_BGR
    [all...]
pngrtran.c 12 * Transformations that are used in both reading and writing are
91 png_ptr->transformations |= PNG_BACKGROUND;
96 png_ptr->transformations |= (need_expand ? PNG_BACKGROUND_EXPAND : 0);
107 png_ptr->transformations |= PNG_16_TO_8;
147 png_ptr->transformations |= PNG_DITHER;
518 * only do transformations on images where the file_gamma and screen_gamma
534 png_ptr->transformations |= PNG_GAMMA;
550 png_ptr->transformations |= (PNG_EXPAND | PNG_EXPAND_tRNS);
562 * IOW, a future version of the library may make the transformations flag
579 png_ptr->transformations |= (PNG_EXPAND | PNG_EXPAND_tRNS)
    [all...]
pngtrans.c 22 png_ptr->transformations |= PNG_BGR;
34 png_ptr->transformations |= PNG_SWAP_BYTES;
47 png_ptr->transformations |= PNG_PACK;
61 png_ptr->transformations |= PNG_PACKSWAP;
71 png_ptr->transformations |= PNG_SHIFT;
84 png_ptr->transformations |= PNG_INTERLACE;
103 png_ptr->transformations |= PNG_FILLER;
137 png_ptr->transformations |= PNG_ADD_ALPHA;
150 png_ptr->transformations |= PNG_SWAP_ALPHA;
161 png_ptr->transformations |= PNG_INVERT_ALPHA
    [all...]
pngwrite.c 149 if ((png_ptr->transformations & PNG_INVERT_ALPHA) &&
765 /* initialize transformations and other stuff if first time */
775 if (png_ptr->transformations & PNG_INVERT_MONO)
779 if (png_ptr->transformations & PNG_FILLER)
783 if (png_ptr->transformations & PNG_PACKSWAP)
787 if (png_ptr->transformations & PNG_PACK)
791 if (png_ptr->transformations & PNG_SHIFT)
795 if (png_ptr->transformations & PNG_BGR)
799 if (png_ptr->transformations & PNG_SWAP_BYTES)
808 if (png_ptr->interlaced && (png_ptr->transformations & PNG_INTERLACE)
    [all...]
pngread.c 554 /* Initialize palette, background, etc, after transformations
589 if (png_ptr->transformations & PNG_INVERT_MONO)
593 if (png_ptr->transformations & PNG_FILLER)
597 if (png_ptr->transformations & PNG_PACKSWAP)
601 if (png_ptr->transformations & PNG_PACK)
605 if (png_ptr->transformations & PNG_SHIFT)
609 if (png_ptr->transformations & PNG_BGR)
613 if (png_ptr->transformations & PNG_SWAP_BYTES)
620 if (png_ptr->interlaced && (png_ptr->transformations & PNG_INTERLACE))
768 if (png_ptr->transformations || (png_ptr->flags&PNG_FLAG_STRIP_ALPHA)
    [all...]
pngrutil.c 2799 png_uint_32 transformations = png_ptr->transformations; local
3531 png_uint_32 transformations = png_ptr->transformations; local
    [all...]
pnggccrd.c 2056 png_uint_32 transformations = png_ptr->transformations; local
    [all...]
pngpread.c 826 if (png_ptr->transformations || (png_ptr->flags&PNG_FLAG_STRIP_ALPHA))
831 if (png_ptr->interlaced && (png_ptr->transformations & PNG_INTERLACE))
836 png_ptr->row_buf + 1, png_ptr->pass, png_ptr->transformations);
1045 if (png_ptr->transformations & PNG_INTERLACE)
    [all...]
pngvcrd.c 541 if (png_ptr->transformations & PNG_PACKSWAP)
599 if (png_ptr->transformations & PNG_PACKSWAP)
654 if (png_ptr->transformations & PNG_PACKSWAP)
1013 png_uint_32 transformations = png_ptr->transformations; local
    [all...]
pngwutil.c 482 /* set the usr info, so any transformations can modify it */
    [all...]
png.h 1151 png_uint_32 transformations; \/* which transformations to perform *\/ member in struct:png_struct_def
    [all...]
  /external/libvpx/examples/includes/PHP-SmartyPants-1.5.1e/
smartypants.php 80 # Options to specify which transformations to make:
694 entities. SmartyPants can perform the following transformations:
  /external/libvpx/examples/includes/PHP-Markdown-Extra-1.2.3/
markdown.php 561 # These are all the transformations that form block-level
623 # These are all the transformations that occur *within* block-level
    [all...]

Completed in 85 milliseconds