HomeSort by relevance Sort by last modified time
    Searched defs:fy (Results 76 - 100 of 105) sorted by null

1 2 34 5

  /external/deqp/modules/gles3/functional/
es3fPrimitiveRestartTests.cpp 278 float fy = -1.0f + 2.0f * ((float)row + 0.5f) / (float)numRows; local
281 m_positions.push_back(fy);
314 float fy = centerY + 0.9f * deFloatSin((float)i*2.0f*DE_PI / (float)numVertices) / (float)numRows; local
317 m_positions.push_back(fy);
345 float fy = -0.9f + 1.8f * ((float)stripNdx + (i%2 == 0 ? 0.0f : 0.8f)) / numStrips; local
348 m_positions.push_back(fy);
386 float fy = centerY + 0.9f * deFloatSin((float)i*2.0f*DE_PI / (float)numArcVertices) / (float)numRows; local
389 m_positions.push_back(fy);
417 float fy = -0.9f + 1.8f * ((float)rowNdx + (i%3 == 0 ? 0.0f : 0.8f)) / numRows; local
420 m_positions.push_back(fy);
    [all...]
es3fInstancedRenderingTests.cpp 322 float fy = -1.0f + (float)y / (float)QUAD_GRID_SIZE * 2.0f; local
325 m_gridVertexPositions.push_back(fy);
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_setup_tri.c 157 const float fy = v1[0][1] - v2[0][1]; local
160 const float det = ex * fy - ey * fx;
  /external/opencv/cv/src/
cvderiv.cpp 644 int fx = kx[k], fy = ky[k]; local
645 s0 += fx*(src1[0] + src2[0]) + fy*(src1[width] + src2[width]);
646 s1 += fx*(src1[1] + src2[1]) + fy*(src1[width+1] + src2[width+1]);
660 int fx = kx[k], fy = ky[k]; local
661 s0 += fx*(src1[0] + src2[0]) + fy*(src1[width] + src2[width]);
662 s1 += fx*(src1[1] + src2[1]) + fy*(src1[width+1] + src2[width+1]);
773 float fx = kx[k], fy = ky[k]; local
    [all...]
cvundistort.cpp 53 float fx = intrinsic_matrix[0], fy = intrinsic_matrix[4]; local
54 float ifx = 1.f/fx, ify = 1.f/fy;
70 float _y = fy*(y*kr + p1*(r2 + 2*y2) + p2*_2xy) + y0;
106 float fx, float fy, float cx, float cy, float k1, float k2, uchar *pBuffer );
193 float u0, v0, fx, fy, ifx, ify, x0, y0, k1, k2, k3, p1, p2; local
231 fx = a[0]; fy = a[4];
232 ifx = 1.f/fx; ify = 1.f/fy;
249 double _y = fy*(y*kr + p1*(r2 + 2*y2) + p2*_2xy) + y0;
277 double fx, fy, u0, v0, k1, k2, k3, p1, p2; local
341 fx = a[0]; fy = a[4]
379 double A[3][3], RR[3][3], k[5]={0,0,0,0,0}, fx, fy, ifx, ify, cx, cy; local
    [all...]
cvimgwarp.cpp 225 worktype fy = yofs[dy].alpha_field, *swap_t; \
226 int sy0 = yofs[dy].idx, sy1 = sy0 + (fy > 0 && sy0 < ssize.height-1); \
271 fy*(buf1[dx] - buf0[dx])); \
436 float fy, x, sum; \
440 fy = dy*scale_y; \
441 sy = cvFloor(fy); \
442 fy -= sy; \
443 ify = cvRound(fy*ICV_CUBIC_TAB_SIZE); \
810 float fx, fy; local
    [all...]
  /external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
cmsintrp.c 342 cmsFloat32Number fx, fy, local
352 y0 = (int) _cmsQuickFloor(py); fy = py - (cmsFloat32Number) y0;
370 dxy = LERP(fy, dx0, dx1);
392 cmsS15Fixed16Number fx, fy; local
407 fy = _cmsToFixedDomain((int) Input[1] * p -> Domain[1]);
408 y0 = FIXED_TO_INT(fy);
409 ry = FIXED_REST_TO_INT(fy);
454 cmsFloat32Number fx, fy, fz, local
468 y0 = (int) _cmsQuickFloor(py); fy = py - (cmsFloat32Number) y0;
498 dxy0 = LERP(fy, dx00, dx10)
523 cmsS15Fixed16Number fx, fy, fz; local
698 cmsS15Fixed16Number fx, fy, fz; local
835 cmsS15Fixed16Number fx, fy, fz; local
    [all...]
cmspcs.c 136 cmsFloat64Number fx, fy, fz; local
142 fy = f(xyz->Y / WhitePoint->Y);
145 Lab->L = 116.0*fy - 16.0;
146 Lab->a = 500.0*(fx - fy);
147 Lab->b = 200.0*(fy - fz);
  /development/perftests/panorama/feature_stab/db_vlvm/
db_feature_detection.cpp 1473 float fy = strength[y+1][x] - strength[y-1][x]; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
sp_setup.c 792 const float fy = v1[0][1] - v2[0][1]; local
795 return ex * fy - ey * fx;
    [all...]
  /external/chromium_org/third_party/qcms/src/
chain.c 113 float fy = f(device_y); local
116 float L = 116.0f*fy - 16.0f;
117 float a = 500.0f*(fx - fy);
118 float b = 200.0f*(fy - fz);
    [all...]
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsCubic.cpp 30 && approximately_equal(lessPt.fY, cubicAtT.fY)) {
47 && approximately_equal(morePt.fY, cubicAtT.fY)) {
74 double sum = (fPts[0].fX - fPts[3].fX) * (fPts[0].fY + fPts[3].fY);
76 sum += (fPts[idx + 1].fX - fPts[idx].fX) * (fPts[idx + 1].fY + fPts[idx].fY);
93 if (startTan.fX == 0 && startTan.fY == 0) {
97 if (endTan.fX == 0 && endTan.fY == 0)
481 double fy = interp_cubic_coords(&fPts[0].fY, (t1+t2*2)\/3); local
    [all...]
  /external/deqp/modules/glshared/
glsShaderRenderCase.cpp 220 float fy = 2.0f * sy - 1.0f; local
223 m_positions[vtxNdx] = Vec4(fx, fy, 0.0f, 1.0f);
262 float fy = 2.0f * sy - 1.0f; local
263 return Vec4(fx, fy, -fx + 0.33f*fy, -0.275f*fx - fy);
glsShaderExecUtil.cpp 712 const float fy = -1.0f + 2.0f*((float(iy) + 0.5f) / float(framebufferH)); local
714 positions[valNdx] = tcu::Vec2(fx, fy);
    [all...]
  /external/freetype/src/autofit/
afhints.h 268 FT_Short fx, fy; /* original, unscaled position (in font units) */ member in struct:AF_PointRec_
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_setup.c 792 const float fy = v1[0][1] - v2[0][1]; local
795 return ex * fy - ey * fx;
    [all...]
  /external/pdfium/core/src/fpdfdoc/
doc_ap.cpp 544 FX_FLOAT fy = rcBody.top; local
546 if (IsFloatSmaller(fy, rcBody.bottom)) {
578 CPDF_Rect rcItem = CPDF_Rect(rcBody.left, fy - fItemHeight, rcBody.right, fy);
581 sBody << "BT\n" << CPVT_GenerateAP::GenerateColorAP(CPVT_Color(CT_GRAY, 1), TRUE) << CPVT_GenerateAP::GenerateEditAP(&map, vt.GetIterator(), CPDF_Point(0.0f, fy), TRUE, 0) << "ET\n";
583 sBody << "BT\n" << CPVT_GenerateAP::GenerateColorAP(crText, TRUE) << CPVT_GenerateAP::GenerateEditAP(&map, vt.GetIterator(), CPDF_Point(0.0f, fy), TRUE, 0) << "ET\n";
585 fy -= fItemHeight;
    [all...]
  /external/pdfium/core/src/fxge/dib/
fx_dib_main.cpp 1236 int fc, fm, fy, fk, bc, bm, by, bk; local
    [all...]
  /external/pixman/pixman/
pixman-bits-image.c 475 pixman_fixed_48_16_t fy = *y_params++; local
478 if (fy)
503 f = (fy * fx + 0x8000) >> 16;
800 pixman_fixed_t fy = *y_params++; local
802 if (fy)
841 f = ((pixman_fixed_32_32_t)fx * fy + 0x8000) >> 16;
    [all...]
  /external/skia/src/pathops/
SkPathOpsCubic.cpp 30 && approximately_equal(lessPt.fY, cubicAtT.fY)) {
47 && approximately_equal(morePt.fY, cubicAtT.fY)) {
74 double sum = (fPts[0].fX - fPts[3].fX) * (fPts[0].fY + fPts[3].fY);
76 sum += (fPts[idx + 1].fX - fPts[idx].fX) * (fPts[idx + 1].fY + fPts[idx].fY);
93 if (startTan.fX == 0 && startTan.fY == 0) {
97 if (endTan.fX == 0 && endTan.fY == 0)
481 double fy = interp_cubic_coords(&fPts[0].fY, (t1+t2*2)\/3); local
    [all...]
  /frameworks/base/opengl/java/android/opengl/
Matrix.java 706 float fy = centerY - eyeY; local
710 float rlf = 1.0f / Matrix.length(fx, fy, fz);
712 fy *= rlf;
716 float sx = fy * upZ - fz * upY;
718 float sz = fx * upY - fy * upX;
727 float ux = sy * fz - sz * fy;
729 float uz = sx * fy - sy * fx;
738 rm[rmOffset + 6] = -fy;
  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_feature_detection.cpp 1473 float fy = strength[y+1][x] - strength[y-1][x]; local
    [all...]
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_feature_detection.cpp 1473 float fy = strength[y+1][x] - strength[y-1][x]; local
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkDraw.cpp 321 int y = SkScalarFloorToInt(devPts[i].fY);
342 int y = SkScalarFloorToInt(devPts[i].fY);
363 int y = SkScalarFloorToInt(devPts[i].fY);
374 int y = SkScalarFloorToInt(devPts[i].fY);
418 SkFixed y = SkScalarToFixed(devPts[i].fY);
435 SkFixed y = SkScalarToFixed(devPts[i].fY);
601 preMatrix.setTranslate(pts[i].fX, pts[i].fY);
617 r.fTop = pts[i].fY - radius;
667 if (pointData.fSize.fX == pointData.fSize.fY) {
700 pointData.fPoints[i].fY - pointData.fSize.fY
1639 SkFixed fy = SkScalarToFixed(y) + d1g.fHalfSampleY; local
1771 SkFixed fy = SkScalarToFixed(tmsLoc.fY) + d1g.fHalfSampleY; local
1795 SkFixed fy = fixedLoc.fY + d1g.fHalfSampleY; local
    [all...]
  /external/libvpx/libvpx/third_party/libyuv/source/
scale.c 3589 int fy = (y >> 8) & 255; local
    [all...]

Completed in 1042 milliseconds

1 2 34 5