Lines Matching defs:pixels
118 // touch |filterLength| pixels (4 bytes each) after this.
132 // Load pixels and calc
133 uint8x16_t pixels = vld1q_u8(rowToFilter);
134 int16x8_t p01_16 = vreinterpretq_s16_u16(vmovl_u8(vget_low_u8(pixels)));
135 int16x8_t p23_16 = vreinterpretq_s16_u16(vmovl_u8(vget_high_u8(pixels)));
172 // Load pixels and calc
173 uint8x16_t pixels = vld1q_u8(rowToFilter);
174 int16x8_t p01_16 = vreinterpretq_s16_u16(vmovl_u8(vget_low_u8(pixels)));
175 int16x8_t p23_16 = vreinterpretq_s16_u16(vmovl_u8(vget_high_u8(pixels)));
214 // Output four pixels per iteration (16 bytes).
227 // Load four pixels (16 bytes) together.
287 // by 4, that is at most 3 pixels.
405 // four pixels in a column per iteration.
423 uint8x16_t pixels;
429 pixels = vld1q_u8(src); \
430 p01_16 = vreinterpretq_s16_u16(vmovl_u8(vget_low_u8(pixels))); \
431 p23_16 = vreinterpretq_s16_u16(vmovl_u8(vget_high_u8(pixels))); \
460 uint8x16_t pixels;