Searched refs:ny (Results 1 - 25 of 85) sorted by relevance

1234

/external/valgrind/main/none/tests/s390x/
H A Dand.stdout.exp49 ny + 0000000000000000 & 0000000000000000 = 0000000000000000 (cc=0)
50 ny + 0000000000000001 & 0000000000000000 = 0000000000000000 (cc=0)
51 ny + 000000000000FFFF & 0000000000000000 = 0000000000000000 (cc=0)
52 ny + 0000000000007FFF & 0000000000000000 = 0000000000000000 (cc=0)
53 ny + 0000000000008000 & 0000000000000000 = 0000000000000000 (cc=0)
54 ny + 00000000FFFFFFFF & 0000000000000000 = 0000000000000000 (cc=0)
55 ny + 0000000080000000 & 0000000000000000 = 0000000000000000 (cc=0)
56 ny + 000000007FFFFFFF & 0000000000000000 = 0000000000000000 (cc=0)
57 ny + AAAAAAAAAAAAAAAA & 0000000000000000 = AAAAAAAA00000000 (cc=0)
58 ny
[all...]
/external/chromium_org/third_party/skia/src/effects/
H A DSkEmbossMask.cpp110 int ny = alpha[x + next_row] - alpha[x - prev_row]; local
112 SkFixed numer = lx * nx + ly * ny + lz_dot_nz;
118 int denom = SkSqrt32(nx * nx + ny * ny + kDelta*kDelta);
126 SkFixed dot = (unsigned)(numer >> 4) * gInvSqrtTable[(SkAbs32(nx) >> 1 << 7) | (SkAbs32(ny) >> 1)] >> 20;
/external/skia/src/effects/
H A DSkEmbossMask.cpp110 int ny = alpha[x + next_row] - alpha[x - prev_row]; local
112 SkFixed numer = lx * nx + ly * ny + lz_dot_nz;
118 int denom = SkSqrt32(nx * nx + ny * ny + kDelta*kDelta);
126 SkFixed dot = (unsigned)(numer >> 4) * gInvSqrtTable[(SkAbs32(nx) >> 1 << 7) | (SkAbs32(ny) >> 1)] >> 20;
/external/chromium_org/third_party/skia/src/core/
H A DSkStrokerPriv.cpp28 SkScalar ny = normal.fY; local
30 SkScalar sy = SkScalarMul(ny, CUBIC_ARC_FACTOR);
32 path->cubicTo(px + nx + CWX(sx, sy), py + ny + CWY(sx, sy),
33 px + CWX(nx, ny) + sx, py + CWY(nx, ny) + sy,
34 px + CWX(nx, ny), py + CWY(nx, ny));
35 path->cubicTo(px + CWX(nx, ny) - sx, py + CWY(nx, ny) - sy,
36 px - nx + CWX(sx, sy), py - ny
[all...]
/external/skia/src/core/
H A DSkStrokerPriv.cpp28 SkScalar ny = normal.fY; local
30 SkScalar sy = SkScalarMul(ny, CUBIC_ARC_FACTOR);
32 path->cubicTo(px + nx + CWX(sx, sy), py + ny + CWY(sx, sy),
33 px + CWX(nx, ny) + sx, py + CWY(nx, ny) + sy,
34 px + CWX(nx, ny), py + CWY(nx, ny));
35 path->cubicTo(px + CWX(nx, ny) - sx, py + CWY(nx, ny) - sy,
36 px - nx + CWX(sx, sy), py - ny
[all...]
/external/opencv/cv/src/
H A Dcvcamshift.cpp97 int dx, dy, nx, ny; local
112 ny = cur_rect.y + dy;
119 if( ny < 0 )
120 ny = 0;
121 else if( ny + cur_rect.height > mat->rows )
122 ny = mat->rows - cur_rect.height;
125 dy = ny - cur_rect.y;
127 cur_rect.y = ny;
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DCubicSubDivide.cpp86 double ny = fy * 27 - ay - dy * 8; local
88 /* by = */ dst[1].y = (my * 2 - ny) / 18;
90 /* cy = */ dst[2].y = (ny * 2 - my) / 18;
102 double ny = fy * 27 - a.y - d.y * 8; local
104 /* by = */ dst[0].y = (my * 2 - ny) / 18;
106 /* cy = */ dst[1].y = (ny * 2 - my) / 18;
/external/skia/experimental/Intersection/
H A DCubicSubDivide.cpp86 double ny = fy * 27 - ay - dy * 8; local
88 /* by = */ dst[1].y = (my * 2 - ny) / 18;
90 /* cy = */ dst[2].y = (ny * 2 - my) / 18;
102 double ny = fy * 27 - a.y - d.y * 8; local
104 /* by = */ dst[0].y = (my * 2 - ny) / 18;
106 /* cy = */ dst[1].y = (ny * 2 - my) / 18;
/external/deqp/modules/gles2/accuracy/
H A Des2aVaryingInterpolationTests.cpp58 static inline float projectedTriInterpolate (const tcu::Vec3& s, const tcu::Vec3& w, float nx, float ny) argument
60 return (s[0]*(1.0f-nx-ny)/w[0] + s[1]*ny/w[1] + s[2]*nx/w[2]) / ((1.0f-nx-ny)/w[0] + ny/w[1] + nx/w[2]);
80 float ny = wy / dstH; local
82 int triNdx = nx + ny >= 1.0f ? 1 : 0;
84 float triNy = triNdx ? 1.0f - ny : ny;
/external/deqp/modules/gles3/accuracy/
H A Des3aVaryingInterpolationTests.cpp61 static inline float projectedTriInterpolate (const tcu::Vec3& s, const tcu::Vec3& w, float nx, float ny) argument
63 return (s[0]*(1.0f-nx-ny)/w[0] + s[1]*ny/w[1] + s[2]*nx/w[2]) / ((1.0f-nx-ny)/w[0] + ny/w[1] + nx/w[2]);
83 float ny = wy / dstH; local
85 int triNdx = nx + ny >= 1.0f ? 1 : 0;
87 float triNy = triNdx ? 1.0f - ny : ny;
/external/fonttools/Lib/fontTools/pens/
H A DbasePen.py266 nx, ny = points[0] # first off-curve point
267 impliedStartPoint = (0.5 * (x + nx), 0.5 * (y + ny))
333 nx, ny = points[i+1]
334 impliedPt = (0.5 * (x + nx), 0.5 * (y + ny))
/external/fonttools/Tools/fontTools/pens/
H A DbasePen.py266 nx, ny = points[0] # first off-curve point
267 impliedStartPoint = (0.5 * (x + nx), 0.5 * (y + ny))
333 nx, ny = points[i+1]
334 impliedPt = (0.5 * (x + nx), 0.5 * (y + ny))
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/
H A Dnvc0_miptree.c32 nvc0_tex_choose_tile_dims(unsigned nx, unsigned ny, unsigned nz) argument
36 if (ny > 64) tile_mode = 0x040; /* height 128 tiles */
38 if (ny > 32) tile_mode = 0x030; /* height 64 tiles */
40 if (ny > 16) tile_mode = 0x020; /* height 32 tiles */
42 if (ny > 8) tile_mode = 0x010; /* height 16 tiles */
/external/mesa3d/src/gallium/drivers/nvc0/
H A Dnvc0_miptree.c32 nvc0_tex_choose_tile_dims(unsigned nx, unsigned ny, unsigned nz) argument
36 if (ny > 64) tile_mode = 0x040; /* height 128 tiles */
38 if (ny > 32) tile_mode = 0x030; /* height 64 tiles */
40 if (ny > 16) tile_mode = 0x020; /* height 32 tiles */
42 if (ny > 8) tile_mode = 0x010; /* height 16 tiles */
/external/chromium_org/third_party/skia/tools/skpdiff/
H A DSkPMetric.cpp234 int ny = y;
239 ny += xx;
240 if (ny < 0) {
241 ny = -ny;
243 if (ny >= imageL->height) {
244 ny = imageL->height + (imageL->height - ny - 1);
257 lSum += rowPtrs[ny - y + radius][nx] * weight;
/external/skia/tools/skpdiff/
H A DSkPMetric.cpp234 int ny = y;
239 ny += xx;
240 if (ny < 0) {
241 ny = -ny;
243 if (ny >= imageL->height) {
244 ny = imageL->height + (imageL->height - ny - 1);
257 lSum += rowPtrs[ny - y + radius][nx] * weight;
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
H A Ddate-format-tofte.js201 var ny = new Date("January 1 " + Y() + " 00:00:00");
202 var nyDay = ny.getDay()!=0?ny.getDay()-1:6;
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
H A Ddate-format-tofte.js201 var ny = new Date("January 1 " + Y() + " 00:00:00");
202 var nyDay = ny.getDay()!=0?ny.getDay()-1:6;
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
H A Ddate-format-tofte.js201 var ny = new Date("January 1 " + Y() + " 00:00:00");
202 var nyDay = ny.getDay()!=0?ny.getDay()-1:6;
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11gears/
H A Dd3d11gears.cpp73 vertex(float x, float y, float z, float nx, float ny, float nz) argument
79 normal[1] = ny;
84 #define VERT(x, y, z) vertices.push_back(vertex((x), (y), (z), (nx), (ny), (nz)))
91 float nx, ny, nz; local
127 ny = 0.0f;
191 ny = dx / len;
211 ny = -ds[i];
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11gears/
H A Dd3d11gears.cpp73 vertex(float x, float y, float z, float nx, float ny, float nz) argument
79 normal[1] = ny;
84 #define VERT(x, y, z) vertices.push_back(vertex((x), (y), (z), (nx), (ny), (nz)))
91 float nx, ny, nz; local
127 ny = 0.0f;
191 ny = dx / len;
211 ny = -ds[i];
/external/deqp/modules/glshared/
H A DglsTextureTestUtil.cpp337 static inline float projectedTriInterpolate (const tcu::Vec3& s, const tcu::Vec3& w, float nx, float ny) argument
339 return (s[0]*(1.0f-nx-ny)/w[0] + s[1]*ny/w[1] + s[2]*nx/w[2]) / ((1.0f-nx-ny)/w[0] + ny/w[1] + nx/w[2]);
342 static inline float triDerivateX (const tcu::Vec3& s, const tcu::Vec3& w, float wx, float width, float ny) argument
344 float d = w[1]*w[2]*(width*(ny - 1.0f) + wx) - w[0]*(w[2]*width*ny + w[1]*wx);
345 return (w[0]*w[1]*w[2]*width * (w[1]*(s[0] - s[2])*(ny - 1.0f) + ny*(
521 float ny = wy / dstH; local
560 float ny = wy / dstH; local
662 const float ny = wy / dstH; local
848 float ny = wy / dstH; local
901 const float ny = wy / dstH; local
1732 const float ny = wy / dstH; local
1836 const float ny = wy / dstH; local
2030 const float ny = wy / dstH; local
2203 const float ny = wy / dstH; local
2370 const float ny = wy / dstH; local
2478 const float ny = wy / dstH; local
2678 const float ny = wy / dstH; local
2850 const float ny = wy / dstH; local
2962 const float ny = wy / dstH; local
3080 const float ny = wy / dstH; local
[all...]
/external/chromium_org/third_party/libyuv/util/
H A Dpsnr_main.cc111 int ny = (y - 16) * 256 / 224; local
112 if (ny < 0) ny = 0;
113 if (ny > 255) ny = 255;
114 return static_cast<uint8>(ny);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
H A Dnv50_resource.h35 nvc0_tex_choose_tile_dims(unsigned nx, unsigned ny, unsigned nz);
/external/mesa3d/src/gallium/drivers/nv50/
H A Dnv50_resource.h35 nvc0_tex_choose_tile_dims(unsigned nx, unsigned ny, unsigned nz);

Completed in 4184 milliseconds

1234