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

1 2 3 4 5

  /external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.scoped/
mutex.fail.cpp 29 M n0, n1, n2; local
39 test_conversion<LG>({n0}); // expected-error{{no matching function for call}}
45 test_conversion<LG>({n0, n1}); // expected-error{{no matching function for call}}
51 test_conversion<LG>({n0, n1, n2}); // expected-error{{no matching function for call}}
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/thread/thread.mutex/thread.lock/thread.lock.scoped/
mutex.fail.cpp 29 M n0, n1, n2; local
39 test_conversion<LG>({n0}); // expected-error{{no matching function for call}}
45 test_conversion<LG>({n0, n1}); // expected-error{{no matching function for call}}
51 test_conversion<LG>({n0, n1, n2}); // expected-error{{no matching function for call}}
  /external/brotli/java/org/brotli/dec/
DictionaryData.java 23 int n0 = data0.length(); local
    [all...]
  /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)
  /external/tensorflow/tensorflow/core/kernels/
concat_op_test.cc 140 const size_t n0 = data1.size(); local
142 float* result = new float[n0 + n1];
143 memcpy(&result[0], &data1[0], n0 * sizeof(float));
144 memcpy(&result[n0], &data2[0], n1 * sizeof(float));
  /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 163 to->n0[0] = from->n0[0];
164 to->n0[1] = from->n0[1];
197 // Find n0 such that n0 * N == -1 (mod r).
199 // Only certain BN_BITS2<=32 platforms actually make use of n0[1]. For the
203 uint64_t n0 = bn_mont_n0(&mont->N); local
204 mont->n0[0] = (BN_ULONG)n0;
272 BN_ULONG n0 = mont->n0[0]; 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);
308 BN_ULONG n0, n1, rm = 0; local
310 n0 = wnump[0];
312 if (n0 == d0) {
315 // n0 < d0
316 bn_div_rem_words(&q, &rm, n0, n1, d0)
    [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...]
  /device/linaro/bootloader/OpenPlatformPkg/Drivers/I2c/MvI2cDxe/
MvI2cDxe.c 340 UINTN m, n, m0, n0; local
342 /* Read initial m0, n0 values from register */
345 n0 = I2C_N_FROM_BAUD(baud);
355 n0 = n;
360 rate->raw = I2C_BAUD_RATE_RAW(clk, m0, n0);
361 rate->param = I2C_BAUD_RATE_PARAM(m0, n0);
363 rate->n = n0;
  /external/boringssl/src/crypto/fipsmodule/ec/
simple.c 310 BIGNUM *n0, *n1, *n2, *n3, *n4, *n5, *n6; local
335 n0 = BN_CTX_get(ctx);
360 if (!field_sqr(group, n0, &b->Z, ctx) ||
361 !field_mul(group, n1, &a->X, n0, ctx)) {
366 if (!field_mul(group, n0, n0, &b->Z, ctx) ||
367 !field_mul(group, n2, &a->Y, n0, ctx)) {
382 if (!field_sqr(group, n0, &a->Z, ctx) ||
383 !field_mul(group, n3, &b->X, n0, ctx)) {
388 if (!field_mul(group, n0, n0, &a->Z, ctx) |
502 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...]

Completed in 303 milliseconds

1 2 3 4 5