Home
last modified time | relevance | path

Searched refs:alpha_mask (Results 1 – 12 of 12) sorted by relevance

/external/webp/src/dsp/
Dalpha_processing_mips_dsp_r2.c22 uint32_t alpha_mask = 0xffffffff; in DispatchAlpha_MIPSdspR2() local
45 [alpha_mask]"+r"(alpha_mask) in DispatchAlpha_MIPSdspR2()
59 [alpha_mask]"+r"(alpha_mask) in DispatchAlpha_MIPSdspR2()
75 : [temp0]"=&r"(temp0), [alpha_mask]"+r"(alpha_mask) in DispatchAlpha_MIPSdspR2()
79 return (alpha_mask != 0xff); in DispatchAlpha_MIPSdspR2()
Dalpha_processing_neon.c86 uint32_t alpha_mask = 0xffffffffu; in DispatchAlpha_NEON() local
104 alpha_mask &= alpha_value; in DispatchAlpha_NEON()
110 alpha_mask &= tmp[0]; in DispatchAlpha_NEON()
111 alpha_mask &= tmp[1]; in DispatchAlpha_NEON()
112 return (alpha_mask != 0xffffffffu); in DispatchAlpha_NEON()
137 uint32_t alpha_mask = 0xffffffffu; in ExtractAlpha_NEON() local
153 alpha_mask &= alpha[i]; in ExtractAlpha_NEON()
159 alpha_mask &= tmp[0]; in ExtractAlpha_NEON()
160 alpha_mask &= tmp[1]; in ExtractAlpha_NEON()
161 return (alpha_mask == 0xffffffffu); in ExtractAlpha_NEON()
Dalpha_processing_sse2.c230 const __m128i alpha_mask = _mm_set1_epi32(0xff); in HasAlpha32b_SSE2() local
242 const __m128i b0 = _mm_and_si128(a0, alpha_mask); in HasAlpha32b_SSE2()
243 const __m128i b1 = _mm_and_si128(a1, alpha_mask); in HasAlpha32b_SSE2()
244 const __m128i b2 = _mm_and_si128(a2, alpha_mask); in HasAlpha32b_SSE2()
245 const __m128i b3 = _mm_and_si128(a3, alpha_mask); in HasAlpha32b_SSE2()
256 const __m128i b0 = _mm_and_si128(a0, alpha_mask); in HasAlpha32b_SSE2()
257 const __m128i b1 = _mm_and_si128(a1, alpha_mask); in HasAlpha32b_SSE2()
Dalpha_processing.c296 uint32_t alpha_mask = 0xff; in DispatchAlpha_C() local
303 alpha_mask &= alpha_value; in DispatchAlpha_C()
309 return (alpha_mask != 0xff); in DispatchAlpha_C()
328 uint8_t alpha_mask = 0xff; in ExtractAlpha_C() local
335 alpha_mask &= alpha_value; in ExtractAlpha_C()
340 return (alpha_mask == 0xff); in ExtractAlpha_C()
/external/libdrm/tests/etnaviv/
Dwrite_bmp.c61 unsigned int alpha_mask; member
90 .alpha_mask = alpha ? 0xFF000000 : 0x00000000, in bmp_header_write()
/external/ImageMagick/coders/
Dbmp.c149 alpha_mask, member
645 bmp_info.alpha_mask=0; in ReadBMPImage()
746 bmp_info.alpha_mask=ReadBlobLSBLong(image); in ReadBMPImage()
889 image->alpha_trait=((bmp_info.alpha_mask != 0) && in ReadBMPImage()
1044 bmp_info.alpha_mask=image->alpha_trait != UndefinedPixelTrait ? in ReadBMPImage()
1090 if (bmp_info.alpha_mask != 0) in ReadBMPImage()
1091 while (((bmp_info.alpha_mask << shift.alpha) & 0x80000000UL) == 0) in ReadBMPImage()
1122 while (((bmp_info.alpha_mask << sample) & 0x80000000UL) != 0) in ReadBMPImage()
1307 alpha=((pixel & bmp_info.alpha_mask) << shift.alpha) >> 16; in ReadBMPImage()
1405 alpha=((pixel & bmp_info.alpha_mask) << shift.alpha) >> 16; in ReadBMPImage()
[all …]
Ddib.c100 alpha_mask; member
Dicon.c135 alpha_mask, member
/external/skia/src/core/
DSkBlitRow_D32.cpp228 uint8x8_t alpha_mask; in blit_row_s32a_blend() local
230 alpha_mask = vld1_u8(alpha_mask_setup); in blit_row_s32a_blend()
245 vsrc_alphas = vtbl1_u8(vsrc, alpha_mask); in blit_row_s32a_blend()
/external/skqp/src/core/
DSkBlitRow_D32.cpp229 uint8x8_t alpha_mask; in blit_row_s32a_blend() local
231 alpha_mask = vld1_u8(alpha_mask_setup); in blit_row_s32a_blend()
246 vsrc_alphas = vtbl1_u8(vsrc, alpha_mask); in blit_row_s32a_blend()
/external/webp/src/dec/
Dio_dec.c220 uint32_t alpha_mask = 0x0f; in EmitAlphaRGBA4444() local
227 alpha_mask &= alpha_value; in EmitAlphaRGBA4444()
234 if (alpha_mask != 0x0f && WebPIsPremultipliedMode(colorspace)) { in EmitAlphaRGBA4444()
444 uint32_t alpha_mask = 0x0f; in ExportAlphaRGBA4444() local
455 alpha_mask &= alpha_value; in ExportAlphaRGBA4444()
460 if (is_premult_alpha && alpha_mask != 0x0f) { in ExportAlphaRGBA4444()
/external/mesa3d/src/gallium/frontends/va/
Dsubpicture.c44 .alpha_mask = 0xff000000ul,