Home
last modified time | relevance | path

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

/external/webp/src/dsp/
Dalpha_processing_mips_dsp_r2.c22 uint32_t alpha_mask = 0xffffffff; in DispatchAlpha() local
45 [alpha_mask]"+r"(alpha_mask) in DispatchAlpha()
59 [alpha_mask]"+r"(alpha_mask) in DispatchAlpha()
75 : [temp0]"=&r"(temp0), [alpha_mask]"+r"(alpha_mask) in DispatchAlpha()
79 return (alpha_mask != 0xff); in DispatchAlpha()
Dalpha_processing.c290 uint32_t alpha_mask = 0xff; in DispatchAlpha() local
297 alpha_mask &= alpha_value; in DispatchAlpha()
303 return (alpha_mask != 0xff); in DispatchAlpha()
322 uint8_t alpha_mask = 0xff; in ExtractAlpha() local
329 alpha_mask &= alpha_value; in ExtractAlpha()
334 return (alpha_mask == 0xff); in ExtractAlpha()
/external/opencv3/3rdparty/libwebp/dec/
Dio.c227 uint32_t alpha_mask = 0xff; in EmitAlphaRGB() local
234 alpha_mask &= alpha_value; in EmitAlphaRGB()
240 if (alpha_mask != 0xff && WebPIsPremultipliedMode(colorspace)) { in EmitAlphaRGB()
258 uint32_t alpha_mask = 0x0f; in EmitAlphaRGBA4444() local
266 alpha_mask &= alpha_value; in EmitAlphaRGBA4444()
271 if (alpha_mask != 0x0f && WebPIsPremultipliedMode(colorspace)) { in EmitAlphaRGBA4444()
417 uint32_t alpha_mask = 0xff; in ExportAlpha() local
427 alpha_mask &= alpha_value; in ExportAlpha()
432 if (is_premult_alpha && alpha_mask != 0xff) { in ExportAlpha()
447 uint32_t alpha_mask = 0x0f; in ExportAlphaRGBA4444() local
[all …]
/external/skia/src/opts/
DSkBlitRow_opts_arm_neon.cpp882 uint8x8_t alpha_mask; in S32A_Opaque_BlitRow32_neon() local
885 alpha_mask = vld1_u8(alpha_mask_setup); in S32A_Opaque_BlitRow32_neon()
920 alpha_narrow = vtbl1_u8(src_raw, alpha_mask); in S32A_Opaque_BlitRow32_neon()
942 alpha_narrow = vtbl1_u8(src_raw_2, alpha_mask); in S32A_Opaque_BlitRow32_neon()
994 uint8x8_t alpha_mask; in S32A_Opaque_BlitRow32_neon_src_alpha() local
996 alpha_mask = vld1_u8(alpha_mask_setup); in S32A_Opaque_BlitRow32_neon_src_alpha()
1027 alpha_narrow = vtbl1_u8(src_raw, alpha_mask); in S32A_Opaque_BlitRow32_neon_src_alpha()
1042 alpha_narrow = vtbl1_u8(src_raw_2, alpha_mask); in S32A_Opaque_BlitRow32_neon_src_alpha()
1264 uint8x8_t alpha_mask; in S32A_Blend_BlitRow32_neon() local
1266 alpha_mask = vld1_u8(alpha_mask_setup); in S32A_Blend_BlitRow32_neon()
[all …]
/external/webp/src/dec/
Dio.c215 uint32_t alpha_mask = 0x0f; in EmitAlphaRGBA4444() local
222 alpha_mask &= alpha_value; in EmitAlphaRGBA4444()
229 if (alpha_mask != 0x0f && WebPIsPremultipliedMode(colorspace)) { in EmitAlphaRGBA4444()
423 uint32_t alpha_mask = 0x0f; in ExportAlphaRGBA4444() local
434 alpha_mask &= alpha_value; in ExportAlphaRGBA4444()
439 if (is_premult_alpha && alpha_mask != 0x0f) { in ExportAlphaRGBA4444()
/external/mesa3d/src/gallium/state_trackers/vega/
Dmask.c105 struct st_renderbuffer *strb = stfb->alpha_mask; in read_alpha_mask()