Home | History | Annotate | Download | only in core

Lines Matching refs:SIMD_WIDTH

47     return result + (SIMD_WIDTH - result % SIMD_WIDTH) % SIMD_WIDTH;
114 SkFixed c[SIMD_WIDTH] = {0}; // prepare SIMD_WIDTH coverages at a time
115 for(int ix = 0; ix < fExpandedWidth; ix += SIMD_WIDTH) {
116 // Future todo: is it faster to process SIMD_WIDTH rows at a time so we can use SIMD
119 // Cumulate deltas to get SIMD_WIDTH new coverages
120 c[0] = c[SIMD_WIDTH - 1] + deltaRow[ix];
121 for(int j = 1; j < SIMD_WIDTH; ++j) {
125 using SkNi = SkNx<SIMD_WIDTH, int>;