Home
last modified time | relevance | path

Searched refs:vstorei128u (Results 1 – 7 of 7) sorted by relevance

/dports/graphics/blend2d/blend2d-592d1ba52672bbf6365aba476bfe26b7bd2dfab8/src/blend2d/
H A Dpixelconverter_ssse3.cpp51 vstorei128u(dstData + 0, p0); in bl_convert_copy_shufb_8888_ssse3()
52 vstorei128u(dstData + 16, p1); in bl_convert_copy_shufb_8888_ssse3()
53 vstorei128u(dstData + 32, p2); in bl_convert_copy_shufb_8888_ssse3()
54 vstorei128u(dstData + 48, p3); in bl_convert_copy_shufb_8888_ssse3()
125 vstorei128u(dstData + 0, p0); in bl_convert_rgb32_from_rgb24_shufb_ssse3()
126 vstorei128u(dstData + 16, p1); in bl_convert_rgb32_from_rgb24_shufb_ssse3()
127 vstorei128u(dstData + 32, p2); in bl_convert_rgb32_from_rgb24_shufb_ssse3()
128 vstorei128u(dstData + 48, p3); in bl_convert_rgb32_from_rgb24_shufb_ssse3()
145 vstorei128u(dstData + 0, p0); in bl_convert_rgb32_from_rgb24_shufb_ssse3()
146 vstorei128u(dstData + 16, p1); in bl_convert_rgb32_from_rgb24_shufb_ssse3()
[all …]
H A Dpixelconverter_sse2.cpp44 vstorei128u(dstData, vloadi128u(srcData)); in bl_convert_copy_sse2()
115 vstorei128u(dstData + 0, vor(p0, fillMask)); in bl_convert_copy_or_8888_sse2()
116 vstorei128u(dstData + 16, vor(p1, fillMask)); in bl_convert_copy_or_8888_sse2()
127 vstorei128u(dstData, vor(p0, fillMask)); in bl_convert_copy_or_8888_sse2()
190 vstorei128u(dstData, p0); in bl_convert_premultiply_8888_template_sse2()
325 vstorei128u(dstData, pix); in bl_convert_unpremultiply_8888_template_sse2()
432 vstorei128u(dstData + 0, p0); in bl_convert_8888_from_x8_sse2()
433 vstorei128u(dstData + 16, p1); in bl_convert_8888_from_x8_sse2()
434 vstorei128u(dstData + 32, p2); in bl_convert_8888_from_x8_sse2()
435 vstorei128u(dstData + 48, p3); in bl_convert_8888_from_x8_sse2()
[all …]
H A Dpixelconverter_avx2.cpp68 vstorei128u(dstData, vloadi128u(srcData)); in bl_convert_copy_avx2()
78 vstorei128u(dstData - 16, vloadi128u(srcData - 16)); in bl_convert_copy_avx2()
306 vstorei128u(dstData + 0, p0); in bl_convert_rgb32_from_rgb24_shufb_avx2()
307 vstorei128u(dstData + 16, p1); in bl_convert_rgb32_from_rgb24_shufb_avx2()
321 vstorei128u(dstData, p0); in bl_convert_rgb32_from_rgb24_shufb_avx2()
H A Dsimd_x86_p.h463 BL_INLINE void vstorei128u(void* p, const I128& x) noexcept { _mm_storeu_si128(static_cast<I128*>(p… in vstorei128u() function
1088 BL_INLINE void vstorei128u(void* p, const I256& x) noexcept { vstorei128u(p, vcast<I128>(x)); } in vstorei128u() function
/dports/graphics/blend2d/blend2d-592d1ba52672bbf6365aba476bfe26b7bd2dfab8/src/blend2d/pipegen/
H A Dpipecompiler.cpp1966 vstorei128u(x86::ptr(dst, int(j) - int(mainLoopSize)), src); in xInlinePixelFillLoop()
1981 vstorei128u(x86::ptr(dst, int(j)), src); in xInlinePixelFillLoop()
1988 vstorei128u(x86::ptr(dst, int(j)), src); in xInlinePixelFillLoop()
2023 vstorei128u(x86::ptr(dst), src); in xInlinePixelFillLoop()
2144 vstorei128u(x86::ptr(dst), src); in xInlinePixelFillLoop()
2209 vstorei128u(x86::ptr(dst, -16), src); in xInlinePixelFillLoop()
2325 vstorei128u(x86::ptr(dst), t0); in xInlinePixelCopyLoop()
2456 vstorei128u(x86::ptr(dst), t0); in xInlinePixelCopyLoop()
H A Dfillpart.cpp632 pc->vstorei128u(x86::ptr(cellPtr), m[1]); // cellPtr[3:0] = 0; in compile()
882 pc->vstorei128u(x86::ptr(cellPtr), m[1]); // cellPtr[3:0] = 0; in compile()
H A Dpipecompiler_p.h1297 …inline void vstorei128u(const x86::Mem& dst, const Operand_& src) noexcept { vemit_vv_vv(PACK_AVX_… in vstorei128u() function
1303 vstorei128u(dst, src); in vstorei128x()
1680 vstorei128u(dMem, vSrc); in xStorePixel()