Searched refs:SIZEOF_COEF (Results 1 – 2 of 2) sorted by relevance
/third_party/ffmpeg/tests/checkasm/ |
D | h264dsp.c | 35 #define SIZEOF_COEF (2 * ((bit_depth + 7) / 8)) macro 210 memset(subcoef0, 0, sz * sz * SIZEOF_COEF); in check_idct() 211 memcpy(subcoef0, coef, SIZEOF_COEF); in check_idct() 213 memcpy(subcoef0, coef, sz * sz * SIZEOF_COEF); in check_idct() 217 memcpy(subcoef1, subcoef0, sz * sz * SIZEOF_COEF); in check_idct() 221 memcmp(subcoef0, subcoef1, sz * sz * SIZEOF_COEF)) in check_idct() 268 memset(coef_full, 0, 16 * 16 * SIZEOF_COEF); in check_idct_multiple() 291 memcpy(&coef_full[i * SIZEOF_COEF/sizeof(coef[0])], in check_idct_multiple() 292 coef, nnz * SIZEOF_COEF); in check_idct_multiple() 302 memcpy(coef0, coef_full, 16 * 16 * SIZEOF_COEF); in check_idct_multiple() [all …]
|
D | vp9dsp.c | 308 #define SIZEOF_COEF (2 * ((bit_depth + 7) / 8)) macro 356 memcpy(subcoef0, coef, sz * sz * SIZEOF_COEF); in check_itxfm() 361 memcpy(subcoef1, subcoef0, sz * sz * SIZEOF_COEF); in check_itxfm() 365 !iszero(subcoef0, sz * sz * SIZEOF_COEF) || in check_itxfm() 366 !iszero(subcoef1, sz * sz * SIZEOF_COEF)) in check_itxfm()
|