Lines Matching refs:PX
155 #define PUT_SIGNED_RECT_CLAMPED(PX) \
156 static void put_signed_rect_clamped_ ## PX ## bit_c(uint8_t *_dst, int dst_stride, const uint8_t *_src, \
164 dst[x ] = av_clip_uintp2(src[x ] + (1U << (PX - 1)), PX); \
165 dst[x+1] = av_clip_uintp2(src[x+1] + (1U << (PX - 1)), PX); \
166 dst[x+2] = av_clip_uintp2(src[x+2] + (1U << (PX - 1)), PX); \
167 dst[x+3] = av_clip_uintp2(src[x+3] + (1U << (PX - 1)), PX); \
194 #define DEQUANT_SUBBAND(PX) \
195 static void dequant_subband_ ## PX ## _c(uint8_t *src, uint8_t *dst, ptrdiff_t stride, \
200 PX c, *src_r = (PX *)src, *dst_r = (PX *)dst; \
207 src += tot_h << (sizeof(PX) >> 1); \