HomeSort by relevance Sort by last modified time
    Searched defs:nx (Results 1 - 25 of 54) 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/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);
  /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);
  /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/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;
  /frameworks/base/core/java/android/text/method/
Touch.java 152 int nx = widget.getScrollX() + (int) dx; local
164 scrollTo(widget, layout, nx, ny);
  /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/chromium_org/v8/src/
scanner.cc 674 int nx = x * 8 + d; local
675 if (nx >= 256) break;
676 x = nx;
    [all...]
  /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;
  /external/v8/src/
scanner.cc 672 int nx = x * 8 + d; local
673 if (nx >= 256) break;
674 x = nx;
  /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/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];
  /external/chromium_org/third_party/mesa/src/src/gallium/tests/trivial/
compute.c 193 int nx = (target == PIPE_BUFFER ? (w / dx) : local
214 for (x = 0; x < nx; ++x) {
237 int nx = (tex->target == PIPE_BUFFER ? (tex->width0 / dx) : local
259 for (x = 0; x < nx; ++x) {
    [all...]
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsCubic.cpp 411 double nx = fx * 27 - ax - dx * 8; local
413 /* bx = */ dst[1].fX = (mx * 2 - nx) / 18;
415 /* cx = */ dst[2].fX = (nx * 2 - mx) / 18;
440 double nx = fx * 27 - a.fX - d.fX * 8;
442 /* bx = */ dst[0].fX = (mx * 2 - nx) / 18;
444 /* cx = */ dst[1].fX = (nx * 2 - mx) / 18;
  /external/mesa3d/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];
  /external/mesa3d/src/gallium/tests/trivial/
compute.c 193 int nx = (target == PIPE_BUFFER ? (w / dx) : local
214 for (x = 0; x < nx; ++x) {
237 int nx = (tex->target == PIPE_BUFFER ? (tex->width0 / dx) : local
259 for (x = 0; x < nx; ++x) {
    [all...]

Completed in 1950 milliseconds

1 2 3