Searched refs:xi (Results 1 - 25 of 106) sorted by relevance

12345

/external/clang/test/CodeGenCXX/
H A Ddebug-info-fn-template.cpp9 T fx(XF<T> xi) { argument
10 return xi.member;
H A Dimplicit-instantiation-1.cpp13 void foo(X<int> &xi, X<float> *xfp, int i, float f) { argument
15 xi.f(i);
18 xi.g(f);
H A Dvisibility-hidden-extern-templates.cpp16 void test_X(X<int> xi, X<char> xc) { argument
18 xi.f();
20 xi.g();
/external/clang/test/SemaTemplate/
H A Denum-forward.cpp8 X<int> xi; variable
H A Dinstantiate-field.cpp14 void test1(const X<int> *xi) { argument
15 int i1 = xi->x;
16 const int &i2 = xi->y;
17 int* ip1 = xi->z;
18 int i3 = xi->bitfield;
19 xi->x2 = 17;
H A Dinstantiate-type.cpp27 X<int> xi; member in namespace:rdar13094134
H A Dcopy-ctor-assign.cpp32 void test3(X<int> &x, X<int> xi, X<long> xl, X<int Y::*> xmptr) { argument
33 x = xi;
H A Dextern-templates.cpp27 void test_intptr(X0<int*> xi, X0<int*>::Inner xii) { argument
28 xi.f(0);
H A Dtemplate-id-expr.cpp27 void test_X0_int(X0<int> xi, float f) { argument
28 xi.f2(f);
/external/clang/test/CXX/temp/temp.decls/temp.friend/
H A Dp4.cpp24 X2<int> xi; local
25 f(xi);
41 X3<int> xi; local
42 h(xi);
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
H A Dp14.cpp36 void test(X<int> xi) { argument
39 xi.f();
40 xi.g();
41 xi.h();
H A Dp19.cpp20 void test(X<int> xi, X<long> xl, float *fp) { argument
23 xi.f(17, 25);
24 xi.f(17, 3.14159);
25 xi.f(17, fp); // expected-note{{instantiation}}
/external/boringssl/src/crypto/pem/
H A Dpem_info.c95 X509_INFO *xi=NULL; local
117 if ((xi=X509_INFO_new()) == NULL) goto err;
138 if (xi->x509 != NULL)
140 if (!sk_X509_INFO_push(ret,xi)) goto err;
141 if ((xi=X509_INFO_new()) == NULL) goto err;
144 pp=&(xi->x509);
149 if (xi->x509 != NULL)
151 if (!sk_X509_INFO_push(ret,xi)) goto err;
152 if ((xi=X509_INFO_new()) == NULL) goto err;
155 pp=&(xi
312 PEM_X509_INFO_write_bio(BIO *bp, X509_INFO *xi, EVP_CIPHER *enc, unsigned char *kstr, int klen, pem_password_cb *cb, void *u) argument
[all...]
/external/valgrind/none/tests/s390x/
H A Dxor.c7 memimmsweep(xi, 0);
8 memimmsweep(xi, 255);
9 memimmsweep(xi, 128);
10 memimmsweep(xi, 0xaa);
11 memimmsweep(xi, 0x55);
/external/libopus/src/
H A Dopus_compare.c59 size_t xi; local
72 for(xi=0;xi<nread;xi++){
76 s=buf[2*(xi*_nchannels+ci)+1]<<8|buf[2*(xi*_nchannels+ci)];
78 samples[(nsamples+xi)*_nchannels+ci]=s;
95 size_t xi; local
112 for(xi=0;xi<_nframe
178 size_t xi; local
[all...]
/external/clang/test/CXX/temp/temp.spec/temp.explicit/
H A Dp9-linkage.cpp31 int *&test(X0<int*> xi, int *ip) { argument
33 xi.f(ip);
35 xi.g(ip);
37 xi.h(ip);
H A Dp9.cpp31 int *&test(X0<int*> xi, int *ip) { argument
32 xi.f(ip); // expected-note{{instantiation}}
33 xi.g(ip); // expected-note{{instantiation}}
34 xi.h(ip);
/external/libopus/silk/
H A Dinterpolate.c36 opus_int16 xi[ MAX_LPC_ORDER ], /* O interpolated vector */
49 xi[ i ] = (opus_int16)silk_ADD_RSHIFT( x0[ i ], silk_SMULBB( x1[ i ] - x0[ i ], ifact_Q2 ), 2 );
/external/boringssl/src/crypto/x509/
H A Dx509_r2x.c70 X509_CINF *xi=NULL; local
80 xi=ret->cert_info;
84 if ((xi->version=M_ASN1_INTEGER_new()) == NULL) goto err;
85 if (!ASN1_INTEGER_set(xi->version,2)) goto err;
86 /* xi->extensions=ri->attributes; <- bad, should not ever be done
96 if (X509_gmtime_adj(xi->validity->notBefore,0) == NULL)
98 if (X509_gmtime_adj(xi->validity->notAfter,(long)60*60*24*days) == NULL)
/external/webrtc/webrtc/modules/audio_processing/aec/
H A Daec_rdft_mips.c16 float xr, xi, yr, yi; local
19 xi = a[9];
25 a[17] = xi;
28 xi = a[65];
34 a[3] = xi;
37 xi = a[73];
43 a[19] = xi;
46 xi = a[81];
52 a[11] = xi;
55 xi
[all...]
/external/clang/test/CXX/except/except.handle/
H A Dp16.cpp27 } catch (X<int> xi) { // expected-note{{instantiation}}
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
H A Dtransform.c46 double tmp1r, tmp1i, xr, xi, yr, yi, fact; local
70 xi = tmpim[k] - tmpim[FRAMESAMPLES_HALF - 1 - k];
75 outreQ7[k] = (int16_t)WebRtcIsac_lrint((xr * tmp1r - xi * tmp1i) * 128.0);
76 outimQ7[k] = (int16_t)WebRtcIsac_lrint((xr * tmp1i + xi * tmp1r) * 128.0);
89 double tmp1r, tmp1i, xr, xi, yr, yi, fact; local
100 xi = inim[k] * tmp1r - inre[k] * tmp1i;
107 outre2[k] = xi + yr;
108 outre2[FRAMESAMPLES_HALF - 1 - k] = -xi + yr;
/external/libvpx/libvpx/third_party/libyuv/source/
H A Dscale_common.cc405 int xi = x >> 16; local
406 int a = src_ptr[xi];
407 int b = src_ptr[xi + 1];
410 xi = x >> 16;
411 a = src_ptr[xi];
412 b = src_ptr[xi + 1];
418 int xi = x >> 16; local
419 int a = src_ptr[xi];
420 int b = src_ptr[xi + 1];
430 int64 xi local
443 int64 xi = x >> 16; local
458 int xi = x >> 16; local
471 int xi = x >> 16; local
483 int64 xi = x >> 16; local
496 int64 xi = x >> 16; local
804 int xi = x >> 16; local
819 int xi = x >> 16; local
834 int64 xi = x >> 16; local
849 int64 xi = x >> 16; local
[all...]
/external/clang/test/CXX/temp/temp.spec/
H A Dp5.cpp44 X<int> xi; member in namespace:NestedClassRedecls
/external/eigen/Eigen/src/Jacobi/
H A DJacobi.h338 Scalar xi = x[i];
340 x[i] = c * xi + numext::conj(s) * yi;
341 y[i] = -s * xi + numext::conj(c) * yi;
351 Packet xi = pload<Packet>(px);
353 pstore(px, padd(pmul(pc,xi),pcj.pmul(ps,yi)));
354 pstore(py, psub(pcj.pmul(pc,yi),pmul(ps,xi)));
364 Packet xi = ploadu<Packet>(px);
368 pstoreu(px, padd(pmul(pc,xi),pcj.pmul(ps,yi)));
370 pstore (py, psub(pcj.pmul(pc,yi),pmul(ps,xi)));
377 Packet xi
[all...]

Completed in 598 milliseconds

12345