Searched refs:mvc (Results 1 - 25 of 29) sorted by relevance

12

/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Dencodemv.h23 void vp8_build_component_cost_table(int *mvcost[2], const MV_CONTEXT *mvc, int mvc_flag[2]);
H A Dencodemv.c26 const struct mv_context *mvc
29 const vp8_prob *p = mvc->prob;
68 void vp8_encode_motion_vector(vp8_writer *w, const MV *mv, const MV_CONTEXT *mvc) argument
95 encode_mvcomponent(w, mv->row >> 1, &mvc[0]);
96 encode_mvcomponent(w, mv->col >> 1, &mvc[1]);
100 static unsigned int cost_mvcomponent(const int v, const struct mv_context *mvc) argument
102 const vp8_prob *p = mvc->prob;
138 void vp8_build_component_cost_table(int *mvcost[2], const MV_CONTEXT *mvc, int mvc_flag[2]) argument
150 mvcost [0] [0] = cost_mvcomponent(0, &mvc[0]);
154 cost0 = cost_mvcomponent(i, &mvc[
360 MV_CONTEXT *mvc = cpi->common.fc.mvc; local
[all...]
H A Dblock.h124 MV_CONTEXT *mvc; member in struct:macroblock
H A Dratectrl.c231 vp8_copy(cc->mvc, cpi->common.fc.mvc);
268 vp8_copy(cpi->common.fc.mvc, cc->mvc);
299 vpx_memcpy(cpi->common.fc.mvc, vp8_default_mv_context, sizeof(vp8_default_mv_context));
302 vp8_build_component_cost_table(cpi->mb.mvcost, (const MV_CONTEXT *) cpi->common.fc.mvc, flag);
H A Dbitstream.c451 vp8_writer *w, const MV *mv, const int_mv *ref, const MV_CONTEXT *mvc
458 vp8_encode_motion_vector(w, &e, mvc);
520 const MV_CONTEXT *mvc = pc->fc.mvc; local
655 write_mv(w, &mi->mv.as_mv, &best_mv, mvc);
697 write_mv(w, &blockmv.as_mv, &best_mv, (const MV_CONTEXT *) mvc);
H A Dethreading.c353 z->mvc = x->mvc;
493 mb->mvc = cm->fc.mvc;
H A Donyx_int.h73 MV_CONTEXT mvc[2]; member in struct:__anon13085
H A Dencodeframe.c659 x->mvc = cm->fc.mvc;
H A Dfirstpass.c574 vpx_memcpy(cm->fc.mvc, vp8_default_mv_context, sizeof(vp8_default_mv_context));
575 vp8_build_component_cost_table(cpi->mb.mvcost, (const MV_CONTEXT *) cm->fc.mvc, flag);
/external/libvpx/libvpx/vp8/encoder/
H A Dencodemv.h23 void vp8_build_component_cost_table(int *mvcost[2], const MV_CONTEXT *mvc, int mvc_flag[2]);
H A Dencodemv.c26 const struct mv_context *mvc
29 const vp8_prob *p = mvc->prob;
68 void vp8_encode_motion_vector(vp8_writer *w, const MV *mv, const MV_CONTEXT *mvc) argument
95 encode_mvcomponent(w, mv->row >> 1, &mvc[0]);
96 encode_mvcomponent(w, mv->col >> 1, &mvc[1]);
100 static unsigned int cost_mvcomponent(const int v, const struct mv_context *mvc) argument
102 const vp8_prob *p = mvc->prob;
138 void vp8_build_component_cost_table(int *mvcost[2], const MV_CONTEXT *mvc, int mvc_flag[2]) argument
150 mvcost [0] [0] = cost_mvcomponent(0, &mvc[0]);
154 cost0 = cost_mvcomponent(i, &mvc[
360 MV_CONTEXT *mvc = cpi->common.fc.mvc; local
[all...]
H A Dblock.h124 MV_CONTEXT *mvc; member in struct:macroblock
H A Dratectrl.c231 vp8_copy(cc->mvc, cpi->common.fc.mvc);
268 vp8_copy(cpi->common.fc.mvc, cc->mvc);
299 vpx_memcpy(cpi->common.fc.mvc, vp8_default_mv_context, sizeof(vp8_default_mv_context));
302 vp8_build_component_cost_table(cpi->mb.mvcost, (const MV_CONTEXT *) cpi->common.fc.mvc, flag);
H A Dbitstream.c452 vp8_writer *w, const MV *mv, const int_mv *ref, const MV_CONTEXT *mvc
459 vp8_encode_motion_vector(w, &e, mvc);
521 const MV_CONTEXT *mvc = pc->fc.mvc; local
656 write_mv(w, &mi->mv.as_mv, &best_mv, mvc);
698 write_mv(w, &blockmv.as_mv, &best_mv, (const MV_CONTEXT *) mvc);
H A Dethreading.c338 z->mvc = x->mvc;
478 mb->mvc = cm->fc.mvc;
H A Donyx_int.h76 MV_CONTEXT mvc[2]; member in struct:__anon24875
H A Dencodeframe.c646 x->mvc = cm->fc.mvc;
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/decoder/
H A Ddecodemv.c76 static int read_mvcomponent(vp8_reader *r, const MV_CONTEXT *mvc) argument
78 const vp8_prob *const p = (const vp8_prob *) mvc;
111 static void read_mv(vp8_reader *r, MV *mv, const MV_CONTEXT *mvc) argument
113 mv->row = (short)(read_mvcomponent(r, mvc) * 2);
114 mv->col = (short)(read_mvcomponent(r, ++mvc) * 2);
118 static void read_mvcontexts(vp8_reader *bc, MV_CONTEXT *mvc) argument
125 vp8_prob *p = (vp8_prob *)(mvc + i);
154 MV_CONTEXT *const mvc = pbi->common.fc.mvc; local
199 read_mvcontexts(bc, mvc);
230 decode_split_mv(vp8_reader *const bc, MODE_INFO *mi, const MODE_INFO *left_mb, const MODE_INFO *above_mb, MB_MODE_INFO *mbmi, int_mv best_mv, MV_CONTEXT *const mvc, int mb_to_left_edge, int mb_to_right_edge, int mb_to_top_edge, int mb_to_bottom_edge) argument
457 MV_CONTEXT *const mvc = pbi->common.fc.mvc; local
[all...]
/external/libvpx/libvpx/vp8/decoder/
H A Ddecodemv.c76 static int read_mvcomponent(vp8_reader *r, const MV_CONTEXT *mvc) argument
78 const vp8_prob *const p = (const vp8_prob *) mvc;
111 static void read_mv(vp8_reader *r, MV *mv, const MV_CONTEXT *mvc) argument
113 mv->row = (short)(read_mvcomponent(r, mvc) * 2);
114 mv->col = (short)(read_mvcomponent(r, ++mvc) * 2);
118 static void read_mvcontexts(vp8_reader *bc, MV_CONTEXT *mvc) argument
125 vp8_prob *p = (vp8_prob *)(mvc + i);
154 MV_CONTEXT *const mvc = pbi->common.fc.mvc; local
199 read_mvcontexts(bc, mvc);
230 decode_split_mv(vp8_reader *const bc, MODE_INFO *mi, const MODE_INFO *left_mb, const MODE_INFO *above_mb, MB_MODE_INFO *mbmi, int_mv best_mv, MV_CONTEXT *const mvc, int mb_to_left_edge, int mb_to_right_edge, int mb_to_top_edge, int mb_to_bottom_edge) argument
457 MV_CONTEXT *const mvc = pbi->common.fc.mvc; local
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_encodemv.c166 nmv_context *const mvc = &cm->fc.nmvc; local
169 write_mv_update(vp9_mv_joint_tree, mvc->joints, counts->joints, MV_JOINTS, w);
172 nmv_component *comp = &mvc->comps[i];
186 write_mv_update(vp9_mv_fp_tree, mvc->comps[i].class0_fp[j],
189 write_mv_update(vp9_mv_fp_tree, mvc->comps[i].fp, counts->comps[i].fp,
195 update_mv(w, counts->comps[i].class0_hp, &mvc->comps[i].class0_hp,
197 update_mv(w, counts->comps[i].hp, &mvc->comps[i].hp, MV_UPDATE_PROB);
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_encodemv.c166 nmv_context *const mvc = &cm->fc.nmvc; local
169 write_mv_update(vp9_mv_joint_tree, mvc->joints, counts->joints, MV_JOINTS, w);
172 nmv_component *comp = &mvc->comps[i];
186 write_mv_update(vp9_mv_fp_tree, mvc->comps[i].class0_fp[j],
189 write_mv_update(vp9_mv_fp_tree, mvc->comps[i].fp, counts->comps[i].fp,
195 update_mv(w, counts->comps[i].class0_hp, &mvc->comps[i].class0_hp,
197 update_mv(w, counts->comps[i].hp, &mvc->comps[i].hp, MV_UPDATE_PROB);
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
H A Donyxc_int.h48 MV_CONTEXT mvc[2]; member in struct:frame_contexts
/external/libvpx/libvpx/vp8/common/
H A Donyxc_int.h48 MV_CONTEXT mvc[2]; member in struct:frame_contexts
/external/llvm/test/MC/SystemZ/
H A Dinsn-bad.s2163 #CHECK: mvc 0, 0
2165 #CHECK: mvc 0(%r1), 0(%r1)
2167 #CHECK: mvc 0(1,%r1), 0(2,%r1)
2169 #CHECK: mvc 0(0,%r1), 0(%r1)
2171 #CHECK: mvc 0(257,%r1), 0(%r1)
2173 #CHECK: mvc -1(1,%r1), 0(%r1)
2175 #CHECK: mvc 4096(1,%r1), 0(%r1)
2177 #CHECK: mvc 0(1,%r1), -1(%r1)
2179 #CHECK: mvc 0(1,%r1), 4096(%r1)
2181 #CHECK: mvc
[all...]
/external/openssl/crypto/aes/asm/
H A Daes-s390x.pl1225 ahi $key,-1 # it's the way it's encoded in mvc
1232 mvc 16*$SIZE_T(1,$sp),0($inp)
1247 mvc 0(1,$out),16*$SIZE_T($sp)
1311 mvc 16*$SIZE_T(1,$sp),0($inp)
1372 mvc 0(1,$out),16*$SIZE_T($sp)

Completed in 224 milliseconds

12