Searched defs:mv (Results 1 - 25 of 82) sorted by relevance

1234

/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_mbgraph.h22 int_mv mv; member in union:__anon9579::__anon9580::__anon9581
H A Dvp9_mcomp.h25 // Max full pel mv specified in the unit of full pixel
36 MV mv; member in struct:search_site
49 void vp9_set_mv_search_range(MACROBLOCK *x, const MV *mv);
50 int vp9_mv_bit_cost(const MV *mv, const MV *ref,
/external/v8/tools/
H A Dtest-push-to-trunk.sh198 mv() { function
200 echo "mv $@" >> $TEST_OUTPUT
226 export -f mv
/external/libvpx/libvpx/vp8/decoder/
H A Dec_types.h50 MV mv; member in struct:__anon9478
/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);
H A Dvp9_scale.c36 MV32 vp9_scale_mv(const MV *mv, int x, int y, const struct scale_factors *sf) { argument
40 scaled_y(mv->row, sf) + y_off_q4,
41 scaled_x(mv->col, sf) + x_off_q4
H A Dvp9_mvref_common.c38 // if the size < 8x8 we get the mv from the bmi substructure,
68 ADD_MV_REF_LIST(candidate->mv[0]);
70 ADD_MV_REF_LIST(candidate->mv[1]);
74 // Check the last frame's mode and mv info.
77 ADD_MV_REF_LIST(prev_mbmi->mv[0]);
79 ADD_MV_REF_LIST(prev_mbmi->mv[1]);
92 // If the candidate is INTRA we don't want to consider its mv.
120 static void lower_mv_precision(MV *mv, int allow_hp) { argument
121 const int use_hp = allow_hp && vp9_use_mv_hp(mv);
123 if (mv
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
H A DIincInsnNode.java70 public void accept(final MethodVisitor mv) { argument
71 mv.visitIincInsn(var, incr);
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 DJumpInsnNode.java82 public void accept(final MethodVisitor mv) { argument
83 mv.visitJumpInsn(opcode, label.getLabel());
H A DLdcInsnNode.java67 public void accept(final MethodVisitor mv) { argument
68 mv.visitLdcInsn(cst);
H A DLineNumberNode.java72 public void accept(final MethodVisitor mv) { argument
73 mv.visitLineNumber(line, start.getLabel());
H A DLocalVariableNode.java105 * @param mv a method visitor.
107 public void accept(final MethodVisitor mv) { argument
108 mv.visitLocalVariable(name,
H A DLookupSwitchInsnNode.java95 public void accept(final MethodVisitor mv) { argument
104 mv.visitLookupSwitchInsn(dflt.getLabel(), keys, labels);
H A DMethodInsnNode.java97 public void accept(final MethodVisitor mv) { argument
98 mv.visitMethodInsn(opcode, owner, name, desc);
H A DMultiANewArrayInsnNode.java70 public void accept(final MethodVisitor mv) { argument
71 mv.visitMultiANewArrayInsn(desc, dims);
H A DTableSwitchInsnNode.java98 public void accept(final MethodVisitor mv) { argument
103 mv.visitTableSwitchInsn(min, max, dflt.getLabel(), labels);
H A DTryCatchBlockNode.java87 * @param mv a method visitor.
89 public void accept(final MethodVisitor mv) { argument
90 mv.visitTryCatchBlock(start.getLabel(), end.getLabel(), handler == null
H A DTypeInsnNode.java77 public void accept(final MethodVisitor mv) { argument
78 mv.visitTypeInsn(opcode, desc);
H A DVarInsnNode.java80 public void accept(final MethodVisitor mv) { argument
81 mv.visitVarInsn(opcode, var);
H A DFrameNode.java138 * @param mv a method visitor.
140 public void accept(final MethodVisitor mv) { argument
144 mv.visitFrame(type,
151 mv.visitFrame(type, local.size(), asArray(local), 0, null);
154 mv.visitFrame(type, local.size(), asArray(local), 0, null);
157 mv.visitFrame(type, 0, null, 0, null);
160 mv.visitFrame(type, 0, null, 1, asArray(stack));
/external/vogar/src/vogar/
H A DHostFileCache.java44 private void mv(File source, File destination) { method in class:HostFileCache
45 List<String> rawResult = new Command.Builder(log).args("mv", source, destination).execute();
65 mv(temporary, cachedFile);
/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...]

Completed in 1005 milliseconds

1234