Searched defs:alpha_and (Results 1 - 2 of 2) sorted by relevance

/external/webp/src/dsp/
H A Dalpha_processing_sse41.c25 // alpha_and stores an 'and' operation of all the alpha[] values. The final
27 uint32_t alpha_and = 0xff; local
68 alpha_and &= alpha_value;
74 alpha_and |= 0xff00u; // pretend the upper bits [8..15] were tested ok.
75 alpha_and &= _mm_movemask_epi8(_mm_cmpeq_epi8(all_alphas, all_0xff));
76 return (alpha_and == 0xffffu);
H A Dalpha_processing_sse2.c24 // alpha_and stores an 'and' operation of all the alpha[] values. The final
26 uint32_t alpha_and = 0xff; local
65 alpha_and &= alpha_value;
71 alpha_and &= _mm_movemask_epi8(_mm_cmpeq_epi8(all_alphas, all_0xff));
72 return (alpha_and != 0xff);
104 // alpha_and stores an 'and' operation of all the alpha[] values. The final
106 uint32_t alpha_and = 0xff; local
136 alpha_and &= alpha_value;
142 alpha_and &= _mm_movemask_epi8(_mm_cmpeq_epi8(all_alphas, all_0xff));
143 return (alpha_and
[all...]

Completed in 51 milliseconds