Searched refs:xi (Results 1 - 25 of 109) 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
/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/chromium_org/third_party/boringssl/src/crypto/pem/
H A Dpem_info.c94 X509_INFO *xi=NULL; local
116 if ((xi=X509_INFO_new()) == NULL) goto err;
137 if (xi->x509 != NULL)
139 if (!sk_X509_INFO_push(ret,xi)) goto err;
140 if ((xi=X509_INFO_new()) == NULL) goto err;
143 pp=&(xi->x509);
148 if (xi->x509 != NULL)
150 if (!sk_X509_INFO_push(ret,xi)) goto err;
151 if ((xi=X509_INFO_new()) == NULL) goto err;
154 pp=&(xi
311 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/openssl/crypto/pem/
H A Dpem_info.c93 X509_INFO *xi=NULL; local
115 if ((xi=X509_INFO_new()) == NULL) goto err;
136 if (xi->x509 != NULL)
138 if (!sk_X509_INFO_push(ret,xi)) goto err;
139 if ((xi=X509_INFO_new()) == NULL) goto err;
142 pp=&(xi->x509);
147 if (xi->x509 != NULL)
149 if (!sk_X509_INFO_push(ret,xi)) goto err;
150 if ((xi=X509_INFO_new()) == NULL) goto err;
153 pp=&(xi
314 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/main/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/chromium_org/third_party/opus/src/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/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/chromium_org/third_party/opus/src/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/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/chromium_org/third_party/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/openssl/crypto/x509/
H A Dx509_r2x.c71 X509_CINF *xi=NULL; local
81 xi=ret->cert_info;
85 if ((xi->version=M_ASN1_INTEGER_new()) == NULL) goto err;
86 if (!ASN1_INTEGER_set(xi->version,2)) goto err;
87 /* xi->extensions=ri->attributes; <- bad, should not ever be done
97 if (X509_gmtime_adj(xi->validity->notBefore,0) == NULL)
99 if (X509_gmtime_adj(xi->validity->notAfter,(long)60*60*24*days) == NULL)
/external/chromium_org/third_party/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/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
H A DRectangleShape.cpp77 float xi = ellipseXIntercept(yi, marginRadiusX, marginRadiusY); local
78 x1 = bounds.x() + marginRadiusX - xi;
79 x2 = bounds.maxX() - marginRadiusX + xi;
82 float xi = ellipseXIntercept(yi, marginRadiusX, marginRadiusY); local
83 x1 = bounds.x() + marginRadiusX - xi;
84 x2 = bounds.maxX() - marginRadiusX + xi;
/external/clang/test/CXX/except/except.handle/
H A Dp16.cpp27 } catch (X<int> xi) { // expected-note{{instantiation}}
/external/openssl/crypto/modes/asm/
H A Dghash-ia64.pl61 ($p17) xor xi[1]=xi[1],in[1] };;
65 (p18) and Hi[1]=mask0xf0,xi[2] };;
74 { .mfi; (p17) shladd Hi[0]=xi[1],4,r0
80 { .mmi; (p16) ld1 xi[0]=[Xi],-1
118 .rotr in[3],xi[3],Hi[2]
120 { .mib; ld1 xi[2]=[Xi],-1 // Xi[15]
123 { .mmi; ld1 xi[1]=[Xi],-1 // Xi[14]
125 { .mii; shladd Hi[1]=xi[2],4,r0
256 @xi
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/source/
H A Dtransform.c54 double tmp1r, tmp1i, xr, xi, yr, yi, fact; local
78 xi = tmpim[k] - tmpim[FRAMESAMPLES_HALF - 1 - k];
83 outreQ7[k] = (int16_t)WebRtcIsac_lrint((xr * tmp1r - xi * tmp1i) * 128.0);
84 outimQ7[k] = (int16_t)WebRtcIsac_lrint((xr * tmp1i + xi * tmp1r) * 128.0);
95 double tmp1r, tmp1i, xr, xi, yr, yi, fact; local
106 xi = inim[k] * tmp1r - inre[k] * tmp1i;
113 outre2[k] = xi + yr;
114 outre2[FRAMESAMPLES_HALF - 1 - k] = -xi + yr;

Completed in 623 milliseconds

12345