Home
last modified time | relevance | path

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

/frameworks/base/core/jni/android/opengl/
Dpoly_clip.cpp61 float *up, *vp, *wp; in poly_clip_to_halfspace() local
80 vp = (float *)v; in poly_clip_to_halfspace()
82 for(int i = 0; i < 4; i++, wp++, up++, vp++) { in poly_clip_to_halfspace()
83 *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/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
DGsmSmsDispatcherTest.java187 int vp; in testSmsMessageValidityPeriod() local
188 vp = SmsMessage.getRelativeValidityPeriod(-5); in testSmsMessageValidityPeriod()
189 assertEquals(-1, vp); in testSmsMessageValidityPeriod()
191 vp = SmsMessage.getRelativeValidityPeriod(100); in testSmsMessageValidityPeriod()
192 assertEquals(100 / 5 - 1, vp); in testSmsMessageValidityPeriod()
/frameworks/base/media/java/android/media/session/
DMediaSession.java1569 VolumeProvider vp; in handleMessage() local
1639 vp = mVolumeProvider; in handleMessage()
1641 if (vp != null) { in handleMessage()
1642 vp.onAdjustVolume((int) obj); in handleMessage()
1647 vp = mVolumeProvider; in handleMessage()
1649 if (vp != null) { in handleMessage()
1650 vp.onSetVolumeTo((int) obj); in handleMessage()
/frameworks/rs/
DrsProgram.cpp212 void rsi_ProgramBindConstants(Context *rsc, RsProgram vp, uint32_t slot, RsAllocation constants) { in rsi_ProgramBindConstants() argument
213 Program *p = static_cast<Program *>(vp); in rsi_ProgramBindConstants()
Drsg.spec23 param RsProgram vp
DrsApiStubs.cpp848 extern "C" void rsProgramBindConstants (RsContext ctxWrapper, RsProgram vp, uint32_t slot, RsAlloca… in rsProgramBindConstants() argument
850 RS_DISPATCH(ctxWrapper, ProgramBindConstants, vp, slot, constants); in rsProgramBindConstants()
DrsApiStubs.h144 extern "C" void rsProgramBindConstants (RsContext rsc, RsProgram vp, uint32_t slot, RsAllocation co…
/frameworks/native/opengl/libagl/
Darray.cpp955 const GLubyte* vp = c->arrays.vertex.element(first); in compileElement__generic() local
958 c->arrays.vertex.fetch(c, v->obj.v, vp); in compileElement__generic()
966 const GLubyte* vp = c->arrays.vertex.element( in compileElements__generic() local
975 c->arrays.vertex.fetch(c, v->obj.v, vp); in compileElements__generic()
978 vp += stride; in compileElements__generic()
/frameworks/rs/cpp/
DrsDispatch.h112 typedef void (*ProgramBindConstantsFnPtr) (RsContext rsc, RsProgram vp, uint32_t slot, RsAllocation…
/frameworks/base/core/java/android/view/
DView.java24365 final View vp = (View) parent; in transformMatrixToGlobal() local
24366 vp.transformMatrixToGlobal(matrix); in transformMatrixToGlobal()
24367 matrix.preTranslate(-vp.mScrollX, -vp.mScrollY); in transformMatrixToGlobal()
24390 final View vp = (View) parent; in transformMatrixToLocal() local
24391 vp.transformMatrixToLocal(matrix); in transformMatrixToLocal()
24392 matrix.postTranslate(vp.mScrollX, vp.mScrollY); in transformMatrixToLocal()
/frameworks/av/services/audioflinger/
DThreads.cpp4845 VolumeProvider *vp = track; in prepareTracks_l() local
4847 fastTrack->mVolumeProvider = vp; in prepareTracks_l()