/frameworks/base/core/jni/android/opengl/ |
D | poly_clip.cpp | 61 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/ |
D | Composers.cpp | 56 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/ |
D | Program.cpp | 246 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/ |
D | GsmSmsDispatcherTest.java | 187 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/ |
D | MediaSession.java | 1569 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/ |
D | rsProgram.cpp | 212 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()
|
D | rsg.spec | 23 param RsProgram vp
|
D | rsApiStubs.cpp | 848 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()
|
D | rsApiStubs.h | 144 extern "C" void rsProgramBindConstants (RsContext rsc, RsProgram vp, uint32_t slot, RsAllocation co…
|
/frameworks/native/opengl/libagl/ |
D | array.cpp | 955 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/ |
D | rsDispatch.h | 112 typedef void (*ProgramBindConstantsFnPtr) (RsContext rsc, RsProgram vp, uint32_t slot, RsAllocation…
|
/frameworks/base/core/java/android/view/ |
D | View.java | 24365 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/ |
D | Threads.cpp | 4845 VolumeProvider *vp = track; in prepareTracks_l() local 4847 fastTrack->mVolumeProvider = vp; in prepareTracks_l()
|