/external/chromium_org/third_party/libwebp/dsp/ |
D | enc.c | 345 #define AVG3(a, b, c) (((a) + 2 * (b) + (c) + 2) >> 2) macro 350 AVG3(top[-1], top[0], top[1]), in VE4() 351 AVG3(top[ 0], top[1], top[2]), in VE4() 352 AVG3(top[ 1], top[2], top[3]), in VE4() 353 AVG3(top[ 2], top[3], top[4]) in VE4() 367 *(uint32_t*)(dst + 0 * BPS) = 0x01010101U * AVG3(X, I, J); in HE4() 368 *(uint32_t*)(dst + 1 * BPS) = 0x01010101U * AVG3(I, J, K); in HE4() 369 *(uint32_t*)(dst + 2 * BPS) = 0x01010101U * AVG3(J, K, L); in HE4() 370 *(uint32_t*)(dst + 3 * BPS) = 0x01010101U * AVG3(K, L, L); in HE4() 390 DST(0, 3) = AVG3(J, K, L); in RD4() [all …]
|
D | dec.c | 252 #define AVG3(a, b, c) (((a) + 2 * (b) + (c) + 2) >> 2) macro 258 AVG3(top[-1], top[0], top[1]), in VE4() 259 AVG3(top[ 0], top[1], top[2]), in VE4() 260 AVG3(top[ 1], top[2], top[3]), in VE4() 261 AVG3(top[ 2], top[3], top[4]) in VE4() 275 *(uint32_t*)(dst + 0 * BPS) = 0x01010101U * AVG3(A, B, C); in HE4() 276 *(uint32_t*)(dst + 1 * BPS) = 0x01010101U * AVG3(B, C, D); in HE4() 277 *(uint32_t*)(dst + 2 * BPS) = 0x01010101U * AVG3(C, D, E); in HE4() 278 *(uint32_t*)(dst + 3 * BPS) = 0x01010101U * AVG3(D, E, E); in HE4() 299 DST(0, 3) = AVG3(J, K, L); in RD4() [all …]
|
/external/webp/src/dsp/ |
D | enc.c | 345 #define AVG3(a, b, c) (((a) + 2 * (b) + (c) + 2) >> 2) macro 350 AVG3(top[-1], top[0], top[1]), in VE4() 351 AVG3(top[ 0], top[1], top[2]), in VE4() 352 AVG3(top[ 1], top[2], top[3]), in VE4() 353 AVG3(top[ 2], top[3], top[4]) in VE4() 367 *(uint32_t*)(dst + 0 * BPS) = 0x01010101U * AVG3(X, I, J); in HE4() 368 *(uint32_t*)(dst + 1 * BPS) = 0x01010101U * AVG3(I, J, K); in HE4() 369 *(uint32_t*)(dst + 2 * BPS) = 0x01010101U * AVG3(J, K, L); in HE4() 370 *(uint32_t*)(dst + 3 * BPS) = 0x01010101U * AVG3(K, L, L); in HE4() 390 DST(0, 3) = AVG3(J, K, L); in RD4() [all …]
|
D | dec.c | 252 #define AVG3(a, b, c) (((a) + 2 * (b) + (c) + 2) >> 2) macro 258 AVG3(top[-1], top[0], top[1]), in VE4() 259 AVG3(top[ 0], top[1], top[2]), in VE4() 260 AVG3(top[ 1], top[2], top[3]), in VE4() 261 AVG3(top[ 2], top[3], top[4]) in VE4() 275 *(uint32_t*)(dst + 0 * BPS) = 0x01010101U * AVG3(A, B, C); in HE4() 276 *(uint32_t*)(dst + 1 * BPS) = 0x01010101U * AVG3(B, C, D); in HE4() 277 *(uint32_t*)(dst + 2 * BPS) = 0x01010101U * AVG3(C, D, E); in HE4() 278 *(uint32_t*)(dst + 3 * BPS) = 0x01010101U * AVG3(D, E, E); in HE4() 299 DST(0, 3) = AVG3(J, K, L); in RD4() [all …]
|