Home
last modified time | relevance | path

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

/lvgl-latest/src/libs/thorvg/
DtvgSwRasterAvx.h124 auto notAligned = ((uintptr_t)dst & 0xf) / 4; in avxRasterTranslucentRect() local
125 if (notAligned) { in avxRasterTranslucentRect()
126notAligned = (N_32BITS_IN_128REG - notAligned > w ? w : N_32BITS_IN_128REG - notAligned); in avxRasterTranslucentRect()
127 for (uint32_t x = 0; x < notAligned; ++x, ++dst) { in avxRasterTranslucentRect()
133 uint32_t iterations = (w - notAligned) / N_32BITS_IN_128REG; in avxRasterTranslucentRect()
141 int32_t leftovers = w - notAligned - avxFilled; in avxRasterTranslucentRect()
182 auto notAligned = ((uintptr_t)dst & 0xf) / 4; in avxRasterTranslucentRle() local
183 if (notAligned) { in avxRasterTranslucentRle()
184notAligned = (N_32BITS_IN_128REG - notAligned > span->len ? span->len : N_32BITS_IN_128REG - notAl… in avxRasterTranslucentRle()
185 for (uint32_t x = 0; x < notAligned; ++x, ++dst) { in avxRasterTranslucentRle()
[all …]