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

1 2

  /external/quake/quake/src/QW/client/
gl_ngraph.c 67 int nx; local
75 for (nx=0 ; nx<8 ; nx++)
76 if (source[nx] != 255)
77 ngraph_texels[y][nx+x] = 0x60 + source[nx];
gl_screen.c 840 int dx, dy, dex, dey, nx; local
905 for (nx = dx; nx < dex; nx++) {
screen.c 790 int dx, dy, dex, dey, nx; local
863 for (nx = dx; nx < dex; nx++) {
  /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);
  /bionic/libm/src/
e_rem_pio2.c 80 int32_t e0,i,j,nx,n,ix,hx; local
163 nx = 3;
164 while(tx[nx-1]==zero) nx--; /* skip zero term */
165 n = __kernel_rem_pio2(tx,y,e0,nx,2,two_over_pi);
  /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;
SkBlurMask.cpp 131 int nx = SkFastMin32(next_x, sw); local
133 uint32_t tmp = sum[px+py] + sum[nx+ny] - sum[nx+py] - sum[px+ny];
154 int nx = SkFastMin32(next_x, sw);
156 uint32_t tmp = sum[px+py] + sum[nx+ny] - sum[nx+py] - sum[px+ny];
201 int nx = next_x; local
203 uint32_t tmp = sum[px+py] + sum[nx+ny] - sum[nx+py] - sum[px+ny];
250 int nx = sw local
301 int nx = SkFastMin32(next_x, sw); local
468 int nx = sw; local
    [all...]
  /frameworks/base/core/java/android/text/method/
Touch.java 150 int nx = widget.getScrollX() + (int) dx; local
162 scrollTo(widget, layout, nx, ny);
  /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;
cvcontourtree.cpp 599 double x13, y13, x12, y12, l_base, nx, ny, qq; local
610 nx = y13 / l_base;
613 *h = nx * x12 + ny * y12;
617 *b = nx * y12 - ny * x12;
cvshapedescr.cpp 568 double x_s, y_s, nx, ny, dx, dy, du, dv; local
608 nx = pt_s.y - pt_e.y;
631 sk = nx * (xi - pt_s.x) + ny * (yi - pt_s.y);
658 dy = -nx;
    [all...]
  /external/v8/src/
scanner.cc 672 int nx = x * 8 + d; local
673 if (nx >= 256) break;
674 x = nx;
  /gdk/samples/PhotoEditor/jni/
fisheye.cpp 139 int nx = center_x - x; local
148 FisheyeMapPixels(fnx, fpy, nx, scan_line, &src_info, &dst_info, src_pixels, dst_pixels);
149 FisheyeMapPixels(fnx, fny, nx, ny, &src_info, &dst_info, src_pixels, dst_pixels);
  /frameworks/base/core/java/android/gesture/
GestureUtils.java 299 float nx = lstPointX + ratio * deltaX; local
301 vector[index] = nx;
305 lstPointX = nx;
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
NinePatchTexture.java 225 int nx = stretch(divX, divU, chunk.mDivX, tex.getWidth(), width); local
228 prepareVertexData(divX, divY, divU, divV, nx, ny, chunk.mColor);
313 int nx, int ny, int[] color) {
337 for (int i = 0; i < nx; ++i) {
357 end = nx;
360 start = nx - 1;
366 int k = row * nx + col;
368 int colorIdx = row * (nx - 1) + col;
378 index[idxCount++] = (byte) (k + nx);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
CubeMapActivity.java 180 float nx = cosV * cosU; local
184 float length = (float) Math.sqrt(nx*nx + ny*ny + nz*nz);
185 nx /= length;
189 grid.set(i, j, x, y, z, nx, ny, nz);
237 // float nx, ny, nx;
317 public void set(int i, int j, float x, float y, float z, float nx, float ny, float nz) {
331 mVertexBuffer.put(nx);
TouchPaint.java 485 float nx = (float) (Math.sin(orientation) * Math.sin(tilt)); local
492 float cx = nx * cd;
  /external/openssl/apps/
x509.c 1062 NETSCAPE_X509 nx; local
1067 nx.header= &hdr;
1068 nx.cert=x;
1070 i=ASN1_item_i2d_bio(ASN1_ITEM_rptr(NETSCAPE_X509),out,&nx);
    [all...]
apps.c 822 NETSCAPE_X509 *nx; local
823 nx=ASN1_item_d2i_bio(ASN1_ITEM_rptr(NETSCAPE_X509),cert,NULL);
824 if (nx == NULL)
827 if ((strncmp(NETSCAPE_CERT_HDR,(char *)nx->header->data,
828 nx->header->length) != 0))
830 NETSCAPE_X509_free(nx);
834 x=nx->cert;
835 nx->cert = NULL;
836 NETSCAPE_X509_free(nx);
    [all...]
  /frameworks/base/icu4j/java/android/icu/text/
ArabicShaping.java 1670 int nx = -2; local
    [all...]
  /system/core/libpixelflinger/
trap.cpp 358 GGLcoord nx, ny; local
359 nx = ny = 0;
365 ((dx > dy) ? ny : nx) = halfWidth;
368 v[0][0] += nx; v[0][1] += ny;
369 v[1][0] += nx; v[1][1] += ny;
370 v[2][0] -= nx; v[2][1] -= ny;
371 v[3][0] -= nx; v[3][1] -= ny;
387 GGLcoord nx = -dy; local
391 const GGLfixed norm = gglMulx(width, gglSqrtRecipx(nx*nx+ny*ny), 4)
    [all...]
  /external/bzip2/
bzip2.c 1113 Int32 nx = strlen(suffix); local
1114 if (ns < nx) return False;
1115 if (strcmp(s + ns - nx, suffix) == 0) return True;
    [all...]

Completed in 1259 milliseconds

1 2