HomeSort by relevance Sort by last modified time
    Searched defs:nx (Results 1 - 25 of 61) sorted by null

1 2 3

  /bionic/libm/upstream-freebsd/lib/msun/src/
e_rem_pio2.c 59 int32_t e0,i,j,nx,n,ix,hx; local
181 nx = 3;
182 while(tx[nx-1]==zero) nx--; /* skip zero term */
183 n = __kernel_rem_pio2(tx,ty,e0,nx,1);
  /external/chromium_org/third_party/skia/experimental/Intersection/
CubicSubDivide.cpp 85 double nx = fx * 27 - ax - dx * 8; local
87 /* bx = */ dst[1].x = (mx * 2 - nx) / 18;
89 /* cx = */ dst[2].x = (nx * 2 - mx) / 18;
101 double nx = fx * 27 - a.x - d.x * 8; local
103 /* bx = */ dst[0].x = (mx * 2 - nx) / 18;
105 /* cx = */ dst[1].x = (nx * 2 - mx) / 18;
  /external/clang/test/SemaCXX/
namespace-alias.cpp 116 A::X nx; variable
  /external/fdlibm/
e_rem_pio2.c 92 int e0,i,j,nx,n,ix,hx; local
170 nx = 3;
171 while(tx[nx-1]==zero) nx--; /* skip zero term */
172 n = __kernel_rem_pio2(tx,y,e0,nx,2,two_over_pi);
  /external/skia/experimental/Intersection/
CubicSubDivide.cpp 85 double nx = fx * 27 - ax - dx * 8; local
87 /* bx = */ dst[1].x = (mx * 2 - nx) / 18;
89 /* cx = */ dst[2].x = (nx * 2 - mx) / 18;
101 double nx = fx * 27 - a.x - d.x * 8; local
103 /* bx = */ dst[0].x = (mx * 2 - nx) / 18;
105 /* cx = */ dst[1].x = (nx * 2 - mx) / 18;
  /frameworks/base/media/mca/filterfw/java/android/filterfw/geometry/
Point.java 89 float nx = this.x; local
92 float ox = nx;
93 nx = ny;
96 return new Point(nx, ny);
  /bionic/libm/upstream-freebsd/lib/msun/ld128/
e_rem_pio2l.h 68 int e0,ex,i,j,nx; local
132 nx = 5;
133 while(tx[nx-1]==zero) nx--; /* skip zero term */
134 n = __kernel_rem_pio2(tx,ty,e0,nx,3);
  /external/chromium_org/third_party/skia/src/core/
SkStrokerPriv.cpp 27 SkScalar nx = normal.fX; local
29 SkScalar sx = SkScalarMul(nx, 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 + CWY(sx, sy)
    [all...]
  /external/chromium_org/third_party/skia/src/effects/
SkEmbossMask.cpp 109 int nx = alpha[x + neq_to_one(x, maxx)] - alpha[x - nonzero_to_one(x)]; 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/v8/third_party/fdlibm/
fdlibm.cc 116 int __kernel_rem_pio2(double* x, double* y, int e0, int nx) {
119 int32_t jx = nx - 1;
270 int nx = 3; local
271 while (tx[nx - 1] == zero) nx--;
272 int n = __kernel_rem_pio2(tx, y, e0, nx);
  /external/skia/src/core/
SkStrokerPriv.cpp 27 SkScalar nx = normal.fX; local
29 SkScalar sx = SkScalarMul(nx, 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 + CWY(sx, sy)
    [all...]
  /external/skia/src/effects/
SkEmbossMask.cpp 109 int nx = alpha[x + neq_to_one(x, maxx)] - alpha[x - nonzero_to_one(x)]; 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/mesa/src/src/gallium/drivers/nv30/
nv30_transfer.c 572 unsigned nx = rect->w >> k; local
579 m += ((ty * nx) + tx) << k << k;
  /external/chromium_org/third_party/sqlite/src/src/
bitvec.c 337 int i, nx, pc, op; local
359 nx = 4;
367 nx = 2;
372 if( (--aOp[pc+1]) > 0 ) nx = 0;
373 pc += nx;
  /external/mesa3d/src/gallium/drivers/nv30/
nv30_transfer.c 572 unsigned nx = rect->w >> k; local
579 m += ((ty * nx) + tx) << k << k;
  /external/opencv/cv/src/
cvcamshift.cpp 97 int dx, dy, nx, ny; local
111 nx = cur_rect.x + dx;
114 if( nx < 0 )
115 nx = 0;
116 else if( nx + cur_rect.width > mat->cols )
117 nx = mat->cols - cur_rect.width;
124 dx = nx - cur_rect.x;
126 cur_rect.x = nx;
  /external/pixman/pixman/
pixman-trap.c 107 int nx = (ne + e->dy - 1) / e->dy; local
108 e->e = ne - nx * (pixman_fixed_48_16_t) e->dy;
109 e->x += nx * e->signdx;
116 int nx = (-ne) / e->dy; local
117 e->e = ne + nx * (pixman_fixed_48_16_t) e->dy;
118 e->x -= nx * e->signdx;
141 int nx = ne / e->dy; local
142 ne -= nx * (pixman_fixed_48_16_t)e->dy;
143 stepx += nx * e->signdx;
  /frameworks/base/core/java/android/text/method/
Touch.java 163 int nx = widget.getScrollX() + (int) dx; local
176 scrollTo(widget, layout, nx, ny);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
nv50_surface.c 223 unsigned nx = util_format_get_nblocksx(src->format, src_box->width); local
231 nv50_m2mf_transfer_rect(nv50, &drect, &srect, nx, ny);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/
nvc0_surface.c 230 unsigned nx = util_format_get_nblocksx(src->format, src_box->width); local
238 nvc0->m2mf_copy_rect(nvc0, &drect, &srect, nx, ny);
    [all...]
  /external/deqp/modules/gles2/accuracy/
es2aVaryingInterpolationTests.cpp 58 static inline float projectedTriInterpolate (const tcu::Vec3& s, const tcu::Vec3& w, float nx, float ny)
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]);
79 float nx = wx / dstW; local
82 int triNdx = nx + ny >= 1.0f ? 1 : 0;
83 float triNx = triNdx ? 1.0f - nx : nx;
  /external/deqp/modules/gles3/accuracy/
es3aVaryingInterpolationTests.cpp 61 static inline float projectedTriInterpolate (const tcu::Vec3& s, const tcu::Vec3& w, float nx, float ny)
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]);
82 float nx = wx / dstW; local
85 int triNdx = nx + ny >= 1.0f ? 1 : 0;
86 float triNx = triNdx ? 1.0f - nx : nx;
  /external/mesa3d/src/gallium/drivers/nv50/
nv50_surface.c 223 unsigned nx = util_format_get_nblocksx(src->format, src_box->width); local
231 nv50_m2mf_transfer_rect(nv50, &drect, &srect, nx, ny);
  /external/mesa3d/src/gallium/drivers/nvc0/
nvc0_surface.c 230 unsigned nx = util_format_get_nblocksx(src->format, src_box->width); local
238 nvc0->m2mf_copy_rect(nvc0, &drect, &srect, nx, ny);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11gears/
d3d11gears.cpp 73 vertex(float x, float y, float z, float nx, float ny, float nz)
78 normal[0] = nx;
84 #define VERT(x, y, z) vertices.push_back(vertex((x), (y), (z), (nx), (ny), (nz)))
91 float nx, ny, nz; local
126 nx = 0.0f;
190 nx = -dy / len;
210 nx = -dc[i];

Completed in 696 milliseconds

1 2 3