Lines Matching defs:buf0
134 AV_WN32A(buf0 + i, r); \
139 #define src0 (buf0 + 4 * 16) /* Offset to allow room for top and left */
142 static void check_pred4x4(H264PredContext *h, uint8_t *buf0, uint8_t *buf1,
146 uint8_t *topright = buf0 + 2*16;
155 if (memcmp(buf0, buf1, BUF_SIZE))
163 static void check_pred8x8(H264PredContext *h, uint8_t *buf0, uint8_t *buf1,
175 if (memcmp(buf0, buf1, BUF_SIZE))
182 static void check_pred16x16(H264PredContext *h, uint8_t *buf0, uint8_t *buf1,
194 if (memcmp(buf0, buf1, BUF_SIZE))
202 static void check_pred8x8l(H264PredContext *h, uint8_t *buf0, uint8_t *buf1,
222 if (memcmp(buf0, buf1, BUF_SIZE))
245 LOCAL_ALIGNED_16(uint8_t, buf0, [BUF_SIZE]);
256 tests[test].func(&h, buf0, buf1, codec, chroma_format, bit_depth);