/external/opencv/cxcore/src/ |
D | cxdxt.cpp | 439 int n0 = n, f_idx, nx; in icvDFT_64fc() local 552 nx = n; in icvDFT_64fc() 563 v1 = v0 + nx*2; in icvDFT_64fc() 566 r1 = v0[nx].re; i1 = v0[nx].im; in icvDFT_64fc() 571 i3 = v1[nx].re; r3 = v1[nx].im; in icvDFT_64fc() 579 v0[nx].re = r2 + r3; v0[nx].im = i2 + i3; in icvDFT_64fc() 580 v1[nx].re = r2 - r3; v1[nx].im = i2 - i3; in icvDFT_64fc() 582 for( j = 1, dw = dw0; j < nx; j++, dw += dw0 ) in icvDFT_64fc() 585 v1 = v0 + nx*2; in icvDFT_64fc() 587 r2 = v0[nx].re*wave[dw*2].re - v0[nx].im*wave[dw*2].im; in icvDFT_64fc() [all …]
|
/external/llvm/test/Object/ |
D | objdump-symbol-table.test | 12 COFF-i386: [ 0](sec 1)(fl 0x00)(ty 0)(scl 3) (nx 1) 0x00000000 .text 14 COFF-i386: [ 2](sec 2)(fl 0x00)(ty 0)(scl 3) (nx 1) 0x00000000 .data 16 COFF-i386: [ 4](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000000 _main 17 COFF-i386: [ 5](sec 2)(fl 0x00)(ty 0)(scl 3) (nx 0) 0x00000000 L_.str 18 COFF-i386: [ 6](sec 0)(fl 0x00)(ty 0)(scl 2) (nx 0) 0x00000000 _puts 19 COFF-i386: [ 7](sec 0)(fl 0x00)(ty 0)(scl 2) (nx 0) 0x00000000 _SomeOtherFunction
|
/external/fdlibm/ |
D | 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);
|
D | k_rem_pio2.c | 164 int __kernel_rem_pio2(double *x, double *y, int e0, int nx, int prec, const int *ipio2) in __kernel_rem_pio2() argument 166 int __kernel_rem_pio2(x,y,e0,nx,prec,ipio2) in __kernel_rem_pio2() 167 double x[], y[]; int e0,nx,prec; int ipio2[]; in __kernel_rem_pio2() 178 jx = nx-1;
|
/external/opencv/cv/src/ |
D | cvcamshift.cpp | 97 int dx, dy, nx, ny; in cvMeanShift() local 111 nx = cur_rect.x + dx; in cvMeanShift() 114 if( nx < 0 ) in cvMeanShift() 115 nx = 0; in cvMeanShift() 116 else if( nx + cur_rect.width > mat->cols ) in cvMeanShift() 117 nx = mat->cols - cur_rect.width; in cvMeanShift() 124 dx = nx - cur_rect.x; in cvMeanShift() 126 cur_rect.x = nx; in cvMeanShift()
|
D | cvsmooth.cpp | 805 int nx = (m + 1)/2 - 1; in icvMedianBlur_8u_CnR_Om() local 816 if( size.height < nx || size.width < nx ) in icvMedianBlur_8u_CnR_Om() 899 nx++; in icvMedianBlur_8u_CnR_Om() 901 if( nx < m ) in icvMedianBlur_8u_CnR_Om() 902 x0 = x < m/2 ? 0 : (nx-1)*cn; in icvMedianBlur_8u_CnR_Om() 915 UPDATE_ACC01( src_bottom[x0+c], c, += (m - nx) ); in icvMedianBlur_8u_CnR_Om() 916 for( k = 0; k < nx*cn; k += cn ) in icvMedianBlur_8u_CnR_Om() 922 UPDATE_ACC01( src_bottom[x0+c], c, += (m - nx)*(m/2+1) ); in icvMedianBlur_8u_CnR_Om() 923 for( k = 0; k < nx*cn; k += cn ) in icvMedianBlur_8u_CnR_Om() 960 for( k = 0; k < nx; k++ ) in icvMedianBlur_8u_CnR_Om() [all …]
|
/external/skia/src/effects/ |
D | SkEmbossMask.cpp | 109 int nx = alpha[x + neq_to_one(x, maxx)] - alpha[x - nonzero_to_one(x)]; in Emboss() local 112 SkFixed numer = lx * nx + ly * ny + lz_dot_nz; in Emboss() 118 int denom = SkSqrt32(nx * nx + ny * ny + kDelta*kDelta); in Emboss() 126 …SkFixed dot = (unsigned)(numer >> 4) * gInvSqrtTable[(SkAbs32(nx) >> 1 << 7) | (SkAbs32(ny) >> 1)]… in Emboss()
|
/external/v8/third_party/fdlibm/ |
D | fdlibm.cc | 116 int __kernel_rem_pio2(double* x, double* y, int e0, int nx) { in __kernel_rem_pio2() argument 119 int32_t jx = nx - 1; in __kernel_rem_pio2() 270 int nx = 3; in rempio2() local 271 while (tx[nx - 1] == zero) nx--; in rempio2() 272 int n = __kernel_rem_pio2(tx, y, e0, nx); in rempio2()
|
/external/deqp/modules/gles2/accuracy/ |
D | es2aVaryingInterpolationTests.cpp | 58 static inline float projectedTriInterpolate (const tcu::Vec3& s, const tcu::Vec3& w, float nx, floa… in projectedTriInterpolate() argument 60 …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/… in projectedTriInterpolate() 79 float nx = wx / dstW; in renderReference() local 82 int triNdx = nx + ny >= 1.0f ? 1 : 0; in renderReference() 83 float triNx = triNdx ? 1.0f - nx : nx; in renderReference()
|
/external/deqp/modules/gles3/accuracy/ |
D | es3aVaryingInterpolationTests.cpp | 61 static inline float projectedTriInterpolate (const tcu::Vec3& s, const tcu::Vec3& w, float nx, floa… in projectedTriInterpolate() 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/… in projectedTriInterpolate() 82 float nx = wx / dstW; in renderReference() local 85 int triNdx = nx + ny >= 1.0f ? 1 : 0; in renderReference() 86 float triNx = triNdx ? 1.0f - nx : nx; in renderReference()
|
/external/skia/tools/skpdiff/ |
D | SkPMetric.cpp | 233 int nx = x; in convolve() local 247 nx += xx; in convolve() 248 if (nx < 0) { in convolve() 249 nx = -nx; in convolve() 251 if (nx >= imageL->width) { in convolve() 252 nx = imageL->width + (imageL->width - nx - 1); in convolve() 257 lSum += rowPtrs[ny - y + radius][nx] * weight; in convolve()
|
/external/deqp/modules/glshared/ |
D | glsTextureTestUtil.cpp | 328 static inline float projectedTriInterpolate (const tcu::Vec3& s, const tcu::Vec3& w, float nx, floa… in projectedTriInterpolate() argument 330 …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/… in projectedTriInterpolate() 339 …nline float triDerivateY (const tcu::Vec3& s, const tcu::Vec3& w, float wy, float height, float nx) in triDerivateY() argument 341 float d = w[1]*w[2]*(height*(nx - 1.0f) + wy) - w[0]*(w[1]*height*nx + w[2]*wy); in triDerivateY() 342 …return (w[0]*w[1]*w[2]*height * (w[2]*(s[0] - s[1])*(nx - 1.0f) + nx*(w[0]*(s[1] - s[2]) + w[1]*(s… in triDerivateY() 523 float nx = wx / dstW; in sampleTextureProjected() local 526 int triNdx = nx + ny >= 1.0f ? 1 : 0; in sampleTextureProjected() 529 float triNx = triNdx ? 1.0f - nx : nx; in sampleTextureProjected() 566 float nx = wx / dstW; in sampleTextureProjected() local 569 int triNdx = nx + ny >= 1.0f ? 1 : 0; in sampleTextureProjected() [all …]
|
/external/fonttools/Lib/fontTools/pens/ |
D | basePen.py | 266 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/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11gears/ |
D | d3d11gears.cpp | 73 vertex(float x, float y, float z, float nx, float ny, float nz) in vertex() 78 normal[0] = nx; in vertex() 84 #define VERT(x, y, z) vertices.push_back(vertex((x), (y), (z), (nx), (ny), (nz))) 91 float nx, ny, nz; in build_gear() local 126 nx = 0.0f; in build_gear() 190 nx = -dy / len; in build_gear() 210 nx = -dc[i]; in build_gear()
|
/external/aac/libAACdec/src/ |
D | block.h | 253 USHORT nx=16-x; in EvaluatePower43() local 254 UINT temp=(r0)*nx+(r1)*x; in EvaluatePower43()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | ArabicShaping.java | 1686 int nx = -2; in shapeUnicode() local 1693 nx = -2; in shapeUnicode() 1694 while (nx < 0) { // we need to know about next char in shapeUnicode() 1697 nx = Integer.MAX_VALUE; in shapeUnicode() 1701 nx = nw; in shapeUnicode() 1791 if (i == nx) { in shapeUnicode() 1793 nx = -2; in shapeUnicode()
|
/external/valgrind/gdbserver_tests/ |
D | mcclean_after_fork.vgtest | 7 argsB: --quiet -l 60 --nx ./clean_after_fork
|
D | mssnapshot.vgtest | 8 argsB: --quiet -l 60 --nx ./t
|
D | nlgone_abrt.vgtest | 9 argsB: --quiet -l 60 --nx ./gone
|
D | mcvabits.vgtest | 9 argsB: --quiet -l 60 --nx ./t
|
D | nlgone_return.vgtest | 9 argsB: --quiet -l 60 --nx ./gone
|
D | mcbreak.vgtest | 9 argsB: --quiet -l 60 --nx ./t
|
D | hginfo.vgtest | 9 argsB: --quiet -l 60 --nx ../helgrind/tests/hg01_all_ok
|
D | mcsigpass.vgtest | 8 argsB: --quiet -l 60 --nx ../none/tests/faultstatus
|
/external/deqp/modules/gles2/functional/ |
D | es2fShaderBuiltinVarTests.cpp | 357 static inline float projectedTriInterpolate (const tcu::Vec3& s, const tcu::Vec3& w, float nx, floa… in projectedTriInterpolate() 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/… in projectedTriInterpolate()
|