/development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/ |
D | GLFace.java | 31 public GLFace(GLVertex v1, GLVertex v2, GLVertex v3) { in GLFace() argument 33 addVertex(v2); in GLFace() 37 public GLFace(GLVertex v1, GLVertex v2, GLVertex v3, GLVertex v4) { in GLFace() argument 39 addVertex(v2); in GLFace()
|
/development/ndk/sources/android/ndk_helper/ |
D | tapCamera.cpp | 200 void TapCamera::BeginPinch( const Vec2& v1, const Vec2& v2 ) in BeginPinch() argument 210 vec_pinch_start_center_ = (v1 + v2) / 2.f; in BeginPinch() 212 Vec2 vec = v1 - v2; in BeginPinch() 242 void TapCamera::Pinch( const Vec2& v1, const Vec2& v2 ) in Pinch() argument 251 Vec2 vec = v1 - v2; in Pinch() 264 vec = (v1 + v2) / 2.f - vec_pinch_start_center_; in Pinch()
|
D | tapCamera.h | 93 void BeginPinch( const Vec2& v1, const Vec2& v2 ); 95 void Pinch( const Vec2& v1, const Vec2& v2 );
|
D | gestureDetector.h | 140 bool GetPointers( Vec2& v1, Vec2& v2 );
|
D | gestureDetector.cpp | 225 bool PinchDetector::GetPointers( Vec2& v1, Vec2& v2 ) in GetPointers() argument 245 v2 = Vec2( x2, y2 ); in GetPointers()
|
D | gl3stub.h | 442 …ern GL_APICALL void (* GL_APIENTRY glUniform3ui) (GLint location, GLuint v0, GLuint v1, GLuint v2); 443 …ALL void (* GL_APIENTRY glUniform4ui) (GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3);
|
D | gl3stub.c | 356 GLuint v2 ); 360 GLuint v2,
|
/development/ndk/platforms/android-17/samples/Teapot/jni/ |
D | TeapotNativeActivity.cpp | 256 ndk_helper::Vec2 v2; in HandleInput() local 257 eng->pinch_detector_.GetPointers( v1, v2 ); in HandleInput() 259 eng->TransformPosition( v2 ); in HandleInput() 260 eng->tap_camera_.BeginPinch( v1, v2 ); in HandleInput() 267 ndk_helper::Vec2 v2; in HandleInput() local 268 eng->pinch_detector_.GetPointers( v1, v2 ); in HandleInput() 270 eng->TransformPosition( v2 ); in HandleInput() 271 eng->tap_camera_.Pinch( v1, v2 ); in HandleInput()
|
/development/ndk/platforms/android-18/samples/MoreTeapots/jni/ |
D | MoreTeapotsNativeActivity.cpp | 267 ndk_helper::Vec2 v2; in HandleInput() local 268 eng->pinch_detector_.GetPointers( v1, v2 ); in HandleInput() 270 eng->TransformPosition( v2 ); in HandleInput() 271 eng->tap_camera_.BeginPinch( v1, v2 ); in HandleInput() 278 ndk_helper::Vec2 v2; in HandleInput() local 279 eng->pinch_detector_.GetPointers( v1, v2 ); in HandleInput() 281 eng->TransformPosition( v2 ); in HandleInput() 282 eng->tap_camera_.Pinch( v1, v2 ); in HandleInput()
|
/development/ndk/platforms/android-4/samples/san-angeles/jni/ |
D | demo.c | 169 static void vector3Sub(VECTOR3 *dest, VECTOR3 *v1, VECTOR3 *v2) in vector3Sub() argument 171 dest->x = v1->x - v2->x; in vector3Sub() 172 dest->y = v1->y - v2->y; in vector3Sub() 173 dest->z = v1->z - v2->z; in vector3Sub() 244 VECTOR3 v1, v2, n; in createSuperShape() local 259 vector3Sub(&v2, &pd, &pa); in createSuperShape() 267 n.x = v1.y * v2.z - v1.z * v2.y; in createSuperShape() 268 n.y = v1.z * v2.x - v1.x * v2.z; in createSuperShape() 269 n.z = v1.x * v2.y - v1.y * v2.x; in createSuperShape()
|
/development/samples/devbytes/animation/CardFlip/src/com/example/android/cardflip/ |
D | CardFlip.java | 147 float v2) { 152 rotateCardView(cardStack.get(size - 1), stack, v, v2);
|
/development/cmds/monkey/src/com/android/commands/monkey/ |
D | MonkeySourceRandom.java | 287 PointF v2 = randomVector(random); in generatePointerEvent() local 299 randomWalk(random, display, p2, v2); in generatePointerEvent() 308 randomWalk(random, display, p2, v2); in generatePointerEvent()
|
/development/perftests/panorama/feature_stab/db_vlvm/ |
D | db_feature_detection.cpp | 1076 inline void db_MaxVector_128_Aligned16_f(float *m,float *v1,float *v2) in db_MaxVector_128_Aligned16_f() argument 1082 mov ebx,v2 in db_MaxVector_128_Aligned16_f() 1195 b=v2[i]; in db_MaxVector_128_Aligned16_f() 1202 inline void db_MaxVector_128_SecondSourceDestAligned16_f(float *m,float *v1,float *v2) in db_MaxVector_128_SecondSourceDestAligned16_f() argument 1208 mov ebx,v2 in db_MaxVector_128_SecondSourceDestAligned16_f() 1321 b=v2[i]; in db_MaxVector_128_SecondSourceDestAligned16_f()
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/ |
D | LabelMaker.java | 235 int v2 = v + height; in add() local
|
/development/ndk/platforms/android-18/samples/gles3jni/jni/ |
D | gl3stub.c | 290 …CALL void (* GL_APIENTRY glUniform3ui) (GLint location, GLuint v0, GLuint v1, GLuint v2); 291 … (* GL_APIENTRY glUniform4ui) (GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3);
|
D | gl3stub.h | 432 …CALL void (* GL_APIENTRY glUniform3ui) (GLint location, GLuint v0, GLuint v1, GLuint v2); 433 … (* GL_APIENTRY glUniform4ui) (GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3);
|
/development/ndk/platforms/android-18/include/GLES3/ |
D | gl3.h | 1002 GL_APICALL void GL_APIENTRY glUniform3ui (GLint location, GLuint v0, GLuint v1, GLuint v2… 1003 GL_APICALL void GL_APIENTRY glUniform4ui (GLint location, GLuint v0, GLuint v1, GLuint v2…
|