Lines Matching refs:notAligned
124 auto notAligned = ((uintptr_t)dst & 0xf) / 4; in avxRasterTranslucentRect() local
125 if (notAligned) { in avxRasterTranslucentRect()
126 … notAligned = (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()
184 …notAligned = (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()
192 uint32_t iterations = (span->len - notAligned) / N_32BITS_IN_128REG; in avxRasterTranslucentRle()
206 int32_t leftovers = span->len - notAligned - avxFilled; in avxRasterTranslucentRle()