Lines Matching refs:size
114 #define RSHIFT_SIZE(size) \
116 static int##size##_t rshift##size(int##size##_t value, int shift) \
118 int##size##_t rounding = (int##size##_t)1 << (shift - 1); \
119 int##size##_t mask = ((int##size##_t)1 << (shift + 1)) - 1; \
123 static int##size##_t rshift##size##_clip24(int##size##_t value, int shift) \
125 return av_clip_intp2(rshift##size(value, shift), 23); \