Searched defs:xy (Results 1 - 25 of 80) sorted by relevance

1234

/external/eigen/doc/snippets/
H A DLLT_solve.cpp6 Matrix<float,2,1> xy variable
8 cout << xy << endl;
/external/linux-tools-perf/util/
H A Dxyarray.c7 struct xyarray *xy = zalloc(sizeof(*xy) + xlen * row_size); local
9 if (xy != NULL) {
10 xy->entry_size = entry_size;
11 xy->row_size = row_size;
14 return xy;
17 void xyarray__delete(struct xyarray *xy) argument
19 free(xy);
H A Dxyarray.h13 void xyarray__delete(struct xyarray *xy);
15 static inline void *xyarray__entry(struct xyarray *xy, int x, int y) argument
17 return &xy->contents[x * xy->row_size + y * xy->entry_size];
/external/chromium_org/third_party/skia/src/core/
H A DSkBitmapProcState_filter.h28 int xy = x * y; local
31 int scale = 256 - 16*y - 16*x + xy;
35 scale = 16*x - xy;
39 scale = 16*y - xy;
43 lo += (a11 & mask) * xy;
44 hi += ((a11 >> 8) & mask) * xy;
58 int xy = x * y; local
61 int scale = 256 - 16*y - 16*x + xy;
65 scale = 16*x - xy;
69 scale = 16*y - xy;
[all...]
H A DSkBitmapProcState_procs.h28 int xy = x * y >> 3; local
29 return a00 * (32 - 2*y - 2*x + xy) +
30 a01 * (2*x - xy) +
31 a10 * (2*y - xy) +
32 a11 * xy;
56 int xy = x * y >> 4; local
57 uint32_t result = a00 * (16 - y - x + xy) +
58 a01 * (x - xy) +
59 a10 * (y - xy) +
60 a11 * xy;
71 int xy = x * y; local
[all...]
H A DSkBitmapProcState_matrix.h32 uint32_t xy[], int count, int x, int y);
34 uint32_t xy[], int count, int x, int y);
36 uint32_t* SK_RESTRICT xy,
39 uint32_t xy[], int count, int x, int y);
41 uint32_t xy[], int count, int x, int y);
43 uint32_t* SK_RESTRICT xy, int count,
47 uint32_t xy[], int count, int x, int y) {
62 *xy++ = TILEY_PROCF(SkFractionalIntToFixed(fx), maxY);
68 memset(xy, 0, count * sizeof(uint16_t));
76 decal_nofilter_scale(xy, SkFractionalIntToFixe
46 SCALE_NOFILTER_NAME(const SkBitmapProcState& s, uint32_t xy[], int count, int x, int y) argument
110 AFFINE_NOFILTER_NAME(const SkBitmapProcState& s, uint32_t xy[], int count, int x, int y) argument
137 PERSP_NOFILTER_NAME(const SkBitmapProcState& s, uint32_t* SK_RESTRICT xy, int count, int x, int y) argument
176 SCALE_FILTER_NAME(const SkBitmapProcState& s, uint32_t xy[], int count, int x, int y) argument
216 AFFINE_FILTER_NAME(const SkBitmapProcState& s, uint32_t xy[], int count, int x, int y) argument
246 PERSP_FILTER_NAME(const SkBitmapProcState& s, uint32_t* SK_RESTRICT xy, int count, int x, int y) argument
[all...]
H A DSkBitmapProcState_matrixProcs.cpp256 static int nofilter_trans_preamble(const SkBitmapProcState& s, uint32_t** xy, argument
261 **xy = s.fIntTileProcY(SkScalarToFixed(pt.fY) >> 16,
263 *xy += 1; // bump the ptr
269 uint32_t xy[], int count, int x, int y) {
272 int xpos = nofilter_trans_preamble(s, &xy, x, y);
276 memset(xy, 0, count * sizeof(uint16_t));
280 uint16_t* xptr = reinterpret_cast<uint16_t*>(xy);
317 uint32_t xy[], int count, int x, int y) {
320 int xpos = nofilter_trans_preamble(s, &xy, x, y);
324 memset(xy,
268 clampx_nofilter_trans(const SkBitmapProcState& s, uint32_t xy[], int count, int x, int y) argument
316 repeatx_nofilter_trans(const SkBitmapProcState& s, uint32_t xy[], int count, int x, int y) argument
356 mirrorx_nofilter_trans(const SkBitmapProcState& s, uint32_t xy[], int count, int x, int y) argument
[all...]
/external/chromium_org/third_party/skia/src/gpu/
H A DGrPathUtils.h88 const GrPoint* xy = reinterpret_cast<const GrPoint*>(xyPtr); local
90 uv->fX = sx * xy->fX + kx * xy->fY + tx;
91 uv->fY = ky * xy->fX + sy * xy->fY + ty;
/external/chromium_org/third_party/skia/src/opts/
H A DSkBitmapProcState_opts_arm.cpp21 const uint32_t* SK_RESTRICT xy,
26 const uint32_t* SK_RESTRICT xy,
37 SkASSERT((unsigned)xy[0] < (unsigned)s.fBitmap->height());
39 xy[0] * s.fBitmap->rowBytes());
50 const uint16_t* SK_RESTRICT xx = (const uint16_t*)(xy + 1);
112 const uint32_t* SK_RESTRICT xy,
117 const uint32_t* SK_RESTRICT xy,
128 SkASSERT((unsigned)xy[0] < (unsigned)s.fBitmap->height());
129 srcAddr = (const uint8_t*)((const char*)srcAddr + xy[0] * s.fBitmap->rowBytes());
136 const uint16_t* xx = (const uint16_t*)(xy
25 SI8_D16_nofilter_DX_arm(const SkBitmapProcState& s, const uint32_t* SK_RESTRICT xy, int count, uint16_t* SK_RESTRICT colors) argument
116 SI8_opaque_D32_nofilter_DX_arm(const SkBitmapProcState& s, const uint32_t* SK_RESTRICT xy, int count, SkPMColor* SK_RESTRICT colors) argument
[all...]
/external/chromium_org/third_party/skia/src/pathops/
H A DSkDQuadImplicit.h20 double xy() const { return fP[kXy_Coeff]; } function in class:SkDQuadImplicit
/external/skia/src/core/
H A DSkBitmapProcState_filter.h28 int xy = x * y; local
31 int scale = 256 - 16*y - 16*x + xy;
35 scale = 16*x - xy;
39 scale = 16*y - xy;
43 lo += (a11 & mask) * xy;
44 hi += ((a11 >> 8) & mask) * xy;
58 int xy = x * y; local
61 int scale = 256 - 16*y - 16*x + xy;
65 scale = 16*x - xy;
69 scale = 16*y - xy;
[all...]
H A DSkBitmapProcState_procs.h28 int xy = x * y >> 3; local
29 return a00 * (32 - 2*y - 2*x + xy) +
30 a01 * (2*x - xy) +
31 a10 * (2*y - xy) +
32 a11 * xy;
56 int xy = x * y >> 4; local
57 uint32_t result = a00 * (16 - y - x + xy) +
58 a01 * (x - xy) +
59 a10 * (y - xy) +
60 a11 * xy;
71 int xy = x * y; local
[all...]
/external/skia/src/gpu/
H A DGrPathUtils.h88 const GrPoint* xy = reinterpret_cast<const GrPoint*>(xyPtr); local
90 uv->fX = sx * xy->fX + kx * xy->fY + tx;
91 uv->fY = ky * xy->fX + sy * xy->fY + ty;
/external/skia/src/opts/
H A DSkBitmapProcState_opts_arm.cpp21 const uint32_t* SK_RESTRICT xy,
26 const uint32_t* SK_RESTRICT xy,
37 SkASSERT((unsigned)xy[0] < (unsigned)s.fBitmap->height());
39 xy[0] * s.fBitmap->rowBytes());
50 const uint16_t* SK_RESTRICT xx = (const uint16_t*)(xy + 1);
112 const uint32_t* SK_RESTRICT xy,
117 const uint32_t* SK_RESTRICT xy,
128 SkASSERT((unsigned)xy[0] < (unsigned)s.fBitmap->height());
129 srcAddr = (const uint8_t*)((const char*)srcAddr + xy[0] * s.fBitmap->rowBytes());
136 const uint16_t* xx = (const uint16_t*)(xy
25 SI8_D16_nofilter_DX_arm(const SkBitmapProcState& s, const uint32_t* SK_RESTRICT xy, int count, uint16_t* SK_RESTRICT colors) argument
116 SI8_opaque_D32_nofilter_DX_arm(const SkBitmapProcState& s, const uint32_t* SK_RESTRICT xy, int count, SkPMColor* SK_RESTRICT colors) argument
[all...]
/external/skia/src/pathops/
H A DSkDQuadImplicit.h20 double xy() const { return fP[kXy_Coeff]; } function in class:SkDQuadImplicit
/external/skia/tests/
H A DPathOpsQuadParameterizationTest.cpp14 double xy = q.xy() * point.fX * point.fY; local
19 double sum = xx + xy + yy + x + y + c;
H A DPathOpsQuadLineIntersectionThreadedTest.cpp92 SkDPoint xy = quad.ptAtT(tIndex / 4.0); local
98 double x = xy.fX;
99 double y = xy.fY;
/external/chromium_org/third_party/freetype/src/cff/
H A Dcffobjs.h106 FT_Fixed xx, xy; /* transformation matrix coefficients */ member in struct:CFF_Transform_
/external/freetype/src/cff/
H A Dcffobjs.h106 FT_Fixed xx, xy; /* transformation matrix coefficients */ member in struct:CFF_Transform_
/external/opencv/cv/src/
H A Dcvlinefit.cpp48 double x = 0, y = 0, x2 = 0, y2 = 0, xy = 0, w = 0; local
64 xy += points[i].x * points[i].y;
76 xy += weights[i] * points[i].x * points[i].y;
85 xy /= w;
89 dxy = xy - x * y;
107 float x2 = 0, y2 = 0, z2 = 0, xy = 0, yz = 0, xz = 0; local
127 xy += x * y * w;
147 xy += x * y;
160 xy /= w0;
171 dxy = xy
[all...]
/external/speex/libspeex/
H A Dfilters_bfin.h89 spx_word32_t *xy; local
95 xy = xy2+1;
113 "P2 = %0;\n\t" /* Fused xy */
183 "R5 = [I2--];\n\t" /* load xy */
221 : : "m" (xy), "m" (_x), "m" (_y), "m" (numden), "m" (N), "m" (ord), "m" (mem)
/external/chromium_org/third_party/angle/samples/gles2_book/Common/
H A DesTransform.c64 GLfloat xx, yy, zz, xy, yz, zx, xs, ys, zs; local
75 xy = x * y;
84 rotMat.m[0][1] = (oneMinusCos * xy) - zs;
88 rotMat.m[1][0] = (oneMinusCos * xy) + zs;
/external/chromium_org/third_party/freetype/include/freetype/
H A Dfttypes.h368 /* x' = x*xx + y*xy */
375 /* xy :: Matrix coefficient. */
383 FT_Fixed xx, xy; member in struct:FT_Matrix_
/external/chromium_org/third_party/freetype/src/base/
H A Dftcalc.c721 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
775 FT_Fixed xx, xy, yx, yy; local
[all...]
/external/chromium_org/third_party/opus/src/celt/
H A Dvq.c167 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]));

Completed in 2476 milliseconds

1234