Home
last modified time | relevance | path

Searched refs:mask_g (Results 1 – 4 of 4) sorted by relevance

/external/deqp/external/openglcts/modules/glesext/draw_buffers_indexed/
DesextcDrawBuffersIndexedBase.cpp144 (static_cast<int>(ba[0]) != state[idx].mask_r) || (ia[1] != state[idx].mask_g) || in CheckBuffer()
145 …(static_cast<int>(lia[1]) != state[idx].mask_g) || (static_cast<int>(ba[1]) != state[idx].mask_g) … in CheckBuffer()
151 << state[idx].mask_r << ", " << state[idx].mask_g << ", " << state[idx].mask_b << ", " in CheckBuffer()
175 (ia[1] != state[idx].mask_g) || (static_cast<int>(lia[1]) != state[idx].mask_g) || in CheckBuffer()
179 …(static_cast<int>(ba[1]) != state[idx].mask_g) || (static_cast<int>(fa[1]) != state[idx].mask_g) || in CheckBuffer()
184 << state[idx].mask_r << ", " << state[idx].mask_g << ", " << state[idx].mask_b << ", " in CheckBuffer()
227 state[idx].mask_g = g; in SetColorMaski()
294 state[i].mask_g = g; in SetColorMask()
DesextcDrawBuffersIndexedBase.hpp66 glw::GLboolean mask_g; member in glcts::DrawBuffersIndexedBase::BlendMaskState
79 , mask_g(GL_TRUE) in BlendMaskState()
/external/webp/src/dsp/
Dlossless_enc_sse41.c54 const __m128i mask_g = _mm_set1_epi16(0xff00); // green mask in CollectColorBlueTransforms_SSE41() local
75 const __m128i g = _mm_and_si128(gb, mask_g); // g 0 in CollectColorBlueTransforms_SSE41()
99 const __m128i mask_g = _mm_set1_epi32(0x00ff00); // green mask in CollectColorRedTransforms_SSE41() local
110 const __m128i g0 = _mm_and_si128(in0, mask_g); // 0 0 | g 0 in CollectColorRedTransforms_SSE41()
111 const __m128i g1 = _mm_and_si128(in1, mask_g); in CollectColorRedTransforms_SSE41()
Dlossless_enc_sse2.c88 const __m128i mask_g = _mm_set1_epi32(0x00ff00); // green mask in CollectColorBlueTransforms_SSE2() local
100 const __m128i B0 = _mm_and_si128(in0, mask_g); // 0 0 | g 0 in CollectColorBlueTransforms_SSE2()
101 const __m128i B1 = _mm_and_si128(in1, mask_g); in CollectColorBlueTransforms_SSE2()
133 const __m128i mask_g = _mm_set1_epi32(0x00ff00); // green mask in CollectColorRedTransforms_SSE2() local
144 const __m128i A0 = _mm_and_si128(in0, mask_g); // 0 0 | g 0 in CollectColorRedTransforms_SSE2()
145 const __m128i A1 = _mm_and_si128(in1, mask_g); in CollectColorRedTransforms_SSE2()