Searched refs:mv (Results 1 - 25 of 358) sorted by relevance

1234567891011>>

/external/srtp/
H A Dundos.sh9 mv $1.tmp $1
H A Dupdate.sh10 mv $x.tmp $x;
/external/libvpx/libvpx/vp9/common/
H A Dvp9_mv.h33 static void clamp_mv(MV *mv, int min_col, int max_col, argument
35 mv->col = clamp(mv->col, min_col, max_col);
36 mv->row = clamp(mv->row, min_row, max_row);
H A Dvp9_mvref_common.c29 // adding 9 for each intra block, 3 for each zero mv and 1 for each new
113 static void clamp_mv_ref(MV *mv, const MACROBLOCKD *xd) { argument
114 clamp_mv(mv, xd->mb_to_left_edge - MV_BORDER,
120 // This function returns either the appropriate sub block or block's mv
127 : candidate->mbmi.mv[which_mv];
131 // Performs mv sign inversion if indicated by the reference frame combination.
135 int_mv mv = mbmi->mv[ref]; local
137 mv.as_mv.row *= -1;
138 mv
173 is_inside(const TileInfo *const tile, int mi_col, int mi_row, int mi_rows, const MV *mv) argument
[all...]
H A Dvp9_findnearmv.c14 static void lower_mv_precision(MV *mv, int allow_hp) { argument
15 const int use_hp = allow_hp && vp9_use_mv_hp(mv);
17 if (mv->row & 1)
18 mv->row += (mv->row > 0 ? -1 : 1);
19 if (mv->col & 1)
20 mv->col += (mv->col > 0 ? -1 : 1);
H A Dvp9_entropymv.h102 static INLINE MV_JOINT_TYPE vp9_get_mv_joint(const MV *mv) { argument
103 if (mv->row == 0) {
104 return mv->col == 0 ? MV_JOINT_ZERO : MV_JOINT_HNZVZ;
106 return mv->col == 0 ? MV_JOINT_HZVNZ : MV_JOINT_HNZVNZ;
130 void vp9_inc_mv(const MV *mv, nmv_context_counts *mvctx);
/external/libvpx/libvpx/vp8/common/
H A Dfindnearmv.h15 #include "mv.h"
33 static void vp8_clamp_mv2(int_mv *mv, const MACROBLOCKD *xd) argument
35 if (mv->as_mv.col < (xd->mb_to_left_edge - LEFT_TOP_MARGIN))
36 mv->as_mv.col = xd->mb_to_left_edge - LEFT_TOP_MARGIN;
37 else if (mv->as_mv.col > xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN)
38 mv->as_mv.col = xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN;
40 if (mv->as_mv.row < (xd->mb_to_top_edge - LEFT_TOP_MARGIN))
41 mv->as_mv.row = xd->mb_to_top_edge - LEFT_TOP_MARGIN;
42 else if (mv->as_mv.row > xd->mb_to_bottom_edge + RIGHT_BOTTOM_MARGIN)
43 mv
46 vp8_clamp_mv(int_mv *mv, int mb_to_left_edge, int mb_to_right_edge, int mb_to_top_edge, int mb_to_bottom_edge) argument
58 vp8_check_mv_bounds(int_mv *mv, int mb_to_left_edge, int mb_to_right_edge, int mb_to_top_edge, int mb_to_bottom_edge) argument
[all...]
H A Dfindnearmv.c40 int_mv *mv = near_mvs; local
45 mv[0].as_int = mv[1].as_int = mv[2].as_int = 0;
51 if (above->mbmi.mv.as_int)
53 (++mv)->as_int = above->mbmi.mv.as_int;
54 mv_bias(ref_frame_sign_bias[above->mbmi.ref_frame], refframe, mv, ref_frame_sign_bias);
64 if (left->mbmi.mv.as_int)
68 this_mv.as_int = left->mbmi.mv
[all...]
H A Dreconinter.c131 ptr = base_pre + d->offset + (d->bmi.mv.as_mv.row >> 3) * pre_stride + (d->bmi.mv.as_mv.col >> 3);
133 if (d->bmi.mv.as_mv.row & 7 || d->bmi.mv.as_mv.col & 7)
135 sppf(ptr, pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7, pred_ptr, pitch);
154 ptr = base_pre + d->offset + (d->bmi.mv.as_mv.row >> 3) * pre_stride + (d->bmi.mv.as_mv.col >> 3);
156 if (d->bmi.mv.as_mv.row & 7 || d->bmi.mv
340 clamp_mv_to_umv_border(MV *mv, const MACROBLOCKD *xd) argument
363 clamp_uvmv_to_umv_border(MV *mv, const MACROBLOCKD *xd) argument
[all...]
/external/valgrind/main/auxprogs/
H A Dchange-copyright-year22 mv tmp.$$ $i
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/reflect/
H A DClassLoaderLocalMap.java157 MethodVisitor mv;
170 mv = cw.visitMethod(ACC_STATIC, "<clinit>", "()V", null, null);
171 mv.visitCode();
172 mv.visitTypeInsn(NEW, "java/util/WeakHashMap");
173 mv.visitInsn(DUP);
174 mv.visitMethodInsn(INVOKESPECIAL, "java/util/WeakHashMap", "<init>", "()V");
175 mv.visitFieldInsn(PUTSTATIC, holderClassName, "localMap", "Ljava/util/Map;");
176 mv.visitInsn(RETURN);
177 mv.visitMaxs(2, 0);
178 mv
[all...]
/external/libvpx/libvpx/vp8/decoder/
H A Dec_types.h46 MV mv; member in struct:__anon21560
H A Ddecodemv.c111 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);
268 leftmv.as_int = left_mb->mbmi.mv.as_int;
270 leftmv.as_int = (left_mb->bmi + k + 4 - 1)->mv.as_int;
273 leftmv.as_int = (mi->bmi + k - 1)->mv.as_int;
279 abovemv.as_int = above_mb->mbmi.mv.as_int;
281 abovemv.as_int = (above_mb->bmi + k + 16 - 4)->mv.as_int;
284 abovemv.as_int = (mi->bmi + k - 4)->mv.as_int;
328 mi->bmi[ *fill_offset].mv
[all...]
H A Derror_concealment.c189 new_row = row - bmi->mv.as_mv.row;
190 new_col = col - bmi->mv.as_mv.col;
256 bmi->mv.as_int = 0;
261 col_acc += overlaps[i].overlap * overlaps[i].bmi->mv.as_mv.col;
262 row_acc += overlaps[i].overlap * overlaps[i].bmi->mv.as_mv.row;
268 bmi->mv.as_mv.col = col_acc / overlap_sum;
269 bmi->mv.as_mv.row = row_acc / overlap_sum;
273 bmi->mv.as_mv.col = 0;
274 bmi->mv.as_mv.row = 0;
290 MV * const filtered_mv = &(mi->mbmi.mv
525 int_mv * const mv = &(mi->bmi[row*4 + col].mv); local
[all...]
/external/openfst/
H A Dfix_headers.sh14 mv -f .tmp $INPUT_FILE
/external/openssh/regress/
H A Dbrokenkeys.sh10 mv ${KEYS} ${KEYS}.bak
22 mv ${KEYS}.bak ${KEYS}
/external/chromium_org/native_client_sdk/src/build_tools/
H A Dnaclsdk15 mv "${SDK_TOOLS_UPDATE}" "${SDK_TOOLS}"
/external/dropbear/libtomcrypt/
H A Dupdatemakes.sh6 mv -f tmp.delme makefile
9 mv -f tmp.delme makefile.icc
12 mv -f tmp.delme makefile.shared
15 mv -f tmp.delme makefile.unix
/external/smack/
H A Dupdate.sh7 mv build/src/trunk ../src
/external/chromium_org/chrome/browser/resources/local_ntp/
H A Dlocal_ntp.css65 /* #fakebox width (here and below) should be 2px less than #mv-tiles
127 #mv-tiles {
141 #mv-tiles {
150 #mv-tiles {
155 .mv-row {
159 .mv-row:last-child {
163 .mv-tile:first-child {
167 .mv-tile {
182 .mv-tile.mv
[all...]
/external/grub/docs/
H A Dsrc2texi16 mv -f ${texi}.new ${dir}/${texi}
/external/smack/asmack-master/patch/
H A D00-relocate-javax.security.sh4 mv javax org/apache/harmony/
/external/chromium_org/v8/tools/
H A Dmingw-generate-makefiles.sh77 mv build/gyp/gyp build/gyp/gyp.original
78 mv build/gyp/gyp.mingw build/gyp/gyp
80 mv build/gyp/gyp build/gyp/gyp.mingw
81 mv build/gyp/gyp.original build/gyp/gyp
/external/dnsmasq/contrib/slackware-dnsmasq/
H A Ddoinst.sh.gz
/external/chromium/sdch/open-vcdiff/packages/
H A Ddeb.sh56 [ -n "${LIB}" ] && mv "${archive}" "${LIB}${archive}"
71 mv $(find tmp -mindepth 1 -maxdepth 1 -type f) "$destdir"

Completed in 671 milliseconds

1234567891011>>