HomeSort by relevance Sort by last modified time
    Searched refs:ny (Results 1 - 25 of 118) sorted by null

1 2 3 4 5

  /frameworks/base/media/mca/filterfw/java/android/filterfw/geometry/
Point.java 90 float ny = this.y; local
93 nx = ny;
94 ny = -ox;
96 return new Point(nx, ny);
  /external/valgrind/main/none/tests/s390x/
and.stdout.exp 49 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 + 8000000000000000 & 0000000000000000 = 8000000000000000 (cc=0
    [all...]
  /external/skia/src/effects/
SkEmbossMask.cpp 110 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;
SkBlurMask.cpp 124 int ny = SkFastMin32(next_y, sh) * sumStride; local
133 uint32_t tmp = sum[px+py] + sum[nx+ny] - sum[nx+py] - sum[px+ny];
156 uint32_t tmp = sum[px+py] + sum[nx+ny] - sum[nx+py] - sum[px+ny];
190 int ny = SkFastMin32(next_y, sh) * sumStride; local
203 uint32_t tmp = sum[px+py] + sum[nx+ny] - sum[nx+py] - sum[px+ny];
211 int i1 = next_x + ny;
213 int i3 = prev_x + ny;
291 int ny = SkFastMin32(next_y, sh) * sumStride; local
384 int ny = SkFastMin32(next_y, sh) * sumStride; local
    [all...]
  /external/skia/src/core/
SkStrokerPriv.cpp 28 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 + CWY(sx, sy)
    [all...]
  /external/opencv/cv/src/
cvcamshift.cpp 97 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;
cvcontourtree.cpp 599 double x13, y13, x12, y12, l_base, nx, ny, qq; local
611 ny = -x13 / l_base;
613 *h = nx * x12 + ny * y12;
617 *b = nx * y12 - ny * x12;
cvlinefit.cpp 224 float nx = _line[1], ny = -_line[0];
234 dist[j] = (float) fabs( nx * x + ny * y );
  /external/jmonkeyengine/engine/src/desktop/com/jme3/texture/plugins/
AWTLoader.java 149 int ny = y; local
151 ny = height - y - 1;
154 int rgb = img.getRGB(x,ny);
168 int ny = y; local
170 ny = height - y - 1;
173 int rgb = img.getRGB(x,ny);
  /frameworks/base/core/java/android/text/method/
Touch.java 151 int ny = widget.getScrollY() + (int) dy; local
156 ny = Math.min(ny, layout.getHeight() - (widget.getHeight() - padding));
157 ny = Math.max(ny, 0);
162 scrollTo(widget, layout, nx, ny);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
CubeMapActivity.java 181 float ny = -sinV * cosU; local
184 float length = (float) Math.sqrt(nx*nx + ny*ny + nz*nz);
186 ny /= 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) {
332 mVertexBuffer.put(ny);
TouchPaint.java 486 float ny = (float) (- Math.cos(orientation) * Math.sin(tilt)); local
493 float cy = ny * cd;
  /gdk/samples/PhotoEditor/jni/
fisheye.cpp 140 int ny = center_y - y; local
147 FisheyeMapPixels(fpx, fny, dst_x, ny, &src_info, &dst_info, src_pixels, dst_pixels);
149 FisheyeMapPixels(fnx, fny, nx, ny, &src_info, &dst_info, src_pixels, dst_pixels);
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
NinePatchTexture.java 226 int ny = stretch(divY, divV, chunk.mDivY, tex.getHeight(), height); local
228 prepareVertexData(divX, divY, divU, divV, nx, ny, chunk.mColor);
313 int nx, int ny, int[] color) {
336 for (int j = 0; j < ny; ++j) {
350 for (int row = 0; row < ny - 1; row++) {
  /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;
388 GGLcoord ny = dx; local
391 const GGLfixed norm = gglMulx(width, gglSqrtRecipx(nx*nx+ny*ny), 4)
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
date-format-tofte.js 201 var ny = new Date("January 1 " + Y() + " 00:00:00");
202 var nyDay = ny.getDay()!=0?ny.getDay()-1:6;
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
date-format-tofte.js 201 var ny = new Date("January 1 " + Y() + " 00:00:00");
202 var nyDay = ny.getDay()!=0?ny.getDay()-1:6;
  /frameworks/base/core/java/android/gesture/
GestureUtils.java 300 float ny = lstPointY + ratio * deltaY; local
303 vector[index] = ny;
306 lstPointY = ny;
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
MatrixTrackingGL.java 478 public void glNormal3f(float nx, float ny, float nz) {
479 mgl.glNormal3f(nx, ny, nz);
482 public void glNormal3x(int nx, int ny, int nz) {
483 mgl.glNormal3x(nx, ny, nz);
  /external/quake/quake/src/QW/dxsdk/sdk/inc/
d3drm.h 74 D3DVALUE nx, D3DVALUE ny, D3DVALUE nz,
  /external/quake/quake/src/WinQuake/dxsdk/SDK/INC/
D3DRM.H 74 D3DVALUE nx, D3DVALUE ny, D3DVALUE nz,
  /frameworks/native/opengl/tools/glgen/specs/gles11/
GLES10.spec 70 void glNormal3f ( GLfloat nx, GLfloat ny, GLfloat nz )
71 void glNormal3x ( GLfixed nx, GLfixed ny, GLfixed nz )
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_glfuncs.h 184 SDL_PROC_UNUSED(void,glNormal3b,(GLbyte nx, GLbyte ny, GLbyte nz))
186 SDL_PROC_UNUSED(void,glNormal3d,(GLdouble nx, GLdouble ny, GLdouble nz))
188 SDL_PROC_UNUSED(void,glNormal3f,(GLfloat nx, GLfloat ny, GLfloat nz))
190 SDL_PROC_UNUSED(void,glNormal3i,(GLint nx, GLint ny, GLint nz))
192 SDL_PROC_UNUSED(void,glNormal3s,(GLshort nx, GLshort ny, GLshort nz))
  /sdk/emulator/opengl/tests/gles_android_wrapper/
gles.cpp 181 void glNormal3f(GLfloat nx, GLfloat ny, GLfloat nz)
183 getDispatch()->glNormal3f(nx, ny, nz);
606 void glNormal3x(GLfixed nx, GLfixed ny, GLfixed nz)
608 getDispatch()->glNormal3x(nx, ny, nz);
971 void glNormal3xOES(GLfixed nx, GLfixed ny, GLfixed nz)
973 getDispatch()->glNormal3xOES(nx, ny, nz);
    [all...]
  /frameworks/base/opengl/java/android/opengl/
GLES10.java     [all...]

Completed in 894 milliseconds

1 2 3 4 5