Searched refs:mv (Results 101 - 125 of 457) sorted by relevance

1234567891011>>

/external/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_vertex_buffers.c233 buffer->mv[i].resource = pipe_buffer_create
240 if (!buffer->mv[i].resource)
249 pipe_resource_reference(&buffer->mv[i].resource, NULL);
287 buf.buffer = buffer->mv[motionvector].resource;
311 buffer->mv[i].vertex_stream = pipe_buffer_map
314 buffer->mv[i].resource,
316 &buffer->mv[i].transfer
345 return buffer->mv[ref_frame].vertex_stream;
360 pipe_buffer_unmap(pipe, buffer->mv[i].transfer);
376 pipe_resource_reference(&buffer->mv[
[all...]
/external/libvpx/libvpx/vp9/common/
H A Dvp9_postproc.c750 MV *mv = &bmi->mv.as_mv;
752 x1 = x0 + 8 + (mv->col >> 3);
753 y1 = y0 + 4 + (mv->row >> 3);
760 x1 = x0 + 8 + (mv->col >> 3);
761 y1 = y0 + 12 + (mv->row >> 3);
770 MV *mv = &bmi->mv.as_mv;
772 x1 = x0 + 4 + (mv->col >> 3);
773 y1 = y0 + 8 + (mv
[all...]
H A Dvp9_scale.c44 MV32 vp9_scale_mv(const MV *mv, int x, int y, const struct scale_factors *sf) { argument
48 scaled_y(mv->row, sf) + y_off_q4,
49 scaled_x(mv->col, sf) + x_off_q4
H A Dvp9_scale.h37 MV32 vp9_scale_mv(const MV *mv, int x, int y, const struct scale_factors *sf);
H A Dvp9_debugmodes.c70 fprintf(mvs, "%4d:%4d ", mi_8x8[mi_index]->mbmi.mv[0].as_mv.row,
71 mi_8x8[mi_index]->mbmi.mv[0].as_mv.col);
/external/libhevc/decoder/
H A Dihevcd_mv_pred.c81 * Scales mv based on difference between current POC and current
84 * @param[inout] mv
142 * Scales mv based on difference between current POC and current
145 * @param[inout] mv
236 ps_nbr_pic_buf_lx = (pic_buf_t *)((ps_ref_pic_list[0][aps_nbr_pu[i]->mv.i1_l0_ref_idx].pv_pic_buf));
238 ps_nbr_pic_buf_lx->i4_abs_poc, ps_mv, &aps_nbr_pu[i]->mv.s_l0_mv);
242 ps_nbr_pic_buf_lx = (pic_buf_t *)((ps_ref_pic_list[1][aps_nbr_pu[i]->mv.i1_l1_ref_idx].pv_pic_buf));
244 ps_nbr_pic_buf_lx->i4_abs_poc, ps_mv, &aps_nbr_pu[i]->mv.s_l1_mv);
253 ps_nbr_pic_buf_lx = (pic_buf_t *)((ps_ref_pic_list[1][aps_nbr_pu[i]->mv.i1_l1_ref_idx].pv_pic_buf));
255 ps_nbr_pic_buf_lx->i4_abs_poc, ps_mv, &aps_nbr_pu[i]->mv
[all...]
H A Dihevcd_get_mv.c81 * MV's of a PU will be stored in PU structure. MV computation can be merge or mv pred
371 mvd_x = ps_pu->mv.s_l0_mv.i2_mvx;
372 mvd_y = ps_pu->mv.s_l0_mv.i2_mvy;
377 ps_pu->mv.s_l0_mv.i2_mvx = tmp_x;
381 ps_pu->mv.s_l0_mv.i2_mvy = tmp_y;
388 mvd_x = ps_pu->mv.s_l1_mv.i2_mvx;
389 mvd_y = ps_pu->mv.s_l1_mv.i2_mvy;
394 ps_pu->mv.s_l1_mv.i2_mvx = tmp_x;
398 ps_pu->mv.s_l1_mv.i2_mvy = tmp_y;
432 ps_pic_buf_l0 = (pic_buf_t *)((ps_slice_hdr->as_ref_pic_list0[ps_pu->mv
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_encodemv.c38 const int d = offset >> 3; // int mv data
39 const int fr = (offset >> 1) & 3; // fractional mv data
40 const int hp = offset & 1; // high precision mv data
108 d = (o >> 3); /* int mv data */
109 f = (o >> 1) & 3; /* fractional pel mv data */
110 e = (o & 1); /* high precision mv data */
167 nmv_context_counts *const counts = &cm->counts.mv;
203 const MV* mv, const MV* ref,
205 const MV diff = {mv->row - ref->row,
206 mv
202 vp9_encode_mv(VP9_COMP* cpi, vp9_writer* w, const MV* mv, const MV* ref, const nmv_context* mvctx, int usehp) argument
[all...]
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/libvpx/libvpx/vp9/encoder/
H A Dvp9_encodemv.c38 const int d = offset >> 3; // int mv data
39 const int fr = (offset >> 1) & 3; // fractional mv data
40 const int hp = offset & 1; // high precision mv data
108 d = (o >> 3); /* int mv data */
109 f = (o >> 1) & 3; /* fractional pel mv data */
110 e = (o & 1); /* high precision mv data */
167 nmv_context_counts *const counts = &cm->counts.mv;
203 const MV* mv, const MV* ref,
205 const MV diff = {mv->row - ref->row,
206 mv
202 vp9_encode_mv(VP9_COMP* cpi, vp9_writer* w, const MV* mv, const MV* ref, const nmv_context* mvctx, int usehp) argument
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
H A Dvp9_scale.c44 MV32 vp9_scale_mv(const MV *mv, int x, int y, const struct scale_factors *sf) { argument
48 scaled_y(mv->row, sf) + y_off_q4,
49 scaled_x(mv->col, sf) + x_off_q4
H A Dvp9_scale.h37 MV32 vp9_scale_mv(const MV *mv, int x, int y, const struct scale_factors *sf);
H A Dvp9_debugmodes.c69 fprintf(mvs, "%4d:%4d ", mi[mi_index]->mbmi.mv[0].as_mv.row,
70 mi[mi_index]->mbmi.mv[0].as_mv.col);
/external/mockito/cglib-and-asm/src/org/mockito/asm/
H A DClassReader.java774 MethodVisitor mv = classVisitor.visitMethod(access,
780 if (mv != null) {
792 if (WRITER && mv instanceof MethodWriter) {
793 MethodWriter mw = (MethodWriter) mv;
829 AnnotationVisitor dv = mv.visitAnnotationDefault();
845 mv.visitAnnotation(readUTF8(w, c), j != 0));
851 readParameterAnnotations(mpanns, desc, c, true, mv);
854 readParameterAnnotations(impanns, desc, c, false, mv);
859 mv.visitAttribute(cattrs);
864 if (mv !
1471 readParameterAnnotations( int v, final String desc, final char[] buf, final boolean visible, final MethodVisitor mv) argument
[all...]
/external/chromium_org/build/
H A Dbuild-ctags.sh39 mv -f .tmp_tags .tags
/external/chromium_org/third_party/libsrtp/srtp/doc/
H A DMakefile30 mv latex/index.tmp latex/index.tex
/external/chromium_org/third_party/zlib/contrib/minizip/
H A DMakefile21 mv readme.txt readme.old
/external/e2fsprogs/lib/et/
H A Dcompile_et.sh.in53 mv -f ${BASE}.h.$$ ${BASE}.h
60 mv -f ${BASE}.c.$$ ${BASE}.c
/external/libpcap/
H A Drunlex.sh148 mv "$outfile_base" "$outfile"
182 mv lex.yy.c "$outfile"
/external/srtp/doc/
H A DMakefile30 mv latex/index.tmp latex/index.tex
/external/zlib/src/contrib/minizip/
H A DMakefile21 mv readme.txt readme.old
/external/chromium_org/remoting/host/installer/linux/
H A Dbuild-deb.sh141 mv ../${PACKAGE}_*.deb "$OUTPUT_PATH"/
142 mv ../${PACKAGE}_*.changes "$OUTPUT_PATH"/
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Dblock.h31 MV mv; member in struct:__anon12102
63 int_mv mv; member in struct:__anon12103::__anon12104
/external/icu/icu4c/source/
H A Dconfigure.mk16 ( $(AUTOCONF) && mv configure configure.tmp && sed -e 's%^ac_cr=.*%ac_cr=`echo X |tr X "\\015"`%' < configure.tmp > configure && chmod a+rx $@ && rm configure.tmp ) || ( rm $@ ; "echo configure build failed" ; /usr/bin/false )
/external/libvpx/libvpx/vp8/encoder/
H A Dblock.h31 MV mv; member in struct:__anon24067
63 int_mv mv; member in struct:__anon24068::__anon24069

Completed in 545 milliseconds

1234567891011>>