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

12345

/external/libvpx/libvpx/vp9/common/
H A Dvp9_mvref_common.h24 // TODO(jingning): this mv clamping function should be block size dependent.
25 static INLINE void clamp_mv2(MV *mv, const MACROBLOCKD *xd) { argument
26 clamp_mv(mv, xd->mb_to_left_edge - LEFT_TOP_MARGIN,
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/encoder/
H A Dvp9_mbgraph.h22 int_mv mv; member in union:__anon13177::__anon13178::__anon13179
/external/chromium_org/v8/tools/
H A Dtest-push-to-trunk.sh198 mv() { function
200 echo "mv $@" >> $TEST_OUTPUT
226 export -f mv
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_mbgraph.h22 int_mv mv; member in union:__anon24946::__anon24947::__anon24948
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/decoder/
H A Dec_types.h50 MV mv; member in struct:__anon13076
/external/libvpx/libvpx/vp8/decoder/
H A Dec_types.h50 MV mv; member in struct:__anon24867
/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/chromium_org/chrome/browser/extensions/
H A Dexternal_policy_loader_unittest.cc132 MockExternalPolicyProviderVisitor mv; local
133 mv.Visit(forced_extensions, expected_extensions);
151 MockExternalPolicyProviderVisitor mv; local
152 mv.Visit(forced_extensions, expected_extensions);
/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);
/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...]

Completed in 5270 milliseconds

12345