• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/

Lines Matching defs:row_offset

314                            int32_t row_offset)
316 for (; n > 0; dst += row_offset, n--)
338 copy_block4(dst, ref, row_offset, row_offset, 4 << v_zoom)
344 fill_64(dst + row_offset, pix64, 7, row_offset);\
345 AVG_64(dst, ref, dst + row_offset);\
347 fill_64(dst, pix64, 8, row_offset)
350 copy_block4(dst, ref, row_offset, row_offset, num_lines << v_zoom)
356 fill_64(dst + row_offset, pix64, (num_lines << 1) - 1, row_offset);\
357 AVG_64(dst, ref, dst + row_offset);\
359 fill_64(dst, pix64, num_lines << 1, row_offset)
368 AV_COPY32(dst, dst + row_offset);\
370 AVG_32(dst, ref, dst + row_offset);\
377 AV_WN32A(dst + row_offset , \
379 AV_WN32A(dst + row_offset + 4, \
382 AV_WN32A(dst + row_offset , \
384 AV_WN32A(dst + row_offset + 4, \
391 AV_COPY64(dst, dst + row_offset);\
393 AVG_64(dst, ref, dst + row_offset);
402 AV_WN32A(dst + row_offset , \
403 (AV_RN32A(dst + row_offset ) + delta_tab->deltas_m10[dyad1]) & 0x7F7F7F7F);\
404 AV_WN32A(dst + row_offset + 4, \
405 (AV_RN32A(dst + row_offset + 4) + delta_tab->deltas_m10[dyad2]) & 0x7F7F7F7F);\
411 AV_WN16A(dst + row_offset , \
412 (AV_RN16A(dst + row_offset ) + delta_tab->deltas[dyad1]) & 0x7F7F);\
413 AV_WN16A(dst + row_offset + 2, \
414 (AV_RN16A(dst + row_offset + 2) + delta_tab->deltas[dyad2]) & 0x7F7F);\
430 int row_offset, blk_row_offset, line_offset;
432 row_offset = pitch;
433 blk_row_offset = (row_offset << (2 + v_zoom)) - (cell->width << 2);
434 line_offset = v_zoom ? row_offset : 0;
543 ref += row_offset * (num_lines << v_zoom);
544 dst += row_offset * (num_lines << v_zoom);