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

1234567891011>>

/external/chromium_org/third_party/libsrtp/srtp/
H A Dundos.sh42 mv $1.tmp $1
H A Dupdate.sh41 mv $x.tmp $x;
/external/srtp/
H A Dundos.sh9 mv $1.tmp $1
H A Dupdate.sh10 mv $x.tmp $x;
/external/mockito/cglib-and-asm/src/org/mockito/asm/
H A DMethodAdapter.java45 protected MethodVisitor mv; field in class:MethodAdapter
50 * @param mv the code visitor to which this adapter must delegate calls.
52 public MethodAdapter(final MethodVisitor mv) { argument
53 this.mv = mv;
57 return mv.visitAnnotationDefault();
64 return mv.visitAnnotation(desc, visible);
72 return mv.visitParameterAnnotation(parameter, desc, visible);
76 mv.visitAttribute(attr);
80 mv
[all...]
/external/libvpx/libvpx/vp9/common/
H A Dvp9_mv.h22 typedef struct mv { struct
37 static INLINE void clamp_mv(MV *mv, int min_col, int max_col, argument
39 mv->col = clamp(mv->col, min_col, max_col);
40 mv->row = clamp(mv->row, min_row, max_row);
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
H A Dvp9_mv.h22 typedef struct mv { struct
37 static INLINE int is_zero_mv(const MV *mv) { argument
38 return *((const uint32_t *)mv) == 0;
45 static INLINE void clamp_mv(MV *mv, int min_col, int max_col, argument
47 mv->col = clamp(mv->col, min_col, max_col);
48 mv->row = clamp(mv->row, min_row, max_row);
H A Dvp9_mvref_common.h44 // adding 9 for each intra block, 3 for each zero mv and 1 for each new
128 static INLINE void clamp_mv_ref(MV *mv, const MACROBLOCKD *xd) { argument
129 clamp_mv(mv, xd->mb_to_left_edge - MV_BORDER,
135 // This function returns either the appropriate sub block or block's mv
142 : candidate->mbmi.mv[which_mv];
146 // Performs mv sign inversion if indicated by the reference frame combination.
150 int_mv mv = mbmi->mv[ref]; local
152 mv.as_mv.row *= -1;
153 mv
200 clamp_mv2(MV *mv, const MACROBLOCKD *xd) argument
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
H A Dfindnearmv.h15 #include "mv.h"
37 static void vp8_clamp_mv2(int_mv *mv, const MACROBLOCKD *xd) argument
39 if (mv->as_mv.col < (xd->mb_to_left_edge - LEFT_TOP_MARGIN))
40 mv->as_mv.col = xd->mb_to_left_edge - LEFT_TOP_MARGIN;
41 else if (mv->as_mv.col > xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN)
42 mv->as_mv.col = xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN;
44 if (mv->as_mv.row < (xd->mb_to_top_edge - LEFT_TOP_MARGIN))
45 mv->as_mv.row = xd->mb_to_top_edge - LEFT_TOP_MARGIN;
46 else if (mv->as_mv.row > xd->mb_to_bottom_edge + RIGHT_BOTTOM_MARGIN)
47 mv
50 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
62 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/libvpx/libvpx/vp8/common/
H A Dfindnearmv.h15 #include "mv.h"
37 static void vp8_clamp_mv2(int_mv *mv, const MACROBLOCKD *xd) argument
39 if (mv->as_mv.col < (xd->mb_to_left_edge - LEFT_TOP_MARGIN))
40 mv->as_mv.col = xd->mb_to_left_edge - LEFT_TOP_MARGIN;
41 else if (mv->as_mv.col > xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN)
42 mv->as_mv.col = xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN;
44 if (mv->as_mv.row < (xd->mb_to_top_edge - LEFT_TOP_MARGIN))
45 mv->as_mv.row = xd->mb_to_top_edge - LEFT_TOP_MARGIN;
46 else if (mv->as_mv.row > xd->mb_to_bottom_edge + RIGHT_BOTTOM_MARGIN)
47 mv
50 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
62 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...]
/external/chromium_org/chrome/browser/resources/local_ntp/
H A Dlocal_ntp.css69 /* #fakebox width (here and below) should be 2px less than #mv-tiles
178 #mv-tiles {
184 body[dir=rtl] #mv-tiles {
188 .classical #mv-tiles {
193 .md #mv-tiles {
198 .mv-tile {
204 .mv-page-ready {
209 .classical .mv-tile {
219 .classical .mv-page-ready {
224 .md .mv
[all...]
/external/valgrind/main/auxprogs/
H A Dchange-copyright-year22 mv tmp.$$ $i
27 mv tmp.$$ $i
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
H A DInsnNode.java72 * @param mv a method visitor.
74 public void accept(final MethodVisitor mv) { argument
75 mv.visitInsn(opcode);
H A DIntInsnNode.java74 public void accept(final MethodVisitor mv) { argument
75 mv.visitIntInsn(opcode, operand);
H A DLdcInsnNode.java67 public void accept(final MethodVisitor mv) { argument
68 mv.visitLdcInsn(cst);
H A DVarInsnNode.java80 public void accept(final MethodVisitor mv) { argument
81 mv.visitVarInsn(opcode, var);
/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/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_mbgraph.h22 int_mv mv; member in union:__anon13177::__anon13178::__anon13179
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_mbgraph.h22 int_mv mv; member in union:__anon24946::__anon24947::__anon24948
/external/openfst/
H A Dfix_headers.sh14 mv -f .tmp $INPUT_FILE
/external/chromium_org/native_client_sdk/src/build_tools/
H A Dnaclsdk15 mv "${SDK_TOOLS_UPDATE}" "${SDK_TOOLS}"
/external/smack/
H A Dupdate.sh7 mv build/src/trunk ../src

Completed in 476 milliseconds

1234567891011>>