Searched refs:mY (Results 1 – 7 of 7) sorted by relevance
/cts/suite/cts/deviceTests/opengl/jni/graphics/ |
D | Vector2D.cpp | 19 mX(0), mY(0) { in Vector2D() 23 mX(x), mY(y) { in Vector2D() 27 Vector2D v(mX, mY); in copy() 33 mY += v.mY; in add() 38 mY -= v.mY; in sub() 43 mY *= s; in scale() 48 float dy = mY - v.mY; in distance() 67 return (float) sqrt(mX * mX + mY * mY); in magnitude()
|
D | Vector2D.h | 31 float mY; variable
|
/cts/apps/CtsVerifier/include/colorchecker/ |
D | vec2.h | 28 mY = inputY; in Vec2() 34 Vec2<T> temp(mX + param.x(), mY + param.y()); 39 Vec2<T> temp(mX - param.x(), mY - param.y()); 46 static_cast<float>(mY) / static_cast<float>(param)); 54 (static_cast<float>(mY) - static_cast<float>(param.y())) * in squareDistance() 55 (static_cast<float>(mY) - static_cast<float>(param.y())); in squareDistance() 60 inline T y() const { return mY; } in y() 64 mY = inputY; in set() 69 T mY; variable
|
/cts/suite/cts/deviceTests/opengl/jni/reference/scene/flocking/ |
D | Boid.cpp | 23 mAcceleration.mY = 0; in flock() 91 if (mPosition.mY < -limitY) { in flock() 92 mPosition.mY = limitY; in flock() 93 } else if (mPosition.mY > limitY) { in flock() 94 mPosition.mY = -limitY; in flock()
|
D | FlockingScene.cpp | 161 float y = pos->mY / (LIMIT_Y * BOID_SCALE); in updateSceneGraphs() 166 transformMatrix->rotate(atan2(vel->mY, vel->mX) + M_PI, 0, 0, 1); in updateSceneGraphs()
|
/cts/tests/tests/animation/src/android/animation/cts/ |
D | ShapeHolder.java | 29 private float mX = 0, mY = 0; field in ShapeHolder 53 mY = value; in setY() 57 return mY; in getY()
|
/cts/suite/cts/deviceTests/videoperf/src/com/android/cts/videoperf/ |
D | VideoEncoderDecoderTest.java | 1010 + expected.mY + "," + expected.mU + "," + expected.mV in runDecoder() 1012 + decoded.mY + "," + decoded.mU + "," + decoded.mV); in runDecoder() 1028 + expected.mY + "," + expected.mU + "," + expected.mV in runDecoder() 1030 + decoded.mY + "," + decoded.mU + "," + decoded.mV); in runDecoder() 1139 public byte mY; field in VideoEncoderDecoderTest.YUVValue 1146 return (mY == other.mY) && (mU == other.mU) && (mV == other.mV); in equalTo() 1150 double yDelta = mY - other.mY; in calcErrorSquared() 1165 result.mY = mYBuffer.get((originY + y) * mBufferWidth + (originX + x)); in getPixelValuesFromYUVBuffers() 1186 result.mY = buffer.get(y * mVideoWidth + x); in getPixelValuesFromOutputBuffer() 1206 result.mY = getPixelFromPlane(planes[0], x, y); in getPixelValuesFromImage()
|