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

/external/libvpx/vp8/common/
H A Dfindnearmv.h15 #include "mv.h"
42 static void vp8_clamp_mv(MV *mv, const MACROBLOCKD *xd) argument
44 if (mv->col < (xd->mb_to_left_edge - LEFT_TOP_MARGIN))
45 mv->col = xd->mb_to_left_edge - LEFT_TOP_MARGIN;
46 else if (mv->col > xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN)
47 mv->col = xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN;
49 if (mv->row < (xd->mb_to_top_edge - LEFT_TOP_MARGIN))
50 mv->row = xd->mb_to_top_edge - LEFT_TOP_MARGIN;
51 else if (mv->row > xd->mb_to_bottom_edge + RIGHT_BOTTOM_MARGIN)
52 mv
[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 Dblockd.h19 #include "mv.h"
147 } mv; member in struct:__anon8757
168 } mv; member in struct:__anon8760
H A Dpostproc.c862 MV *mv = &bmi->mv.as_mv; local
864 x1 = x0 + 8 + (mv->col >> 3);
865 y1 = y0 + 4 + (mv->row >> 3);
872 x1 = x0 + 8 + (mv->col >> 3);
873 y1 = y0 +12 + (mv->row >> 3);
883 MV *mv = &bmi->mv.as_mv; local
885 x1 = x0 + 4 + (mv->col >> 3);
886 y1 = y0 + 8 + (mv
904 MV *mv = &bmi->mv.as_mv; local
946 MV *mv = &bmi->mv.as_mv; local
962 MV *mv = &mi->mbmi.mv.as_mv; local
[all...]
/external/chromium/chrome/browser/extensions/
H A Dexternal_policy_extension_loader_unittest.cc112 MockExternalPolicyExtensionProviderVisitor mv; local
114 mv.Visit(&forced_extensions, &forced_extensions, empty);
142 MockExternalPolicyExtensionProviderVisitor mv; local
144 mv.Visit(&forced_extensions, &valid_extensions, empty);
/external/bison/djgpp/
H A Dconfig.bat185 if not errorlevel 1 mv -f %XSRC%/po/Makefile.in.in %XSRC%/po/Makefile.in-in
187 if errorlevel 1 mv -f %XSRC%/po/Makefile.in %XSRC%/po/Makefile.in-in
189 if errorlevel 1 mv -f %XSRC%/po/Makefile.inin %XSRC%/po/Makefile.in-in
191 if errorlevel 1 mv -f %XSRC%/po/Makefile.in_in %XSRC%/po/Makefile.in-in
193 if errorlevel 1 mv -f %XSRC%/po/Makefile_in.in %XSRC%/po/Makefile.in-in
195 if not errorlevel 1 mv -f %XSRC%/runtime-po/Makefile.in.in %XSRC%/runtime-po/Makefile.in-in
197 if errorlevel 1 mv -f %XSRC%/runtime-po/Makefile.in %XSRC%/runtime-po/Makefile.in-in
199 if errorlevel 1 mv -f %XSRC%/runtime-po/Makefile.inin %XSRC%/runtime-po/Makefile.in-in
201 if errorlevel 1 mv -f %XSRC%/runtime-po/Makefile.in_in %XSRC%/runtime-po/Makefile.in-in
203 if errorlevel 1 mv
304 :mv ./calcxx-parser.yy %XSRC%/examples/calcxx/calcxx-parser.yy label
310 :mv ./calcxx-scanner.ll %XSRC%/examples/calcxx/calcxx-scanner.ll label
[all...]
/external/libvpx/vp8/decoder/
H A Ddecodemv.c174 static void read_mv(vp8_reader *r, MV *mv, const MV_CONTEXT *mvc) argument
176 mv->row = (short)(read_mvcomponent(r, mvc) << 1);
177 mv->col = (short)(read_mvcomponent(r, ++mvc) << 1);
291 MV *const mv = & mbmi->mv.as_mv; local
352 MV *const mv = & bmi.mv.as_mv; local
358 mv_contz = vp8_mv_cont(&(vp8_left_bmi(mi, k)->mv.as_mv), &(vp8_above_bmi(mi, k, mis)->mv.as_mv));
363 read_mv(bc, mv, (cons
[all...]
H A Ddecodframe.c127 static void clamp_mv_to_umv_border(MV *mv, const MACROBLOCKD *xd) argument
138 if (mv->col < (xd->mb_to_left_edge - (19 << 3)))
139 mv->col = xd->mb_to_left_edge - (16 << 3);
140 else if (mv->col > xd->mb_to_right_edge + (18 << 3))
141 mv->col = xd->mb_to_right_edge + (16 << 3);
143 if (mv->row < (xd->mb_to_top_edge - (19 << 3)))
144 mv->row = xd->mb_to_top_edge - (16 << 3);
145 else if (mv->row > xd->mb_to_bottom_edge + (18 << 3))
146 mv->row = xd->mb_to_bottom_edge + (16 << 3);
150 static void clamp_uvmv_to_umv_border(MV *mv, cons argument
[all...]
/external/libvpx/vp8/encoder/
H A Dblock.h24 MV mv; member in struct:__anon8811
H A Dencodemv.c68 void vp8_encode_motion_vector(vp8_writer *w, const MV *mv, const MV_CONTEXT *mvc) argument
73 if (abs(mv->row >> 1) > max_mv_r)
76 max_mv_r = abs(mv->row >> 1);
77 fprintf(f, "New Mv Row Max %6d\n", (mv->row >> 1));
79 if ((abs(mv->row) / 2) != max_mv_r)
80 fprintf(f, "MV Row conversion error %6d\n", abs(mv->row) / 2);
85 if (abs(mv->col >> 1) > max_mv_c)
88 fprintf(f, "New Mv Col Max %6d\n", (mv->col >> 1));
89 max_mv_c = abs(mv->col >> 1);
95 encode_mvcomponent(w, mv
[all...]
H A Dbitstream.c802 vp8_writer *w, const MV *mv, const MV *ref, const MV_CONTEXT *mvc
806 e.row = mv->row - ref->row;
807 e.col = mv->col - ref->col;
1000 write_mv(w, &mi->mv.as_mv, &best_mv, mvc);
1025 (&(vp8_left_bmi(m, k)->mv.as_mv),
1026 &(vp8_above_bmi(m, k, mis)->mv.as_mv));
1034 write_mv(w, &b->mv.as_mv, &best_mv, (const MV_CONTEXT *) mvc);
800 write_mv( vp8_writer *w, const MV *mv, const MV *ref, const MV_CONTEXT *mvc ) argument
H A Dmcomp.c37 int vp8_mv_bit_cost(MV *mv, MV *ref, int *mvcost[2], int Weight) argument
43 return ((mvcost[0][(mv->row - ref->row) >> 1] + mvcost[1][(mv->col - ref->col) >> 1]) * Weight) >> 7;
46 static int mv_err_cost(MV *mv, MV *ref, int *mvcost[2], int error_per_bit) argument
49 //return ((mvcost[0][(mv->row - ref->row)>>1] + mvcost[1][(mv->col - ref->col)>>1] + 128) * error_per_bit) >> 8;
50 //return ( (vp8_mv_bit_cost(mv, ref, mvcost, 100) + 128) * error_per_bit) >> 8;
52 //i = (vp8_mv_bit_cost(mv, ref, mvcost, 100) * error_per_bit + 128) >> 8;
53 return ((mvcost[0][(mv->row - ref->row) >> 1] + mvcost[1][(mv
58 mv_bits(MV *mv, MV *ref, int *mvcost[2]) argument
[all...]
H A Drdopt.c459 mv_row = x->e_mbd.block[16].bmi.mv.as_mv.row;
460 mv_col = x->e_mbd.block[16].bmi.mv.as_mv.col;
862 void vp8_set_mbmode_and_mvs(MACROBLOCK *x, MB_PREDICTION_MODE mb, MV *mv) argument
867 x->e_mbd.mode_info_context->mbmi.mv.as_mv.row = mv->row;
868 x->e_mbd.mode_info_context->mbmi.mv.as_mv.col = mv->col;
874 bmi->mv.as_mv.row = mv->row;
875 bmi->mv
939 const MV mv = col ? d[-1].bmi.mv.as_mv : vp8_left_bmi(mic, i)->mv.as_mv; local
1538 int_mv mv; local
[all...]
/external/chromium/chrome/browser/history/
H A Dtop_sites_unittest.cc389 MostVisitedURL mv; local
390 mv.url = url;
391 mv.redirects.push_back(url);
392 list->push_back(mv);
400 MostVisitedURL mv; local
401 mv.url = redirect_dest;
402 mv.redirects.push_back(redirect_source);
403 mv.redirects.push_back(redirect_dest);
404 list->push_back(mv);
484 MostVisitedURL mv; local
1109 MostVisitedURL mv; local
[all...]
H A Dtop_sites.cc837 const MostVisitedURL& mv = top_sites[i]; local
838 GURL canonical_url = cache_->GetCanonicalURL(mv.url);
844 SetPageThumbnailEncoded(mv.url,
H A Dhistory_backend.cc95 MostVisitedURL mv; local
96 mv.url = page_data.GetURL();
97 mv.title = page_data.GetTitle();
100 mv.redirects.push_back(mv.url);
102 mv.redirects = redirects;
103 if (mv.redirects[mv.redirects.size() - 1] != mv.url) {
105 mv
[all...]
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
H A DSFTPv3Client.java982 public void mv(String oldPath, String newPath) throws IOException method in class:SFTPv3Client
/external/skia/tests/
H A DPathTest.cpp166 SkPoint mv; local
171 mv.set(0, 0);
175 mv = pts[0];
179 REPORTER_ASSERT(reporter, mv == pts[0]);
/external/quake/quake/src/WinQuake/
H A Dgl_rmain.cpp1222 float mv[16]; local
1223 setIdentityM(mv, 0);
1225 rotateM(mv, -90, 1, 0, 0); // put Z going up
1226 rotateM(mv, 90, 0, 0, 1); // put Z going up
1227 rotateM(mv, -r_refdef.viewangles[2], 1, 0, 0);
1228 rotateM(mv, -r_refdef.viewangles[0], 0, 1, 0);
1229 rotateM(mv, -r_refdef.viewangles[1], 0, 0, 1);
1230 translateM(mv, 0, -r_refdef.vieworg[0], -r_refdef.vieworg[1], -r_refdef.vieworg[2]);
1232 glLoadMatrixf(mv);
1234 memcpy(r_world_matrix, mv, sizeo
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.objectweb.asm_3.2.0.v200909071300.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.pde.api.tools_1.0.202.v20100820_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi_3.6.1.R36x_v20100806.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi_3.6.2.R36x_v20101103.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/dexmaker/lib/
H A Djarjar.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/tonicsystems/ com/tonicsystems/jarjar/ com/tonicsystems/jarjar/AbstractDepHandler ...

Completed in 369 milliseconds