HomeSort by relevance Sort by last modified time
    Searched defs:xy (Results 26 - 50 of 106) sorted by null

12 3 4 5

  /external/webrtc/src/modules/audio_processing/aec/
aec_resampler.c 177 float xy = 0; local
216 xy += n * cumSum;
228 skew = (xy - xAvg*y) / denom;
  /frameworks/base/test-runner/src/android/test/
ViewAsserts.java 37 int[] xy = new int[2]; local
38 view.getLocationOnScreen(xy);
43 int y = xy[1] - xyRoot[1];
59 int[] xy = new int[2]; local
60 view.getLocationOnScreen(xy);
65 int y = xy[1] - xyRoot[1];
79 int[] xy = new int[2]; local
80 view.getLocationOnScreen(xy);
85 int y = xy[1] - xyRoot[1];
99 int[] xy = new int[2] local
117 int[] xy = new int[2]; local
135 int[] xy = new int[2]; local
154 int[] xy = new int[2]; local
172 int[] xy = new int[2]; local
191 int[] xy = new int[2]; local
209 int[] xy = new int[2]; local
228 int[] xy = new int[2]; local
246 int[] xy = new int[2]; local
265 int[] xy = new int[2]; local
283 int[] xy = new int[2]; local
304 int[] xy = new int[2]; local
    [all...]
  /frameworks/native/include/ui/
vec4.h 46 Impersonator< tvec2<T> > xy; member in union:android::tvec4::__anon30474
  /packages/apps/DeskClock/src/com/android/deskclock/widget/
ActionableToastBar.java 218 int[] xy = new int[2]; local
221 getLocationOnScreen(xy);
222 return (x > xy[0] && x < (xy[0] + getWidth()) && y > xy[1] && y < xy[1] + getHeight());
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
MotionEventHelper.java 63 float[] xy = new float[pointerCoords.length * 2]; local
65 xy[2 * i] = pointerCoords[i].x;
66 xy[2 * i + 1] = pointerCoords[i].y;
68 m.mapPoints(xy);
70 pointerCoords[i].x = xy[2 * i];
71 pointerCoords[i].y = xy[2 * i + 1];
  /packages/apps/InCallUI/src/com/android/incallui/
AccelerometerListener.java 122 // magnitude of the acceleration vector projected onto XY plane
123 final double xy = Math.sqrt(x*x + y*y); local
125 double angle = Math.atan2(xy, z);
  /packages/services/Telephony/src/com/android/phone/
AccelerometerListener.java 122 // magnitude of the acceleration vector projected onto XY plane
123 double xy = Math.sqrt(x*x + y*y); local
125 double angle = Math.atan2(xy, z);
  /cts/suite/cts/deviceTests/opengl/jni/graphics/
Matrix.cpp 297 float xy = x * y; local
304 d[4] = xy * nc - zs;
306 d[1] = xy * nc + zs;
  /external/chromium_org/third_party/freetype/include/freetype/
fttypes.h 368 /* x' = x*xx + y*xy */
375 /* xy :: Matrix coefficient. */
383 FT_Fixed xx, xy; member in struct:FT_Matrix_
    [all...]
  /external/chromium_org/third_party/freetype/src/base/
ftcalc.c 721 FT_Fixed xx, xy, yx, yy; local
727 xx = FT_MulFix( a->xx, b->xx ) + FT_MulFix( a->xy, b->yx );
728 xy = FT_MulFix( a->xx, b->xy ) + FT_MulFix( a->xy, b->yy );
730 yy = FT_MulFix( a->yx, b->xy ) + FT_MulFix( a->yy, b->yy );
732 b->xx = xx; b->xy = xy;
750 FT_MulFix( matrix->xy, matrix->yx );
755 matrix->xy = - FT_DivFix( matrix->xy, delta )
775 FT_Fixed xx, xy, yx, yy; local
    [all...]
  /external/chromium_org/third_party/opus/src/celt/
vq.c 167 opus_val32 xy; local
194 xy = yy = 0;
231 xy = MAC16_16(xy, X[j],y[j]);
272 Rxy = EXTRACT16(SHR32(ADD32(xy, EXTEND32(X[j])),rshift));
291 xy = ADD32(xy, EXTEND32(X[best_id]));
  /external/chromium_org/third_party/skia/src/pathops/
SkDCubicLineIntersection.cpp 287 SkDPoint xy = fCubic.ptAtT(t); local
291 return (xy.fX - fLine[0].fX) / dx;
293 return (xy.fY - fLine[0].fY) / dy;
SkDQuadLineIntersection.cpp 304 SkDPoint xy = fQuad.ptAtT(t); local
308 return (xy.fX - fLine[0].fX) / dx;
310 return (xy.fY - fLine[0].fY) / dy;
  /external/clang/test/Analysis/
idempotent-operations.c 207 int xy, wrap, pred, a, b, c; local
209 xy = s->RDar8431728_E[n];
212 a = s->RDar8431728_B[xy - 1];
213 b = s->RDar8431728_B[xy - 1 - wrap];
214 c = s->RDar8431728_B[xy - wrap];
222 *RDar8431728_B_ptr = &s->RDar8431728_B[xy];
  /external/clang/test/SemaTemplate/
instantiate-expr-2.cpp 43 typedef N4::BinOpOverload<N1::X, N2::Y>::type XY;
44 XY *xy = a1; local
  /external/droiddriver/src/com/google/android/droiddriver/instrumentation/
ViewElement.java 181 int[] xy = new int[2]; local
182 view.getLocationOnScreen(xy);
183 rect.set(xy[0], xy[1], xy[0] + view.getWidth(), xy[1] + view.getHeight());
194 int[] xy = new int[2]; local
195 view.getLocationOnScreen(xy);
197 visibleBounds.offsetTo(xy[0], xy[1])
    [all...]
  /external/freetype/include/freetype/
fttypes.h 368 /* x' = x*xx + y*xy */
375 /* xy :: Matrix coefficient. */
383 FT_Fixed xx, xy; member in struct:FT_Matrix_
    [all...]
  /external/freetype/src/base/
ftcalc.c 721 FT_Fixed xx, xy, yx, yy; local
727 xx = FT_MulFix( a->xx, b->xx ) + FT_MulFix( a->xy, b->yx );
728 xy = FT_MulFix( a->xx, b->xy ) + FT_MulFix( a->xy, b->yy );
730 yy = FT_MulFix( a->yx, b->xy ) + FT_MulFix( a->yy, b->yy );
732 b->xx = xx; b->xy = xy;
750 FT_MulFix( matrix->xy, matrix->yx );
755 matrix->xy = - FT_DivFix( matrix->xy, delta )
775 FT_Fixed xx, xy, yx, yy; local
    [all...]
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/util/
Converter.java 153 float xy = oldQuaternion.getX() * ys; local
164 newMatrix.m01 = (xy - zw);
166 newMatrix.m10 = (xy + zw);
  /external/opencv/cv/src/
cvoptflowhs.cpp 48 float xy; member in struct:__anon23986
261 II[address].xy = GradX * GradY;
284 II[address].xy = GradX * GradY;
308 II[address].xy = GradX * GradY;
371 II[address].xy * averageY + II[address].xt) * II[address].alpha;
374 (II[address].xy * averageX +
398 II[address].xy * averageY + II[address].xt) * II[address].alpha;
401 (II[address].xy * averageX +
427 II[address].xy * averageY + II[address].xt) * II[address].alpha;
430 (II[address].xy * averageX
    [all...]
  /external/skia/src/pathops/
SkDCubicLineIntersection.cpp 287 SkDPoint xy = fCubic.ptAtT(t); local
291 return (xy.fX - fLine[0].fX) / dx;
293 return (xy.fY - fLine[0].fY) / dy;
SkDQuadLineIntersection.cpp 304 SkDPoint xy = fQuad.ptAtT(t); local
308 return (xy.fX - fLine[0].fX) / dx;
310 return (xy.fY - fLine[0].fY) / dy;
  /frameworks/base/core/tests/coretests/src/android/widget/scroll/
RequestRectangleVisibleTest.java 200 int[] xy = new int[2]; local
201 view.getLocationOnScreen(xy);
206 int bottom = xy[1] + view.getHeight();
211 assertTrue(xy[1] < bottomOfRoot);
221 int[] xy = new int[2]; local
222 view.getLocationOnScreen(xy);
227 int bottom = xy[1] + view.getHeight();
233 assertTrue(xy[1] < xyRoot[1]);
  /frameworks/base/graphics/java/android/renderscript/
Matrix3f.java 130 float xy = x * y; local
137 mMat[3] = xy*nc - zs;
139 mMat[1] = xy*nc + zs;
  /frameworks/base/libs/hwui/
Matrix.cpp 328 const float xy = x * y; local
336 data[kSkewX] = xy * nc - zs;
338 data[kSkewY] = xy * nc + zs;

Completed in 1232 milliseconds

12 3 4 5