Home
last modified time | relevance | path

Searched refs:transformations (Results 1 – 25 of 101) sorted by relevance

12345

/external/glide/library/src/main/java/com/bumptech/glide/load/
DMultiTransformation.java11 private Transformation<T>[] transformations; field in MultiTransformation
15 public MultiTransformation(Transformation<T>... transformations) { in MultiTransformation() argument
16 if (transformations.length < 1) { in MultiTransformation()
19 this.transformations = transformations; in MultiTransformation()
33 if (transformations != null) { in transform()
34 for (Transformation<T> transformation : transformations) { in transform()
58 if (transformations != null) { in getId()
59 for (Transformation transformation : transformations) { in getId()
/external/libpng/
Dpngrtran.c139 png_ptr->transformations |= PNG_COMPOSE | PNG_STRIP_ALPHA; in png_set_background_fixed()
140 png_ptr->transformations &= ~PNG_ENCODE_ALPHA; in png_set_background_fixed()
147 png_ptr->transformations |= PNG_BACKGROUND_EXPAND; in png_set_background_fixed()
149 png_ptr->transformations &= ~PNG_BACKGROUND_EXPAND; in png_set_background_fixed()
177 png_ptr->transformations |= PNG_SCALE_16_TO_8; in png_set_scale_16()
191 png_ptr->transformations |= PNG_16_TO_8; in png_set_strip_16()
204 png_ptr->transformations |= PNG_STRIP_ALPHA; in png_set_strip_alpha()
321 png_ptr->transformations &= ~PNG_ENCODE_ALPHA; in png_set_alpha_mode_fixed()
327 png_ptr->transformations &= ~PNG_ENCODE_ALPHA; in png_set_alpha_mode_fixed()
335 png_ptr->transformations &= ~PNG_ENCODE_ALPHA; in png_set_alpha_mode_fixed()
[all …]
Dpngtrans.c28 png_ptr->transformations |= PNG_BGR; in png_set_bgr()
43 png_ptr->transformations |= PNG_SWAP_BYTES; in png_set_swap()
59 png_ptr->transformations |= PNG_PACK; in png_set_packing()
78 png_ptr->transformations |= PNG_PACKSWAP; in png_set_packswap()
91 png_ptr->transformations |= PNG_SHIFT; in png_set_shift()
105 png_ptr->transformations |= PNG_INTERLACE; in png_set_interlace_handling()
193 png_ptr->transformations |= PNG_FILLER; in png_set_filler()
213 if (png_ptr->transformations & PNG_FILLER) in png_set_add_alpha()
214 png_ptr->transformations |= PNG_ADD_ALPHA; in png_set_add_alpha()
229 png_ptr->transformations |= PNG_SWAP_ALPHA; in png_set_swap_alpha()
[all …]
Dpngwtran.c508 if (png_ptr->transformations & PNG_USER_TRANSFORM) in png_do_write_transformations()
524 if (png_ptr->transformations & PNG_FILLER) in png_do_write_transformations()
530 if (png_ptr->transformations & PNG_PACKSWAP) in png_do_write_transformations()
535 if (png_ptr->transformations & PNG_PACK) in png_do_write_transformations()
541 if (png_ptr->transformations & PNG_SWAP_BYTES) in png_do_write_transformations()
546 if (png_ptr->transformations & PNG_SHIFT) in png_do_write_transformations()
552 if (png_ptr->transformations & PNG_SWAP_ALPHA) in png_do_write_transformations()
557 if (png_ptr->transformations & PNG_INVERT_ALPHA) in png_do_write_transformations()
562 if (png_ptr->transformations & PNG_BGR) in png_do_write_transformations()
567 if (png_ptr->transformations & PNG_INVERT_MONO) in png_do_write_transformations()
Dpngwrite.c216 if ((png_ptr->transformations & PNG_INVERT_ALPHA) && in png_write_info()
698 if (png_ptr->transformations & PNG_INVERT_MONO) in png_write_row()
703 if (png_ptr->transformations & PNG_FILLER) in png_write_row()
708 if (png_ptr->transformations & PNG_PACKSWAP) in png_write_row()
714 if (png_ptr->transformations & PNG_PACK) in png_write_row()
719 if (png_ptr->transformations & PNG_SHIFT) in png_write_row()
724 if (png_ptr->transformations & PNG_BGR) in png_write_row()
729 if (png_ptr->transformations & PNG_SWAP_BYTES) in png_write_row()
738 if (png_ptr->interlaced && (png_ptr->transformations & PNG_INTERLACE)) in png_write_row()
825 (png_ptr->transformations & PNG_INTERLACE)) in png_write_row()
[all …]
/external/chromium_org/third_party/libpng/
Dpngtrans.c28 png_ptr->transformations |= PNG_BGR; in png_set_bgr()
42 png_ptr->transformations |= PNG_SWAP_BYTES; in png_set_swap()
57 png_ptr->transformations |= PNG_PACK; in png_set_packing()
73 png_ptr->transformations |= PNG_PACKSWAP; in png_set_packswap()
85 png_ptr->transformations |= PNG_SHIFT; in png_set_shift()
99 png_ptr->transformations |= PNG_INTERLACE; in png_set_interlace_handling()
120 png_ptr->transformations |= PNG_FILLER; in png_set_filler()
160 png_ptr->transformations |= PNG_ADD_ALPHA; in png_set_add_alpha()
175 png_ptr->transformations |= PNG_SWAP_ALPHA; in png_set_swap_alpha()
188 png_ptr->transformations |= PNG_INVERT_ALPHA; in png_set_invert_alpha()
[all …]
Dpngrtran.c110 png_ptr->transformations |= PNG_BACKGROUND; in png_set_background()
115 png_ptr->transformations |= (need_expand ? PNG_BACKGROUND_EXPAND : 0); in png_set_background()
128 png_ptr->transformations |= PNG_16_TO_8; in png_set_strip_16()
172 png_ptr->transformations |= PNG_DITHER; in png_set_dither()
562 png_ptr->transformations |= PNG_GAMMA; in png_set_gamma()
581 png_ptr->transformations |= (PNG_EXPAND | PNG_EXPAND_tRNS); in png_set_expand()
612 png_ptr->transformations |= (PNG_EXPAND | PNG_EXPAND_tRNS); in png_set_palette_to_rgb()
626 png_ptr->transformations |= PNG_EXPAND; in png_set_expand_gray_1_2_4_to_8()
642 png_ptr->transformations |= (PNG_EXPAND | PNG_EXPAND_tRNS); in png_set_gray_1_2_4_to_8()
653 png_ptr->transformations |= (PNG_EXPAND | PNG_EXPAND_tRNS); in png_set_tRNS_to_alpha()
[all …]
Dpngwtran.c31 if (png_ptr->transformations & PNG_USER_TRANSFORM) in png_do_write_transformations()
46 if (png_ptr->transformations & PNG_FILLER) in png_do_write_transformations()
51 if (png_ptr->transformations & PNG_PACKSWAP) in png_do_write_transformations()
55 if (png_ptr->transformations & PNG_PACK) in png_do_write_transformations()
60 if (png_ptr->transformations & PNG_SWAP_BYTES) in png_do_write_transformations()
64 if (png_ptr->transformations & PNG_SHIFT) in png_do_write_transformations()
69 if (png_ptr->transformations & PNG_SWAP_ALPHA) in png_do_write_transformations()
73 if (png_ptr->transformations & PNG_INVERT_ALPHA) in png_do_write_transformations()
77 if (png_ptr->transformations & PNG_BGR) in png_do_write_transformations()
81 if (png_ptr->transformations & PNG_INVERT_MONO) in png_do_write_transformations()
Dpngwrite.c159 if ((png_ptr->transformations & PNG_INVERT_ALPHA) && in png_write_info()
809 if (png_ptr->transformations & PNG_INVERT_MONO) in png_write_row()
814 if (png_ptr->transformations & PNG_FILLER) in png_write_row()
820 if (png_ptr->transformations & PNG_PACKSWAP) in png_write_row()
825 if (png_ptr->transformations & PNG_PACK) in png_write_row()
829 if (png_ptr->transformations & PNG_SHIFT) in png_write_row()
833 if (png_ptr->transformations & PNG_BGR) in png_write_row()
837 if (png_ptr->transformations & PNG_SWAP_BYTES) in png_write_row()
846 if (png_ptr->interlaced && (png_ptr->transformations & PNG_INTERLACE)) in png_write_row()
928 (png_ptr->transformations & PNG_INTERLACE)) in png_write_row()
[all …]
Dpngread.c619 if (png_ptr->transformations & PNG_INVERT_MONO) in png_read_row()
623 if (png_ptr->transformations & PNG_FILLER) in png_read_row()
628 if (png_ptr->transformations & PNG_PACKSWAP) in png_read_row()
632 if (png_ptr->transformations & PNG_PACK) in png_read_row()
636 if (png_ptr->transformations & PNG_SHIFT) in png_read_row()
640 if (png_ptr->transformations & PNG_BGR) in png_read_row()
644 if (png_ptr->transformations & PNG_SWAP_BYTES) in png_read_row()
651 if (png_ptr->interlaced && (png_ptr->transformations & PNG_INTERLACE)) in png_read_row()
795 if (png_ptr->transformations || (png_ptr->flags&PNG_FLAG_STRIP_ALPHA)) in png_read_row()
801 (png_ptr->transformations & PNG_INTERLACE)) in png_read_row()
Dpngrutil.c2537 if (png_ptr->transformations & PNG_PACKSWAP) in png_combine_row()
2592 if (png_ptr->transformations & PNG_PACKSWAP) in png_combine_row()
2644 if (png_ptr->transformations & PNG_PACKSWAP) in png_combine_row()
2725 png_uint_32 transformations = png_ptr->transformations; in png_do_read_interlace() local
2751 if (transformations & PNG_PACKSWAP) in png_do_read_interlace()
2804 if (transformations & PNG_PACKSWAP) in png_do_read_interlace()
2860 if (transformations & PNG_PACKSWAP) in png_do_read_interlace()
2935 transformations = transformations; /* Silence compiler warning */ in png_do_read_interlace()
3104 if (!(png_ptr->transformations & PNG_INTERLACE)) in png_read_finish_row()
3220 if (!(png_ptr->transformations & PNG_INTERLACE)) in png_read_start_row()
[all …]
/external/qemu/distrib/libpng-1.2.46/
Dpngtrans.c28 png_ptr->transformations |= PNG_BGR; in png_set_bgr()
42 png_ptr->transformations |= PNG_SWAP_BYTES; in png_set_swap()
57 png_ptr->transformations |= PNG_PACK; in png_set_packing()
73 png_ptr->transformations |= PNG_PACKSWAP; in png_set_packswap()
85 png_ptr->transformations |= PNG_SHIFT; in png_set_shift()
99 png_ptr->transformations |= PNG_INTERLACE; in png_set_interlace_handling()
120 png_ptr->transformations |= PNG_FILLER; in png_set_filler()
160 png_ptr->transformations |= PNG_ADD_ALPHA; in png_set_add_alpha()
175 png_ptr->transformations |= PNG_SWAP_ALPHA; in png_set_swap_alpha()
188 png_ptr->transformations |= PNG_INVERT_ALPHA; in png_set_invert_alpha()
[all …]
Dpngrtran.c110 png_ptr->transformations |= PNG_BACKGROUND; in png_set_background()
115 png_ptr->transformations |= (need_expand ? PNG_BACKGROUND_EXPAND : 0); in png_set_background()
128 png_ptr->transformations |= PNG_16_TO_8; in png_set_strip_16()
172 png_ptr->transformations |= PNG_DITHER; in png_set_dither()
562 png_ptr->transformations |= PNG_GAMMA; in png_set_gamma()
581 png_ptr->transformations |= (PNG_EXPAND | PNG_EXPAND_tRNS); in png_set_expand()
612 png_ptr->transformations |= (PNG_EXPAND | PNG_EXPAND_tRNS); in png_set_palette_to_rgb()
626 png_ptr->transformations |= PNG_EXPAND; in png_set_expand_gray_1_2_4_to_8()
642 png_ptr->transformations |= (PNG_EXPAND | PNG_EXPAND_tRNS); in png_set_gray_1_2_4_to_8()
653 png_ptr->transformations |= (PNG_EXPAND | PNG_EXPAND_tRNS); in png_set_tRNS_to_alpha()
[all …]
Dpngwtran.c31 if (png_ptr->transformations & PNG_USER_TRANSFORM) in png_do_write_transformations()
46 if (png_ptr->transformations & PNG_FILLER) in png_do_write_transformations()
51 if (png_ptr->transformations & PNG_PACKSWAP) in png_do_write_transformations()
55 if (png_ptr->transformations & PNG_PACK) in png_do_write_transformations()
60 if (png_ptr->transformations & PNG_SWAP_BYTES) in png_do_write_transformations()
64 if (png_ptr->transformations & PNG_SHIFT) in png_do_write_transformations()
69 if (png_ptr->transformations & PNG_SWAP_ALPHA) in png_do_write_transformations()
73 if (png_ptr->transformations & PNG_INVERT_ALPHA) in png_do_write_transformations()
77 if (png_ptr->transformations & PNG_BGR) in png_do_write_transformations()
81 if (png_ptr->transformations & PNG_INVERT_MONO) in png_do_write_transformations()
Dpngwrite.c159 if ((png_ptr->transformations & PNG_INVERT_ALPHA) && in png_write_info()
809 if (png_ptr->transformations & PNG_INVERT_MONO) in png_write_row()
814 if (png_ptr->transformations & PNG_FILLER) in png_write_row()
820 if (png_ptr->transformations & PNG_PACKSWAP) in png_write_row()
825 if (png_ptr->transformations & PNG_PACK) in png_write_row()
829 if (png_ptr->transformations & PNG_SHIFT) in png_write_row()
833 if (png_ptr->transformations & PNG_BGR) in png_write_row()
837 if (png_ptr->transformations & PNG_SWAP_BYTES) in png_write_row()
846 if (png_ptr->interlaced && (png_ptr->transformations & PNG_INTERLACE)) in png_write_row()
928 (png_ptr->transformations & PNG_INTERLACE)) in png_write_row()
[all …]
Dpngread.c628 if (png_ptr->transformations & PNG_INVERT_MONO) in png_read_row()
632 if (png_ptr->transformations & PNG_FILLER) in png_read_row()
637 if (png_ptr->transformations & PNG_PACKSWAP) in png_read_row()
641 if (png_ptr->transformations & PNG_PACK) in png_read_row()
645 if (png_ptr->transformations & PNG_SHIFT) in png_read_row()
649 if (png_ptr->transformations & PNG_BGR) in png_read_row()
653 if (png_ptr->transformations & PNG_SWAP_BYTES) in png_read_row()
660 if (png_ptr->interlaced && (png_ptr->transformations & PNG_INTERLACE)) in png_read_row()
819 if (png_ptr->transformations || (png_ptr->flags&PNG_FLAG_STRIP_ALPHA)) in png_read_row()
825 (png_ptr->transformations & PNG_INTERLACE)) in png_read_row()
/external/eigen/doc/
DTutorialGeometry.dox3 /** \eigenManualPage TutorialGeometry Space transformations
5 …Module "geometry module" to deal with 2D and 3D rotations and projective or affine transformations.
9 Eigen's Geometry module provides two different kinds of geometric transformations:
10transformations, such as rotations (represented by \ref AngleAxis "angle and axis" or by a \ref Qu…
62 N-D Linear transformations \n
76 transformations. Nevertheless, unlike AngleAxis which is inefficient to use, these classes
78 kind of transformations.
101 Concatenation of two transformations</td><td>\code
113 <a href="#" class="top">top</a>\section TutorialGeoTransform Affine transformations
114 Generic affine transformations are represented by the Transform class which internaly
[all …]
/external/pixman/test/
Dgradient-crash-test.c46 pixman_transform_t transformations[] = { in main() local
139 for (k = 0; k < ARRAY_LENGTH (transformations); ++k) in main()
141 pixman_image_set_transform (src_img, &transformations[k]); in main()
/external/mesa3d/src/gallium/drivers/r300/compiler/
Dradeon_program.c55 struct radeon_program_transformation *transformations = in rc_local_transform() local
65 for(i = 0; transformations[i].function; ++i) { in rc_local_transform()
66 struct radeon_program_transformation* t = transformations + i; in rc_local_transform()
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
Dradeon_program.c55 struct radeon_program_transformation *transformations = in rc_local_transform() local
65 for(i = 0; transformations[i].function; ++i) { in rc_local_transform()
66 struct radeon_program_transformation* t = transformations + i; in rc_local_transform()
/external/glide/library/src/main/java/com/bumptech/glide/
DGenericRequestBuilder.java56 private List<Transformation<ResourceType>> transformations = null; field in GenericRequestBuilder
302 transformations = new ArrayList<Transformation<ResourceType>>(); in transform()
303 transformations.add(singleTransformation); in transform()
304 transformations.add(transformation); in transform()
643 if (transformations == null) { in getFinalTransformation()
646 return new MultiTransformation<ResourceType>(transformations); in getFinalTransformation()
/external/llvm/docs/
DBugpoint.rst159 transformations. If the process of using bugpoint has left you with still too
164 Turn on ``-debug-only=instcombine`` and see which transformations within
167 At this point, you have a decision to make. Is the number of transformations
170 If there are too many transformations, then a source modification approach may
172 disable just those transformations that are being performed on your test input
173 and perform a binary search over the set of transformations. One set of places
185 At this point, if the amount of transformations is still too large, then
207 point---a simple binary search may not be sufficient, as transformations that
211 Now that that the number of transformations is down to a manageable number, try
212 examining the output to see if you can figure out which transformations are
/external/eigen/test/
Dgeo_transformations.cpp75 template<typename Scalar, int Mode, int Options> void transformations() in transformations() function
457 CALL_SUBTEST_1(( transformations<double,Affine,AutoAlign>() )); in test_geo_transformations()
460 CALL_SUBTEST_2(( transformations<float,AffineCompact,AutoAlign>() )); in test_geo_transformations()
464 CALL_SUBTEST_3(( transformations<double,Projective,AutoAlign>() )); in test_geo_transformations()
465 CALL_SUBTEST_3(( transformations<double,Projective,DontAlign>() )); in test_geo_transformations()
468 CALL_SUBTEST_4(( transformations<float,Affine,RowMajor|AutoAlign>() )); in test_geo_transformations()
471 CALL_SUBTEST_5(( transformations<double,AffineCompact,RowMajor|AutoAlign>() )); in test_geo_transformations()
474 CALL_SUBTEST_6(( transformations<double,Projective,RowMajor|AutoAlign>() )); in test_geo_transformations()
475 CALL_SUBTEST_6(( transformations<double,Projective,RowMajor|DontAlign>() )); in test_geo_transformations()
/external/llvm/test/CodeGen/X86/
DtargetLoweringGeneric.ll3 ; Gather non-machine specific tests for the transformations in
6 ; the data structures that these transformations act on.
/external/llvm/test/Transforms/InstCombine/
D2002-05-14-SubFailure.ll1 ; Instcombine was missing a test that caused it to make illegal transformations

12345