HomeSort by relevance Sort by last modified time
    Searched refs:xi (Results 1 - 25 of 135) sorted by null

1 2 3 4 5 6

  /external/clang/test/SemaTemplate/
enum-forward.cpp 8 X<int> xi; variable
instantiate-field.cpp 14 void test1(const X<int> *xi) {
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;
  /external/clang/test/CodeGenCXX/
debug-info-fn-template.cpp 9 T fx(XF<T> xi) {
10 return xi.member;
implicit-instantiation-1.cpp 13 void foo(X<int> &xi, X<float> *xfp, int i, float f) {
15 xi.f(i);
18 xi.g(f);
visibility-hidden-extern-templates.cpp 16 void test_X(X<int> xi, X<char> xc) {
18 xi.f();
20 xi.g();
  /external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
p14.cpp 36 void test(X<int> xi) {
39 xi.f();
40 xi.g();
41 xi.h();
p19.cpp 20 void test(X<int> xi, X<long> xl, float *fp) {
23 xi.f(17, 25);
24 xi.f(17, 3.14159);
25 xi.f(17, fp); // expected-note{{instantiation}}
  /external/chromium_org/third_party/openssl/openssl/crypto/pem/
pem_info.c 93 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->x509)
    [all...]
  /external/openssl/crypto/pem/
pem_info.c 93 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->x509)
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.friend/
p4.cpp 24 X2<int> xi; local
25 f(xi);
41 X3<int> xi; local
42 h(xi);
  /external/valgrind/main/none/tests/s390x/
xor.c 7 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/
opus_compare.c 59 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<_nframes;xi++)
178 size_t xi; local
    [all...]
  /external/libopus/src/
opus_compare.c 59 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<_nframes;xi++)
178 size_t xi; local
    [all...]
  /external/clang/test/CXX/temp/temp.spec/temp.explicit/
p9-linkage.cpp 31 int *&test(X0<int*> xi, int *ip) {
33 xi.f(ip);
35 xi.g(ip);
37 xi.h(ip);
p9.cpp 31 int *&test(X0<int*> xi, int *ip) {
32 xi.f(ip); // expected-note{{instantiation}}
33 xi.g(ip); // expected-note{{instantiation}}
34 xi.h(ip);
  /external/chromium_org/third_party/webrtc/modules/audio_processing/aec/
aec_rdft_mips.c 16 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 = a[89]
973 float wkr, wki, xr, xi, yr, yi; local
1089 float wkr, wki, xr, xi, yr, yi; local
    [all...]
  /external/chromium_org/third_party/opus/src/silk/
interpolate.c 36 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/
interpolate.c 36 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/openssl/openssl/crypto/x509/
x509_r2x.c 71 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/openssl/crypto/x509/
x509_r2x.c 71 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/WebKit/Source/core/rendering/shapes/
RectangleShape.cpp 77 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/
p16.cpp 27 } catch (X<int> xi) { // expected-note{{instantiation}}
  /external/chromium_org/third_party/openssl/openssl/crypto/modes/asm/
ghash-ia64.pl 61 ($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
96 Xi=r24; Htbl=r25;
109 $ADDP Xi=15,in0 // &Xi[15]
118 .rotr in[3],xi[3],Hi[2
    [all...]
  /external/openssl/crypto/modes/asm/
ghash-ia64.pl 61 ($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
96 Xi=r24; Htbl=r25;
109 $ADDP Xi=15,in0 // &Xi[15]
118 .rotr in[3],xi[3],Hi[2
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/source/
transform.c 54 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 490 milliseconds

1 2 3 4 5 6