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);
  /device/google/contexthub/firmware/lib/libm/
ef_rem_pio2.c 108 int e0,nx; local
188 nx = 3;
189 while(tx[nx-1]==zero) nx--; /* skip zero term */
190 n = __kernel_rem_pio2f(tx,y,e0,nx,2,two_over_pi);
  /device/linaro/bootloader/edk2/StdLib/LibC/Math/
e_rem_pio2.c 80 int32_t e0,i,j,nx,n,ix,hx; local
164 nx = 3;
165 while(tx[nx-1]==zero) nx--; /* skip zero term */
166 n = __kernel_rem_pio2(tx,y,e0,nx,2,two_over_pi);
  /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/syslinux/extlinux/
mountinfo.c 65 struct mountinfo *nx; local
73 nx = m->next;
75 m = nx;
  /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);
  /libcore/ojluni/src/main/java/sun/nio/ch/
Net.java 125 Exception nx = x; local
127 nx = new SocketException("Socket is closed");
129 nx = new SocketException("Socket is not connected");
131 nx = new SocketException("Already bound");
133 nx = new SocketException("Socket is not bound yet");
135 nx = new SocketException("Unsupported address type");
137 nx = new SocketException("Unresolved address");
140 nx = new SocketException("Already connected");
142 if (nx != x)
143 nx.initCause(x)
    [all...]
  /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/clang/test/SemaCXX/
namespace-alias.cpp 116 A::X nx; variable
  /external/skia/src/effects/
SkEmbossMask.cpp 72 int nx = alpha[x + neq_to_one(x, maxx)] - alpha[x - nonzero_to_one(x)]; local
75 SkFixed numer = lx * nx + ly * ny + lz_dot_nz;
80 int denom = SkSqrt32(nx * nx + ny * ny + kDelta*kDelta);
  /frameworks/base/core/java/android/text/method/
Touch.java 153 int nx = widget.getScrollX() + (int) dx; local
165 scrollTo(widget, layout, nx, ny);
  /external/mesa3d/src/gallium/drivers/nouveau/nv30/
nv30_transfer.c 573 unsigned nx = rect->w >> k; local
580 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;
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;
  /device/google/contexthub/firmware/os/algos/calibration/accelerometer/
accel_cal.h 19 * (nx,nxb,ny,nyb,nz,nzb,nle). Once the buckets are full the data is used to
80 uint32_t nx, nxb, ny, nyb, nz, nzb, nle; member in struct:AccelGoodData
  /external/deqp/modules/gles2/accuracy/
es2aVaryingInterpolationTests.cpp 59 static inline float projectedTriInterpolate (const tcu::Vec3& s, const tcu::Vec3& w, float nx, float ny)
61 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 nx = wx / dstW; local
83 int triNdx = nx + ny >= 1.0f ? 1 : 0;
84 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/ImageMagick/coders/
sixel.c 427 int nx = imsx * 2;
430 while (nx < (posision_x + repeat_count) || ny < (posision_y + 6)) {
431 nx *= 2;
435 dmsx = nx;
425 int nx = imsx * 2; local
    [all...]
  /external/curl/lib/
cookie.c 303 struct Cookie *co, *nx, *pv; local
309 nx = co->next;
323 co = nx;
    [all...]
  /frameworks/base/core/java/android/gesture/
GestureUtils.java 299 float nx = lstPointX + ratio * deltaX; local
301 vector[index] = nx;
305 lstPointX = nx;
  /frameworks/rs/driver/runtime/
rs_sample.c 319 int lx, int ly, int nx, int ny,
327 return getSample_RGBA(p, stride, lx, ly, nx, ny, w0, w1, w2, w3);
329 return getSample_A(p, stride, lx, ly, nx, ny, w0, w1, w2, w3);
331 return getSample_LA(p, stride, lx, ly, nx, ny, w0, w1, w2, w3);
334 return getSample_565(p, stride, lx, ly, nx, ny, w0, w1, w2, w3);
336 return getSample_RGB(p, stride, lx, ly, nx, ny, w0, w1, w2, w3);
338 return getSample_L(p, stride, lx, ly, nx, ny, w0, w1, w2, w3);
500 int nx = wrapI(wrapS, iPixelU + 1, sourceW); local
505 return getBilinearSample2D(alloc, w0, w1, w2, w3, lx, ly, nx, ny, dk, dt, lod);
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
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 518 float nx = (float) (Math.sin(orientation) * Math.sin(tilt)); local
525 float cx = nx * cd;
  /external/ImageMagick/MagickCore/
distort.c 650 7: x,y, sx,sy, a, nx,ny
651 6: x,y, s, a, nx,ny
661 nx,ny move 'center' here (default = x,y or no movement)
671 x,y,sx,sy,a,nx,ny;
674 x = nx = (double)(image->columns)/2.0 + (double)image->page.x;
692 x = nx = arguments[0];
710 nx = arguments[4];
717 nx = arguments[5];
743 coeff[2]=x-nx*coeff[0]-ny*coeff[1];
746 coeff[5]=y-nx*coeff[3]-ny*coeff[4]
667 x,y,sx,sy,a,nx,ny; local
    [all...]

Completed in 544 milliseconds

1 2 3