Searched refs:nx (Results 1 - 25 of 91) sorted by relevance

1234

/external/opencv/cxcore/src/
H A Dcxdxt.cpp439 int n0 = n, f_idx, nx;
552 nx = n;
563 v1 = v0 + nx*2;
566 r1 = v0[nx].re; i1 = v0[nx].im;
571 i3 = v1[nx].re; r3 = v1[nx].im;
579 v0[nx].re = r2 + r3; v0[nx].im = i2 + i3;
580 v1[nx]
[all...]
/external/skia/src/effects/
H A DSkEmbossMask.cpp109 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/opencv/cv/src/
H A Dcvcamshift.cpp97 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;
H A Dcvsmooth.cpp805 int nx = (m + 1)/2 - 1;
816 if( size.height < nx || size.width < nx )
899 nx++;
901 if( nx < m )
902 x0 = x < m/2 ? 0 : (nx-1)*cn;
915 UPDATE_ACC01( src_bottom[x0+c], c, += (m - nx) );
916 for( k = 0; k < nx*cn; k += cn )
922 UPDATE_ACC01( src_bottom[x0+c], c, += (m - nx)*(m/2+1) );
923 for( k = 0; k < nx*c
[all...]
/external/deqp/modules/gles2/accuracy/
H A Des2aVaryingInterpolationTests.cpp59 static inline float projectedTriInterpolate (const tcu::Vec3& s, const tcu::Vec3& w, float nx, float ny) argument
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/
H A Des3aVaryingInterpolationTests.cpp61 static inline float projectedTriInterpolate (const tcu::Vec3& s, const tcu::Vec3& w, float nx, float ny) argument
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/fdlibm/
H A De_rem_pio2.c92 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);
H A Dk_rem_pio2.c15 * __kernel_rem_pio2(x,y,e0,nx,prec,ipio2)
16 * double x[],y[]; int e0,nx,prec; int ipio2[];
31 * x[] The input value (must be positive) is broken into nx
62 * nx dimension of x[]
90 * jx nx - 1
164 int __kernel_rem_pio2(double *x, double *y, int e0, int nx, int prec, const int *ipio2) argument
166 int __kernel_rem_pio2(x,y,e0,nx,prec,ipio2)
167 double x[], y[]; int e0,nx,prec; int ipio2[];
178 jx = nx-1;
/external/skia/experimental/docs/
H A DinterpolatorFunctions.js40 var nx = fx * 27 - ax - dx * 8;
42 var bx = (mx * 2 - nx) / 18;
44 var cx = (nx * 2 - mx) / 18;
/external/fonttools/Lib/fontTools/pens/
H A DbasePen.py266 nx, ny = points[0] # first off-curve point
267 impliedStartPoint = (0.5 * (x + nx), 0.5 * (y + ny))
333 nx, ny = points[i+1]
334 impliedPt = (0.5 * (x + nx), 0.5 * (y + ny))
/external/fonttools/Tools/fontTools/pens/
H A DbasePen.py266 nx, ny = points[0] # first off-curve point
267 impliedStartPoint = (0.5 * (x + nx), 0.5 * (y + ny))
333 nx, ny = points[i+1]
334 impliedPt = (0.5 * (x + nx), 0.5 * (y + ny))
/external/deqp/framework/opengl/
H A DgluTextureTestUtil.cpp291 static inline float projectedTriInterpolate (const tcu::Vec3& s, const tcu::Vec3& w, float nx, float ny) argument
293 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]);
302 static inline float triDerivateY (const tcu::Vec3& s, const tcu::Vec3& w, float wy, float height, float nx) argument
304 float d = w[1]*w[2]*(height*(nx - 1.0f) + wy) - w[0]*(w[1]*height*nx + w[2]*wy);
305 return (w[0]*w[1]*w[2]*height * (w[2]*(s[0] - s[1])*(nx - 1.0f) + nx*(
486 float nx = wx / dstW; local
529 float nx = wx / dstW; local
635 const float nx = wx / dstW; local
831 float nx = wx / dstW; local
888 const float nx = wx / dstW; local
1282 const float nx = wx / dstW; local
1387 const float nx = wx / dstW; local
1580 const float nx = wx / dstW; local
1754 const float nx = wx / dstW; local
1921 const float nx = wx / dstW; local
2030 const float nx = wx / dstW; local
2227 const float nx = wx / dstW; local
2402 const float nx = wx / dstW; local
2516 const float nx = wx / dstW; local
2638 const float nx = wx / dstW; local
[all...]
/external/aac/libAACdec/src/
H A Dblock.h253 USHORT nx=16-x;
254 UINT temp=(r0)*nx+(r1)*x;
/external/libconstrainedcrypto/
H A Dp256_ec.c1043 /* scalar_base_mult sets {nx,ny,nz} = scalar*G where scalar is a little-endian
1046 static void scalar_base_mult(felem nx, felem ny, felem nz, argument
1055 memset(nx, 0, sizeof(felem));
1063 point_double(nx, ny, nz, nx, ny, nz);
1077 * {nx,ny,nz} != {px,py,1}, unless both are zero, which we handle
1079 point_add_mixed(tx, ty, tz, nx, ny, nz, px, py);
1080 /* The result of point_add_mixed is incorrect if {nx,ny,nz} is zero
1083 copy_conditional(nx, px, n_is_infinity_mask);
1089 * only copying from {tx,ty,tz} to {nx,n
1103 point_to_affine(felem x_out, felem y_out, const felem nx, const felem ny, const felem nz) argument
1114 scalar_mult(felem nx, felem ny, felem nz, const felem x, const felem y, const p256_int* scalar) argument
[all...]
/external/syslinux/extlinux/
H A Dmountinfo.c65 struct mountinfo *nx; local
73 nx = m->next;
75 m = nx;
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11gears/
H A Dd3d11gears.cpp73 vertex(float x, float y, float z, float nx, float ny, float nz) argument
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/clang/test/SemaCXX/
H A Dnamespace-alias.cpp116 A::X nx; variable
/external/mesa3d/src/gallium/drivers/nv50/
H A Dnv50_resource.h35 nvc0_tex_choose_tile_dims(unsigned nx, unsigned ny, unsigned nz);
H A Dnv50_miptree.c32 nv50_tex_choose_tile_dims(unsigned nx, unsigned ny, unsigned nz) argument
34 return nvc0_tex_choose_tile_dims(nx, ny * 2, nz);
/external/syslinux/com32/modules/
H A Dcpuidtest.c113 if (cpu.flags.nx)
114 printf("nx ");
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DArabicShaping.java1643 int nx = -2;
1650 nx = -2;
1651 while (nx < 0) { // we need to know about next char
1654 nx = Integer.MAX_VALUE;
1658 nx = nw;
1748 if (i == nx) {
1750 nx = -2;
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DArabicShaping.java1691 int nx = -2;
1698 nx = -2;
1699 while (nx < 0) { // we need to know about next char
1702 nx = Integer.MAX_VALUE;
1706 nx = nw;
1796 if (i == nx) {
1798 nx = -2;
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/
H A DvktShaderRenderBuiltinVarTests.cpp288 inline float projectedTriInterpolate (const Vec3& s, const Vec3& w, float nx, float ny) argument
290 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]);
/external/deqp/modules/gles2/functional/
H A Des2fShaderBuiltinVarTests.cpp357 static inline float projectedTriInterpolate (const tcu::Vec3& s, const tcu::Vec3& w, float nx, float ny) argument
359 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]);
/external/pdfium/xfa/fxfa/app/
H A Dxfa_ffwidget.cpp1262 FX_FLOAT nx = 1.0f; local
1283 nx = -1, ny = 0;
1302 nx = 0, ny = -1;
1321 nx = 1, ny = 0;
1341 nx = 0;
1355 path.LineTo(CFX_PointF(cp2.x + fRadius2 * nx + offsetEX,
1449 FX_FLOAT nx = 1.0f; local
1466 nx = -1, ny = 0;
1477 nx = 0, ny = -1;
1488 nx
[all...]

Completed in 1080 milliseconds

1234