Searched defs:xi (Results 1 - 25 of 59) sorted by relevance

123

/external/clang/test/CodeGenCXX/
H A Ddebug-info-fn-template.cpp9 T fx(XF<T> xi) { argument
10 return xi.member;
H A Dvisibility-hidden-extern-templates.cpp16 void test_X(X<int> xi, X<char> xc) { argument
18 xi.f();
20 xi.g();
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);
/external/clang/test/SemaTemplate/
H A Denum-forward.cpp8 X<int> xi; variable
H A Dextern-templates.cpp27 void test_intptr(X0<int*> xi, X0<int*>::Inner xii) { argument
28 xi.f(0);
H A Dinstantiate-type.cpp27 X<int> xi; member in namespace:rdar13094134
H A Dtemplate-id-expr.cpp27 void test_X0_int(X0<int> xi, float f) { argument
28 xi.f2(f);
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 Dinjected-class-name.cpp14 X<float>::X<int> xi = x; // expected-error{{qualified reference to 'X' is a constructor name rather than a template name wherever a constructor can be declared}} 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-member-class.cpp40 X<int>::X *xi; // expected-error{{qualified reference to 'X' is a constructor name rather than a type wherever a constructor can be declared}} variable
45 xi = xf; // expected-error{{assigning to 'X<int>::X<int> *' from incompatible type 'X<float>::X<float> *'}}
H A Dconstructor-template.cpp50 void test_X1(X1<int> xi) { argument
51 Outer<int> oi(xi);
52 Outer<float> of(xi);
H A Dtypename-specifier-4.cpp158 void test_X(X<HasIterator> xi) { // expected-note{{in instantiation of template class}} argument
159 xi.f();
H A Dvirtual-member-functions.cpp105 void test_X(X<int> &xi, X<float> &xf) { argument
106 xi.f();
/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/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/clang/test/CXX/temp/temp.spec/
H A Dp5.cpp44 X<int> xi; member in namespace:NestedClassRedecls
/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.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/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/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/testng/src/main/java/org/testng/internal/
H A DYaml.java189 for (XmlInclude xi : im) {
190 toYaml(result, sp2 + " ", xi);
200 private static void toYaml(StringBuilder result, String sp2, XmlInclude xi) { argument
201 result.append(sp2 + "- " + xi.getName()).append("\n");
/external/eigen/Eigen/src/Eigenvalues/
H A DEigenSolver.h422 std::complex<Scalar> cdiv(const Scalar& xr, const Scalar& xi, const Scalar& yr, const Scalar& yi) argument
430 return std::complex<Scalar>((xr + r*xi)/d, (xi - r*xr)/d);
436 return std::complex<Scalar>((r*xr + xi)/d, (r*xi - xr)/d);

Completed in 714 milliseconds

123