Searched refs:dst_pixel (Results 1 – 5 of 5) sorted by relevance
/external/chromium_org/third_party/skia/src/opts/ |
D | SkBlitRow_opts_SSE2.cpp | 50 __m128i dst_pixel = _mm_load_si128(d); in S32_Blend_BlitRow32_SSE2() local 82 __m128i dst_rb = _mm_and_si128(rb_mask, dst_pixel); in S32_Blend_BlitRow32_SSE2() 84 __m128i dst_ag = _mm_and_si128(ag_mask, dst_pixel); in S32_Blend_BlitRow32_SSE2() 91 dst_pixel = _mm_or_si128(dst_rb, dst_ag); in S32_Blend_BlitRow32_SSE2() 94 __m128i result = _mm_add_epi8(src_pixel, dst_pixel); in S32_Blend_BlitRow32_SSE2() 138 __m128i dst_pixel = _mm_load_si128(d); in S32A_Opaque_BlitRow32_SSE2() local 140 __m128i dst_rb = _mm_and_si128(rb_mask, dst_pixel); in S32A_Opaque_BlitRow32_SSE2() 141 __m128i dst_ag = _mm_srli_epi16(dst_pixel, 8); in S32A_Opaque_BlitRow32_SSE2() 171 dst_pixel = _mm_or_si128(dst_rb, dst_ag); in S32A_Opaque_BlitRow32_SSE2() 174 __m128i result = _mm_add_epi8(src_pixel, dst_pixel); in S32A_Opaque_BlitRow32_SSE2() [all …]
|
D | SkXfermode_opts_SSE2.cpp | 672 __m128i dst_pixel = _mm_load_si128(d); in xfer32() local 674 dst_pixel = procSIMD(src_pixel, dst_pixel); in xfer32() 675 _mm_store_si128(d++, dst_pixel); in xfer32() 727 __m128i dst_pixel = _mm_load_si128(d); in xfer16() local 729 __m128i dst_pixel1 = _mm_unpacklo_epi16(dst_pixel, _mm_setzero_si128()); in xfer16() 730 __m128i dst_pixel2 = _mm_unpackhi_epi16(dst_pixel, _mm_setzero_si128()); in xfer16() 737 dst_pixel = SkPixel32ToPixel16_ToU16_SSE2(dst_pixel1, dst_pixel2); in xfer16() 739 _mm_store_si128(d++, dst_pixel); in xfer16()
|
/external/skia/src/opts/ |
D | SkBlitRow_opts_SSE2.cpp | 50 __m128i dst_pixel = _mm_load_si128(d); in S32_Blend_BlitRow32_SSE2() local 82 __m128i dst_rb = _mm_and_si128(rb_mask, dst_pixel); in S32_Blend_BlitRow32_SSE2() 84 __m128i dst_ag = _mm_and_si128(ag_mask, dst_pixel); in S32_Blend_BlitRow32_SSE2() 91 dst_pixel = _mm_or_si128(dst_rb, dst_ag); in S32_Blend_BlitRow32_SSE2() 94 __m128i result = _mm_add_epi8(src_pixel, dst_pixel); in S32_Blend_BlitRow32_SSE2() 138 __m128i dst_pixel = _mm_load_si128(d); in S32A_Opaque_BlitRow32_SSE2() local 140 __m128i dst_rb = _mm_and_si128(rb_mask, dst_pixel); in S32A_Opaque_BlitRow32_SSE2() 141 __m128i dst_ag = _mm_srli_epi16(dst_pixel, 8); in S32A_Opaque_BlitRow32_SSE2() 171 dst_pixel = _mm_or_si128(dst_rb, dst_ag); in S32A_Opaque_BlitRow32_SSE2() 174 __m128i result = _mm_add_epi8(src_pixel, dst_pixel); in S32A_Opaque_BlitRow32_SSE2() [all …]
|
D | SkXfermode_opts_SSE2.cpp | 672 __m128i dst_pixel = _mm_load_si128(d); in xfer32() local 674 dst_pixel = procSIMD(src_pixel, dst_pixel); in xfer32() 675 _mm_store_si128(d++, dst_pixel); in xfer32() 727 __m128i dst_pixel = _mm_load_si128(d); in xfer16() local 729 __m128i dst_pixel1 = _mm_unpacklo_epi16(dst_pixel, _mm_setzero_si128()); in xfer16() 730 __m128i dst_pixel2 = _mm_unpackhi_epi16(dst_pixel, _mm_setzero_si128()); in xfer16() 737 dst_pixel = SkPixel32ToPixel16_ToU16_SSE2(dst_pixel1, dst_pixel2); in xfer16() 739 _mm_store_si128(d++, dst_pixel); in xfer16()
|
/external/chromium_org/ui/gfx/ |
D | skbitmap_operations.cc | 702 uint32* dst_pixel = opaque_bitmap.getAddr32(x, y); in UnPreMultiply() local 704 *dst_pixel = unmultiplied; in UnPreMultiply()
|