HomeSort by relevance Sort by last modified time
    Searched refs:mv (Results 1 - 25 of 649) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/libsrtp/srtp/
undos.sh 42 mv $1.tmp $1
update.sh 41 mv $x.tmp $x;
  /external/srtp/
undos.sh 9 mv $1.tmp $1
update.sh 10 mv $x.tmp $x;
  /external/mockito/cglib-and-asm/src/org/mockito/asm/
MethodAdapter.java 45 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) {
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.visitCode();
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
vp9_mv.h 22 typedef struct mv { struct
25 } MV;
29 MV as_mv;
37 static INLINE void clamp_mv(MV *mv, int min_col, int max_col,
39 mv->col = clamp(mv->col, min_col, max_col);
40 mv->row = clamp(mv->row, min_row, max_row);
  /external/libvpx/libvpx/vp9/common/
vp9_mv.h 22 typedef struct mv { struct
25 } MV;
29 MV as_mv;
37 static INLINE void clamp_mv(MV *mv, int min_col, int max_col,
39 mv->col = clamp(mv->col, min_col, max_col);
40 mv->row = clamp(mv->row, min_row, max_row);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_mv.h 22 typedef struct mv { struct
25 } MV;
29 MV as_mv;
37 static INLINE void clamp_mv(MV *mv, int min_col, int max_col,
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/vp8/common/
findnearmv.h 15 #include "mv.h"
37 static void vp8_clamp_mv2(int_mv *mv, const MACROBLOCKD *xd)
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->as_mv.row = xd->mb_to_bottom_edge + RIGHT_BOTTOM_MARGIN
    [all...]
findnearmv.c 40 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.as_int
    [all...]
  /external/libvpx/libvpx/vp8/common/
findnearmv.h 15 #include "mv.h"
37 static void vp8_clamp_mv2(int_mv *mv, const MACROBLOCKD *xd)
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->as_mv.row = xd->mb_to_bottom_edge + RIGHT_BOTTOM_MARGIN
    [all...]
findnearmv.c 40 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.as_int
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
findnearmv.h 15 #include "mv.h"
37 static void vp8_clamp_mv2(int_mv *mv, const MACROBLOCKD *xd)
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->as_mv.row = xd->mb_to_bottom_edge + RIGHT_BOTTOM_MARGIN
    [all...]
findnearmv.c 40 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.as_int
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_inter_prediction.c 60 mv_t mv; member in struct:__anon38153
81 static void GetPredictionMv(mv_t *mv, interNeighbour_t *a, u32 refIndex);
237 h264bsdPredictSamples(data, pMb->mv, &refImage,
246 h264bsdPredictSamples(data, pMb->mv, &refImage,
251 h264bsdPredictSamples(data, pMb->mv+8, &refImage,
260 h264bsdPredictSamples(data, pMb->mv, &refImage,
264 h264bsdPredictSamples(data, pMb->mv+4, &refImage,
282 h264bsdPredictSamples(data, pMb->mv+4*i, &refImage,
288 h264bsdPredictSamples(data, pMb->mv+4*i, &refImage,
291 h264bsdPredictSamples(data, pMb->mv+4*i+2, &refImage
498 mv_t mv; local
582 mv_t mv; local
689 mv_t mv; local
837 mv_t mv, mvPred; local
    [all...]
  /frameworks/rs/api/
generate.sh 21 mv Test*.java ../../../cts/tests/tests/renderscript/src/android/renderscript/cts/
22 mv Test*.rs ../../../cts/tests/tests/renderscript/src/android/renderscript/cts/
23 mv rs_core_math.rsh ../scriptc/
  /external/valgrind/main/auxprogs/
change-copyright-year 22 mv tmp.$$ $i
27 mv tmp.$$ $i
  /docs/source.android.com/scripts/
cleanup.sh 8 mv $img useless/
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
InsnNode.java 72 * @param mv a method visitor.
74 public void accept(final MethodVisitor mv) {
75 mv.visitInsn(opcode);
IntInsnNode.java 74 public void accept(final MethodVisitor mv) {
75 mv.visitIntInsn(opcode, operand);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/reflect/
ClassLoaderLocalMap.java 157 MethodVisitor mv; local
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.visitEnd()
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_mbgraph.h 22 int_mv mv; member in union:__anon16806::__anon16807::__anon16808
  /external/libvpx/libvpx/vp9/encoder/
vp9_mbgraph.h 22 int_mv mv; member in union:__anon28748::__anon28749::__anon28750
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_mbgraph.h 22 int_mv mv; member in union:__anon39836::__anon39837::__anon39838
  /external/chromium_org/native_client_sdk/src/build_tools/
naclsdk 15 mv "${SDK_TOOLS_UPDATE}" "${SDK_TOOLS}"

Completed in 1106 milliseconds

1 2 3 4 5 6 7 8 91011>>