OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:alpha_and
(Results
1 - 2
of
2
) sorted by null
/external/webp/src/dsp/
alpha_processing_sse41.c
25
//
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);
alpha_processing_sse2.c
24
//
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
== 0xff)
[
all
...]
Completed in 242 milliseconds