Lines Matching defs:shift
133 #define DCT_TEMPLATE(blk, step, bias, shift, dshift, OP) \
148 blk[0 * step] = (t6 + t5 + t8) >> shift; \
149 blk[1 * step] = (t7 + t4 + tA) >> shift; \
150 blk[2 * step] = (t7 - t4 + tB) >> shift; \
151 blk[3 * step] = (t6 - t5 + tC) >> shift; \
152 blk[4 * step] = (t6 - t5 - tC) >> shift; \
153 blk[5 * step] = (t7 - t4 - tB) >> shift; \
154 blk[6 * step] = (t7 + t4 - tA) >> shift; \
155 blk[7 * step] = (t6 + t5 - t8) >> shift; \
228 int shift = plane > 0;
236 x + size > avctx->coded_width >> shift ||
237 y + size > avctx->coded_height >> shift ||
238 sx + size > avctx->coded_width >> shift ||
239 sy + size > avctx->coded_height >> shift)
264 int shift = plane > 0;
276 x + size > avctx->coded_width >> shift ||
277 y + size > avctx->coded_height >> shift ||
278 sx + size > avctx->coded_width >> shift ||
279 sy + size > avctx->coded_height >> shift)
468 int shift = comp > 0;
469 int w = buf->width >> shift;
470 int h = buf->height >> shift;