Searched defs:vt (Results 1 - 4 of 4) sorted by last modified time

/frameworks/rs/
H A Drsg_generator.c24 void printVarType(FILE *f, const VarType *vt) { argument
26 if (vt->isConst) {
30 switch (vt->type) {
35 fprintf(f, "int%i_t", vt->bits);
38 fprintf(f, "uint%i_t", vt->bits);
41 if (vt->bits == 32)
47 fprintf(f, "%s", vt->typeName);
51 if (vt->ptrLevel) {
53 for (ct=0; ct < vt->ptrLevel; ct++) {
59 void printVarTypeAndName(FILE *f, const VarType *vt) { argument
168 const VarType *vt = &api->params[ct]; local
222 const VarType *vt = &api->params[ct2]; local
236 const VarType *vt = &api->params[ct2]; local
256 const VarType *vt = &api->params[ct2]; local
273 const VarType *vt = &api->params[ct2]; local
294 const VarType *vt = &api->params[ct2]; local
347 const VarType *vt = &api->params[ct2]; local
355 const VarType *vt = &api->params[ct2]; local
363 const VarType *vt = &api->params[ct2]; local
373 const VarType *vt = &api->params[ct2]; local
381 const VarType *vt = &api->params[ct2]; local
436 const VarType *vt = &api->params[ct2]; local
488 const VarType *vt = &api->params[ct2]; local
527 const VarType *vt = &api->params[ct2]; local
535 const VarType *vt = &api->params[ct2]; local
549 const VarType *vt = &api->params[ct2]; local
572 const VarType *vt = &api->params[ct2]; local
581 const VarType *vt = &api->params[ct2]; local
588 const VarType *vt = &api->params[ct2]; local
604 const VarType *vt = &api->params[ct2]; local
610 const VarType *vt = &api->params[ct2]; local
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DSwipeHelper.java122 private float getVelocity(VelocityTracker vt) { argument
123 return mSwipeDirection == X ? vt.getXVelocity() :
124 vt.getYVelocity();
133 private float getPerpendicularVelocity(VelocityTracker vt) { argument
134 return mSwipeDirection == X ? vt.getYVelocity() :
135 vt.getXVelocity();
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DSwipeHelper.java119 private float getVelocity(VelocityTracker vt) { argument
120 return mSwipeDirection == X ? vt.getXVelocity() :
121 vt.getYVelocity();
130 private float getPerpendicularVelocity(VelocityTracker vt) { argument
131 return mSwipeDirection == X ? vt.getYVelocity() :
132 vt.getXVelocity();
/frameworks/base/core/tests/coretests/src/android/view/
H A DVelocityTest.java37 VelocityTracker vt = VelocityTracker.obtain();
38 assertNotNull(vt);
39 vt.recycle();
49 VelocityTracker vt = VelocityTracker.obtain();
50 drag(vt, 100, 200, 100, 200, 10, t, 300);
51 vt.computeCurrentVelocity(1);
52 assertFalse("Velocity should not be null", vt.getXVelocity() == 0.0f);
53 assertFalse("Velocity should not be null", vt.getYVelocity() == 0.0f);
54 vt.clear();
55 vt
232 drag(VelocityTracker vt, int startX, int endX, int startY, int endY, int steps, long startime, int duration) argument
241 drag(VelocityTracker vt, int startX, int endX, int startY, int endY, int steps, long startime, int duration, Interpolator interpolator) argument
257 addMotionEvent(VelocityTracker vt, int x, int y, long time, int action) argument
[all...]

Completed in 103 milliseconds