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

/frameworks/base/libs/rs/
H A DrsSimpleMesh.cpp145 void rsi_SimpleMeshBindVertex(Context *rsc, RsSimpleMesh mv, RsAllocation va, uint32_t slot) argument
147 SimpleMesh *sm = static_cast<SimpleMesh *>(mv);
153 void rsi_SimpleMeshBindIndex(Context *rsc, RsSimpleMesh mv, RsAllocation va) argument
155 SimpleMesh *sm = static_cast<SimpleMesh *>(mv);
159 void rsi_SimpleMeshBindPrimitive(Context *rsc, RsSimpleMesh mv, RsAllocation va) argument
161 SimpleMesh *sm = static_cast<SimpleMesh *>(mv);
/frameworks/base/media/libstagefright/codecs/avc/common/src/
H A Dmb_access.cpp192 int16 *mv, pmv_x, pmv_y; local
254 mv = (int16*)(currMB->mvL0 + (block_y << 2) + block_x_1);
255 pmv_A_x = *mv++;
256 pmv_A_y = *mv;
264 mv = (int16*)(MB_A->mvL0 + (block_y << 2) + 3);
265 pmv_A_x = *mv++;
266 pmv_A_y = *mv;
274 mv = (int16*)(currMB->mvL0 + (block_y_1 << 2) + block_x);
275 pmv_B_x = *mv++;
276 pmv_B_y = *mv;
[all...]
/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dvlc_decode.cpp452 PV_STATUS PV_VlcDecMV(BitstreamDecVideo *stream, int *mv) argument
461 *mv = 0; /* Vector difference = 0 */
470 *mv = PV_TMNMVtab0[code].val;
478 *mv = PV_TMNMVtab1[code].val;
484 *mv = -1;
492 *mv = PV_TMNMVtab2[code].val;
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DRenameClassAdapter.java284 public RenameMethodAdapter(MethodVisitor mv) { argument
285 super(mv);
H A DStubMethodAdapter.java51 public StubMethodAdapter(MethodVisitor mv, String methodName, Type returnType, argument
53 mParentVisitor = mv;
/frameworks/base/opengl/libagl/
H A Dlight.cpp530 transform_t& mv = c->transforms.modelview.transform; local
531 mv.point4(&mv, &light.position, reinterpret_cast<vec4_t const*>(params));
H A Dmatrix.cpp589 const GLfloat* const mv = modelview.top().elements(); local
590 invert(r, mv);
602 const GLfloat* const mv = modelview.top().elements(); local
615 invert(r, mv);
/frameworks/base/media/libstagefright/codecs/avc/dec/src/
H A Dpred_inter.cpp44 int16 *mv; local
94 mv = (int16*)(currMB->mvL0 + block_x + (block_y << 2));
97 x_pos = (offset_x << 2) + *mv++; /*quarter pel */
98 y_pos = (offset_y << 2) + *mv; /*quarter pel */

Completed in 213 milliseconds