Searched refs:frow (Results 1 - 8 of 8) sorted by relevance

/external/webp/src/dsp/
H A Drescaler_mips32.c38 rescaler_t* frow = wrk->frow + channel; local
68 "sw %[temp3], 0(%[frow]) \n\t"
69 "addu %[frow], %[frow], %[x_stride1] \n\t"
73 [frow]"+r"(frow), [accum1]"=&r"(accum1),
98 rescaler_t* frow = wrk->frow + channel; local
120 "sw %[temp3], 0(%[frow]) \
153 const rescaler_t* frow = wrk->frow; local
216 const rescaler_t* frow = wrk->frow; local
[all...]
H A Drescaler_mips_dsp_r2.c32 const rescaler_t* frow = wrk->frow; local
47 "addu %[loop_end], %[frow], %[temp6] \n\t"
49 "lw %[temp0], 0(%[frow]) \n\t"
50 "lw %[temp1], 4(%[frow]) \n\t"
51 "lw %[temp2], 8(%[frow]) \n\t"
52 "lw %[temp5], 12(%[frow]) \n\t"
61 "addiu %[frow], %[frow], 16 \n\t"
96 "bne %[frow],
170 const rescaler_t* frow = wrk->frow; local
[all...]
H A Drescaler_neon.c44 static uint32x4_t Interpolate_NEON(const rescaler_t* const frow, argument
47 LOAD_32x4(frow, A0);
65 const rescaler_t* const frow = wrk->frow; local
74 LOAD_32x4(frow + x_out + 0, A0);
75 LOAD_32x4(frow + x_out + 4, A1);
84 const uint32_t J = frow[x_out];
94 Interpolate_NEON(frow + x_out + 0, irow + x_out + 0, A, B);
96 Interpolate_NEON(frow + x_out + 4, irow + x_out + 4, A, B);
105 const uint64_t I = (uint64_t)A * frow[x_ou
121 const rescaler_t* const frow = wrk->frow; local
[all...]
H A Drescaler_sse2.c47 rescaler_t* frow = wrk->frow; local
48 const rescaler_t* const frow_end = frow + wrk->dst_width * wrk->num_channels;
65 _mm_storeu_si128((__m128i*)frow, out);
66 frow += 4;
67 if (frow >= frow_end) break;
88 assert(sizeof(*frow) == sizeof(uint32_t));
89 WebPUint32ToMem((uint8_t*)frow, _mm_cvtsi128_si32(out));
90 frow += 1;
91 if (frow >
122 rescaler_t* frow = wrk->frow; local
234 const rescaler_t* const frow = wrk->frow; local
294 const rescaler_t* const frow = wrk->frow; local
[all...]
H A Drescaler_msa.c116 static WEBP_INLINE void ExportRowExpand_0(const uint32_t* frow, uint8_t* dst, argument
126 LD_UW4(frow, 4, src0, src1, src2, src3);
130 frow += 16;
138 LD_UW3(frow, 4, src0, src1, src2);
144 frow += 12;
149 LD_UW2(frow, 4, src0, src1);
154 frow += 8;
158 const v4u32 src0 = LD_UW(frow);
162 frow += 4;
166 const uint32_t J = frow[x_ou
174 ExportRowExpand_1(const uint32_t* frow, uint32_t* irow, uint8_t* dst, int length, WebPRescaler* const wrk) argument
253 const rescaler_t* frow = wrk->frow; local
265 ExportRowShrink_0(const uint32_t* frow, uint32_t* irow, uint8_t* dst, int length, const uint32_t yscale, WebPRescaler* const wrk) argument
418 const rescaler_t* frow = wrk->frow; local
[all...]
H A Drescaler.c44 wrk->frow[x_out] = right * wrk->x_add + (left - right) * accum;
84 wrk->frow[x_out] = sum * wrk->x_sub - frac;
102 const rescaler_t* const frow = wrk->frow; local
109 const uint32_t J = frow[x_out];
118 const uint64_t I = (uint64_t)A * frow[x_out]
133 const rescaler_t* const frow = wrk->frow; local
140 const uint32_t frac = (uint32_t)MULT_FIX(frow[x_out], yscale);
/external/webp/src/utils/
H A Drescaler_utils.c71 wrk->frow = work + num_channels * dst_width;
121 wrk->irow = wrk->frow;
122 wrk->frow = tmp;
128 wrk->irow[x] += wrk->frow[x];
H A Drescaler_utils.h46 rescaler_t* irow, *frow; // work buffer member in struct:WebPRescaler

Completed in 51 milliseconds