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

1 2 3 4

  /external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.guard/
variadic_mutex.fail.cpp 30 M n0, n1, n2; local
40 test_conversion<LG>({n0, n1}); // expected-error{{no matching function for call}}
46 test_conversion<LG>({n0, n1, n2}); // expected-error{{no matching function for call}}
  /external/clang/test/Modules/
macros2.c 10 int n0 = TOP_OTHER_DEF_RIGHT_UNDEF; // ok variable
  /bionic/libc/upstream-openbsd/lib/libc/gdtoa/
gethex.c 48 int big, esign, havedig, irv, j, k, n, n0, nbits, up, zret; local
190 n0 = n = nbits >> kshift;
198 for(j = 0; j < n0; ++j)
200 if (n > n0)
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
FirstMoment.java 103 double n0 = n; local
105 nDev = dev / n0;
FourthMoment.java 97 double n0 = n; local
100 ((n0 * n0) - 3 * (n0 -1)) * (nDevSq * nDevSq * (n0 - 1) * n0);
ThirdMoment.java 93 double n0 = n; local
94 m3 = m3 - 3.0 * nDev * prevM2 + (n0 - 1) * (n0 - 2) * nDevSq * dev;
Kurtosis.java 185 double n0 = length; local
188 (n0 * (n0 + 1)) / ((n0 - 1) * (n0 - 2) * (n0 - 3));
190 (3 * FastMath.pow(n0 - 1, 2.0)) / ((n0 - 2) * (n0 - 3));
Skewness.java 111 double n0 = moment.getN(); local
112 return (n0 * moment.m3) /
113 ((n0 - 1) * (n0 -2) * FastMath.sqrt(variance) * variance);
182 double n0 = length; local
185 skew = (n0 / ((n0 - 1) * (n0 - 2))) * accum3;
  /external/eigen/unsupported/Eigen/src/FFT/
ei_fftw_impl.h 82 void fwd2( complex_type * dst,complex_type * src,int n0,int n1) {
83 if (m_plan==NULL) m_plan = fftwf_plan_dft_2d(n0,n1,src,dst,FFTW_FORWARD,FFTW_ESTIMATE|FFTW_PRESERVE_INPUT);
87 void inv2( complex_type * dst,complex_type * src,int n0,int n1) {
88 if (m_plan==NULL) m_plan = fftwf_plan_dft_2d(n0,n1,src,dst,FFTW_BACKWARD,FFTW_ESTIMATE|FFTW_PRESERVE_INPUT);
124 void fwd2( complex_type * dst,complex_type * src,int n0,int n1) {
125 if (m_plan==NULL) m_plan = fftw_plan_dft_2d(n0,n1,src,dst,FFTW_FORWARD,FFTW_ESTIMATE|FFTW_PRESERVE_INPUT);
129 void inv2( complex_type * dst,complex_type * src,int n0,int n1) {
130 if (m_plan==NULL) m_plan = fftw_plan_dft_2d(n0,n1,src,dst,FFTW_BACKWARD,FFTW_ESTIMATE|FFTW_PRESERVE_INPUT);
165 void fwd2( complex_type * dst,complex_type * src,int n0,int n1) {
166 if (m_plan==NULL) m_plan = fftwl_plan_dft_2d(n0,n1,src,dst,FFTW_FORWARD,FFTW_ESTIMATE|FFTW_PRESERVE_INPUT)
206 get_plan(n0,n1,false,dst,src).fwd2(fftw_cast(dst), fftw_cast(src) ,n0,n1); local
227 get_plan(n0,n1,true,dst,src).inv2(fftw_cast(dst), fftw_cast(src) ,n0,n1); local
    [all...]
  /external/libunwind/tests/
Gia64-test-stack.c 58 unw_word_t ip, sp, bsp, v0, v1, v2, v3, n0, n1, n2, n3, cfm, sof, sol, r32; local
83 n0 = n1 = n2 = n3 = 0;
86 || (ret = unw_get_reg (&c, UNW_IA64_NAT + reg, &n0)) < 0
98 n0 ? '*' : ' ', v0, n1 ? '*' : ' ', v1,
134 || (ret = unw_get_reg (&c, UNW_IA64_NAT + 33 + l, &n0)) < 0)
139 if (!n0)
144 if (n0)
  /cts/tests/tests/location/src/android/location/cts/psedorange/
SatelliteClockCorrectionCalculator.java 53 double n0 = Math.sqrt(EARTH_UNIVERSAL_GRAVITATIONAL_CONSTANT_M3_SM2 / (a * a * a)); local
55 double n = n0 + ephemerisProto.deltaN;
SatellitePositionCalculator.java 168 double n0 = Math.sqrt(UNIVERSAL_GRAVITATIONAL_PARAMETER_M3_SM2 / (a * a * a)); local
170 double n = n0 + ephemerisProto.deltaN;
  /external/boringssl/src/crypto/fipsmodule/bn/
montgomery.c 166 to->n0[0] = from->n0[0];
167 to->n0[1] = from->n0[1];
196 /* Find n0 such that n0 * N == -1 (mod r).
198 * Only certain BN_BITS2<=32 platforms actually make use of n0[1]. For the
202 uint64_t n0 = bn_mont_n0(mod); local
203 mont->n0[0] = (BN_ULONG)n0;
265 BN_ULONG *ap, *np, *rp, n0, v, carry; local
    [all...]
div.c 141 BN_ULONG n0, BN_ULONG n1, BN_ULONG d0) {
162 : "a"(n1), "d"(n0), "rm"(d0)
168 : "a"(n1), "d"(n0), "rm"(d0)
172 BN_ULLONG n = (((BN_ULLONG)n0) << BN_BITS2) | n1;
175 *quotient_out = bn_div_words(n0, n1, d0);
302 BN_ULONG n0, n1, rem = 0; local
304 n0 = wnump[0];
306 if (n0 == d0) {
309 /* n0 < d0 */
310 bn_div_rem_words(&q, &rem, n0, n1, d0)
    [all...]
exponentiation.c 128 const BN_ULONG *np, const BN_ULONG *n0, int num,
133 const BN_ULONG *np, const BN_ULONG *n0, int num, int power);
136 const BN_ULONG *n0, int num);
909 RSAZ_1024_mod_exp_avx2(rr->d, a->d, p->d, m->d, mont->RR.d, mont->n0[0]);
992 const BN_ULONG *n0 = mont->n0; local
1011 bn_mul_mont(tmp.d, am.d, am.d, np, n0, top);
1016 bn_mul_mont(tmp.d, tmp.d, tmp.d, np, n0, top);
1021 bn_mul_mont_gather5(tmp.d, am.d, powerbuf, np, n0, top, i - 1);
1024 bn_mul_mont(tmp.d, tmp.d, tmp.d, np, n0, top)
    [all...]
  /external/eigen/test/
nullary.cpp 158 Index n0 = VectorType::SizeAtCompileTime==Dynamic ? 0 : VectorType::SizeAtCompileTime; local
160 m = VectorType::LinSpaced(n0,low,low-1);
161 VERIFY(m.size()==n0);
165 VERIFY_IS_EQUAL(VectorType::LinSpaced(n0,0,Scalar(n0-1)).sum(),Scalar(0));
166 VERIFY_IS_EQUAL(VectorType::LinSpaced(n0,low,low-1).sum(),Scalar(0));
169 m.setLinSpaced(n0,0,Scalar(n0-1));
170 VERIFY(m.size()==n0);
171 m.setLinSpaced(n0,low,low-1)
    [all...]
sparse_block.cpp 192 Index n0 = internal::random<Index>(1,outer-(std::max)(j0,j1)); local
194 VERIFY_IS_APPROX(m2.innerVectors(j0,n0), refMat2.block(j0,0,n0,cols));
196 VERIFY_IS_APPROX(m2.innerVectors(j0,n0), refMat2.block(0,j0,rows,n0));
198 VERIFY_IS_APPROX(m2.innerVectors(j0,n0)+m2.innerVectors(j1,n0),
199 refMat2.middleRows(j0,n0)+refMat2.middleRows(j1,n0));
201 VERIFY_IS_APPROX(m2.innerVectors(j0,n0)+m2.innerVectors(j1,n0)
224 Index n0 = internal::random<Index>(1,outer-(std::max)(j0,j1)); local
    [all...]
geo_hyperplane.cpp 34 VectorType n0 = VectorType::Random(dim).normalized(); local
37 HyperplaneType pl0(n0, p0);
  /external/iputils/ninfod/
ninfod_name.c 212 const char *s0 = s, *n0 = n; local
219 if (*(s0 + slen - 1) || *(n0 + nlen - 1))
221 while (s < s0 + slen && n < n0 + nlen) {
224 if (s + *s + 1 > s0 + slen || n + *n + 1 > n0 + nlen)
236 if (n == n0 + nlen - 1) {
238 } else if (n + 1 == n0 + nlen - 1) {
  /external/syslinux/core/lwip/src/netif/ppp/
vj.c 470 struct pbuf *n0 = *nb; local
475 cp = (u_char *)n0->payload;
560 vjlen = (u_short)(cp - (u_char*)n0->payload);
561 if (n0->len < vjlen) {
567 n0->len, vjlen));
572 tmp = n0->tot_len - vjlen + cs->cs_hlen;
575 IPH_LEN_SET(&cs->cs_ip, htons(n0->tot_len - vjlen + cs->cs_hlen));
589 if(pbuf_header(n0, -((s16_t)(vjlen)))) {
595 if(LWIP_MEM_ALIGN(n0->payload) != n0->payload)
    [all...]
  /external/boringssl/src/crypto/fipsmodule/ec/
simple.c 379 BIGNUM *n0, *n1, *n2, *n3, *n4, *n5, *n6; local
404 n0 = BN_CTX_get(ctx);
430 if (!field_sqr(group, n0, &b->Z, ctx) ||
431 !field_mul(group, n1, &a->X, n0, ctx)) {
436 if (!field_mul(group, n0, n0, &b->Z, ctx) ||
437 !field_mul(group, n2, &a->Y, n0, ctx)) {
452 if (!field_sqr(group, n0, &a->Z, ctx) ||
453 !field_mul(group, n3, &b->X, n0, ctx)) {
458 if (!field_mul(group, n0, n0, &a->Z, ctx) |
572 BIGNUM *n0, *n1, *n2, *n3; local
    [all...]
  /external/boringssl/src/include/openssl/
bn.h 924 BN_ULONG n0[2]; \/* least significant words of (R*Ri-1)\/N *\/ member in struct:bn_mont_ctx_st
    [all...]
  /external/libvorbis/lib/
block.c 745 int n0=ci->blocksizes[0]>>(hs+1); local
781 float *pcm=v->pcm[j]+prevCenter+n1/2-n0/2;
783 for(i=0;i<n0;i++)
784 pcm[i]=pcm[i]*w[n0-i-1] +p[i]*w[i];
791 float *p=vb->pcm[j]+n1/2-n0/2;
792 for(i=0;i<n0;i++)
793 pcm[i]=pcm[i]*w[n0-i-1] +p[i]*w[i];
794 for(;i<n1/2+n0/2;i++)
801 for(i=0;i<n0;i++)
802 pcm[i]=pcm[i]*w[n0-i-1] +p[i]*w[i]
939 int n0=ci->blocksizes[0]>>(hs+1); local
    [all...]
  /external/libvpx/libvpx/vp9/common/
vp9_entropy.c 1068 const int n0 = counts[i][j][k][l][ZERO_TOKEN]; local
    [all...]
  /frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/engine/
Quaternion.java 125 double n0 = 2 * (x[0] * (v0 * x[0] - (x[2] * v2 - x[3] * v1)) + s * x[1]) - v0; local
129 return new double[]{n0, n1, n2};

Completed in 389 milliseconds

1 2 3 4