Home | History | Annotate | Download | only in dsp

Lines Matching refs:BPS

60   dst[x + y * BPS] = clip_8b(dst[x + y * BPS] + ((v) >> 3))
101 dst += BPS;
115 VP8Transform(in + 2 * 16, dst + 4 * BPS, 1);
131 if (in[2 * 16]) TransformDC(in + 2 * 16, dst + 4 * BPS);
132 if (in[3 * 16]) TransformDC(in + 3 * 16, dst + 4 * BPS + 4);
172 #define DST(x, y) dst[(x) + (y) * BPS]
175 const uint8_t* top = dst - BPS;
184 dst += BPS;
197 memcpy(dst + j * BPS, dst - BPS, 16);
205 dst += BPS;
212 memset(dst + j * BPS, v, 16);
220 DC += dst[-1 + j * BPS] + dst[j - BPS];
229 DC += dst[-1 + j * BPS];
238 DC += dst[i - BPS];
254 const uint8_t* top = dst - BPS;
263 memcpy(dst + i * BPS, vals, sizeof(vals));
268 const int A = dst[-1 - BPS];
270 const int C = dst[-1 + BPS];
271 const int D = dst[-1 + 2 * BPS];
272 const int E = dst[-1 + 3 * BPS];
273 *(uint32_t*)(dst + 0 * BPS) = 0x01010101U * AVG3(A, B, C);
274 *(uint32_t*)(dst + 1 * BPS) = 0x01010101U * AVG3(B, C, D);
275 *(uint32_t*)(dst + 2 * BPS) = 0x01010101U * AVG3(C, D, E);
276 *(uint32_t*)(dst + 3 * BPS) = 0x01010101U * AVG3(D, E, E);
282 for (i = 0; i < 4; ++i) dc += dst[i - BPS] + dst[-1 + i * BPS];
284 for (i = 0; i < 4; ++i) memset(dst + i * BPS, dc, 4);
288 const int I = dst[-1 + 0 * BPS];
289 const int J = dst[-1 + 1 * BPS];
290 const int K = dst[-1 + 2 * BPS];
291 const int L = dst[-1 + 3 * BPS];
292 const int X = dst[-1 - BPS];
293 const int A = dst[0 - BPS];
294 const int B = dst[1 - BPS];
295 const int C = dst[2 - BPS];
296 const int D = dst[3 - BPS];
307 const int A = dst[0 - BPS];
308 const int B = dst[1 - BPS];
309 const int C = dst[2 - BPS];
310 const int D = dst[3 - BPS];
311 const int E = dst[4 - BPS];
312 const int F = dst[5 - BPS];
313 const int G = dst[6 - BPS];
314 const int H = dst[7 - BPS];
325 const int I = dst[-1 + 0 * BPS];
326 const int J = dst[-1 + 1 * BPS];
327 const int K = dst[-1 + 2 * BPS];
328 const int X = dst[-1 - BPS];
329 const int A = dst[0 - BPS];
330 const int B = dst[1 - BPS];
331 const int C = dst[2 - BPS];
332 const int D = dst[3 - BPS];
347 const int A = dst[0 - BPS];
348 const int B = dst[1 - BPS];
349 const int C = dst[2 - BPS];
350 const int D = dst[3 - BPS];
351 const int E = dst[4 - BPS];
352 const int F = dst[5 - BPS];
353 const int G = dst[6 - BPS];
354 const int H = dst[7 - BPS];
369 const int I = dst[-1 + 0 * BPS];
370 const int J = dst[-1 + 1 * BPS];
371 const int K = dst[-1 + 2 * BPS];
372 const int L = dst[-1 + 3 * BPS];
384 const int I = dst[-1 + 0 * BPS];
385 const int J = dst[-1 + 1 * BPS];
386 const int K = dst[-1 + 2 * BPS];
387 const int L = dst[-1 + 3 * BPS];
388 const int X = dst[-1 - BPS];
389 const int A = dst[0 - BPS];
390 const int B = dst[1 - BPS];
391 const int C = dst[2 - BPS];
416 memcpy(dst + j * BPS, dst - BPS, 8);
424 dst += BPS;
434 *(uint64_t*)(dst + j * BPS) = v;
437 for (j = 0; j < 8; ++j) memset(dst + j * BPS, value, 8);
445 dc0 += dst[i - BPS] + dst[-1 + i * BPS];
454 dc0 += dst[i - BPS];
463 dc0 += dst[-1 + i * BPS];