Lines Matching refs:cy

1066 static int opcode_0xf7(SANMVideoContext *ctx, int cx, int cy, int block_size, ptrdiff_t pitch)
1068 uint16_t *dst = ctx->frm0 + cx + cy * ctx->pitch;
1100 static int opcode_0xf8(SANMVideoContext *ctx, int cx, int cy, int block_size, ptrdiff_t pitch)
1102 uint16_t *dst = ctx->frm0 + cx + cy * ctx->pitch;
1128 static int good_mvec(SANMVideoContext *ctx, int cx, int cy, int mx, int my,
1131 int start_pos = cx + mx + (cy + my) * ctx->pitch;
1139 cx + mx, cy + my, cx, cy, block_size);
1144 static int codec2subblock(SANMVideoContext *ctx, int cx, int cy, int blk_size)
1159 if (good_mvec(ctx, cx, cy, mx, my, blk_size)) {
1160 copy_block(ctx->frm0 + cx + ctx->pitch * cy,
1161 ctx->frm2 + cx + mx + ctx->pitch * (cy + my),
1173 if (good_mvec(ctx, cx, cy, mx, my, blk_size)) {
1174 copy_block(ctx->frm0 + cx + ctx->pitch * cy,
1175 ctx->frm2 + cx + mx + ctx->pitch * (cy + my),
1180 copy_block(ctx->frm0 + cx + ctx->pitch * cy,
1181 ctx->frm1 + cx + ctx->pitch * cy,
1185 opcode_0xf7(ctx, cx, cy, blk_size, ctx->pitch);
1189 opcode_0xf8(ctx, cx, cy, blk_size, ctx->pitch);
1195 fill_block(ctx->frm0 + cx + cy * ctx->pitch,
1201 fill_block(ctx->frm0 + cx + cy * ctx->pitch,
1207 fill_block(ctx->frm0 + cx + cy * ctx->pitch,
1212 opcode_0xf8(ctx, cx, cy, blk_size, ctx->pitch);
1215 if (codec2subblock(ctx, cx, cy, blk_size))
1217 if (codec2subblock(ctx, cx + blk_size, cy, blk_size))
1219 if (codec2subblock(ctx, cx, cy + blk_size, blk_size))
1221 if (codec2subblock(ctx, cx + blk_size, cy + blk_size, blk_size))
1231 int cx, cy, ret;
1233 for (cy = 0; cy < ctx->aligned_height; cy += 8)
1235 if (ret = codec2subblock(ctx, cx, cy, 8))