Home
last modified time | relevance | path

Searched refs:vp (Results 1 – 11 of 11) sorted by relevance

/frameworks/base/core/jni/android/opengl/
Dpoly_clip.cpp62 float *up, *vp, *wp; in poly_clip_to_halfspace() local
81 vp = (float *)v; in poly_clip_to_halfspace()
83 for(int i = 0; i < 4; i++, wp++, up++, vp++) { in poly_clip_to_halfspace()
84 *wp = *up+t*(*vp-*up); in poly_clip_to_halfspace()
/frameworks/native/cmds/flatland/
DComposers.cpp56 GLint vp[4]; in modBlit() local
57 glGetIntegerv(GL_VIEWPORT, vp); in modBlit()
59 2.0f/float(vp[2]), 0.0f, 0.0f, 0.0f, in modBlit()
60 0.0f, -2.0f/float(vp[3]), 0.0f, 0.0f, in modBlit()
/frameworks/av/cmds/screenrecord/
DProgram.cpp246 GLint vp[4]; in beforeDraw() local
247 glGetIntegerv(GL_VIEWPORT, vp); in beforeDraw()
249 2.0f/float(vp[2]), 0.0f, 0.0f, 0.0f, in beforeDraw()
250 0.0f, -2.0f/float(vp[3]), 0.0f, 0.0f, in beforeDraw()
/frameworks/base/media/java/android/media/session/
DMediaSession.java1185 VolumeProvider vp; in handleMessage() local
1235 vp = mVolumeProvider; in handleMessage()
1237 if (vp != null) { in handleMessage()
1238 vp.onAdjustVolume((int) msg.obj); in handleMessage()
1243 vp = mVolumeProvider; in handleMessage()
1245 if (vp != null) { in handleMessage()
1246 vp.onSetVolumeTo((int) msg.obj); in handleMessage()
/frameworks/rs/
DrsProgram.cpp215 void rsi_ProgramBindConstants(Context *rsc, RsProgram vp, uint32_t slot, RsAllocation constants) { in rsi_ProgramBindConstants() argument
216 Program *p = static_cast<Program *>(vp); in rsi_ProgramBindConstants()
Drsg.spec23 param RsProgram vp
/frameworks/support/v4/java/android/support/v4/media/session/
DMediaSessionCompat.java1542 VolumeProviderCompat vp = mVolumeProvider; in getVolumeAttributes() local
1544 controlType = vp.getVolumeControl(); in getVolumeAttributes()
1545 max = vp.getMaxVolume(); in getVolumeAttributes()
1546 current = vp.getCurrentVolume(); in getVolumeAttributes()
/frameworks/native/opengl/libagl/
Darray.cpp957 const GLubyte* vp = c->arrays.vertex.element(first); in compileElement__generic() local
960 c->arrays.vertex.fetch(c, v->obj.v, vp); in compileElement__generic()
968 const GLubyte* vp = c->arrays.vertex.element( in compileElements__generic() local
977 c->arrays.vertex.fetch(c, v->obj.v, vp); in compileElements__generic()
980 vp += stride; in compileElements__generic()
/frameworks/base/core/java/android/view/
DView.java16896 final View vp = (View) parent;
16897 vp.transformMatrixToGlobal(m);
16898 m.preTranslate(-vp.mScrollX, -vp.mScrollY);
16922 final View vp = (View) parent;
16923 vp.transformMatrixToLocal(m);
16924 m.postTranslate(vp.mScrollX, vp.mScrollY);
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
DPagedView.java1996 ViewParent vp = v.getParent(); in getPageForView() local
1999 if (vp == getPageAt(i)) { in getPageForView()
/frameworks/av/services/audioflinger/
DThreads.cpp3338 VolumeProvider *vp = track; in prepareTracks_l() local
3340 fastTrack->mVolumeProvider = vp; in prepareTracks_l()