Searched defs:xp (Results 1 - 25 of 46) sorted by relevance

12

/external/clang/test/CXX/expr/expr.mptr.oper/
H A Dp6-0x.cpp15 void test(X *xp, int (X::*pmf)(int), int (X::*l_pmf)(int) &, argument
21 (xp->*pmf)(17);
27 (xp->*l_pmf)(17);
33 (xp->*r_pmf)(17); // expected-error-re{{pointer-to-member function type 'int (X::*)(int){{( __attribute__\(\(thiscall\)\))?}} &&' can only be called on an rvalue}}
/external/clang/test/CXX/class.derived/class.virtual/
H A Dp12.cpp12 // CHECK: xp->test24_B::wibble()
17 void foo(test24_B *xp) { argument
18 xp->test24_B::wibble();
/external/chromium_org/ui/events/x/
H A Ddevice_list_cache_x.cc31 std::map<Display*, XDeviceList>::iterator xp; local
32 for (xp = x_dev_list_map_.begin(); xp != x_dev_list_map_.end(); xp++) {
33 if (xp->second.devices)
34 XFreeDeviceList(xp->second.devices);
/external/clang/test/CXX/basic/basic.def.odr/
H A Dp2-typeid.cpp28 void test(X<Poly> xp, X<Poly, Poly&> xpr, X<NonPoly> xnp, X<NonPoly, NonPoly&> xnpr) { argument
30 xp.g(Poly());
/external/clang/test/Sema/
H A Datomic-expr.c41 void func_09 (int* xp) { argument
42 *xp <<= data1;
45 void func_10 (int* xp) { argument
46 *xp <<= data2;
/external/compiler-rt/test/BlocksRuntime/
H A DobjectRRGC.c47 MyStruct_t xp = (MyStruct_t)&X; local
48 xp->field = 10;
49 void (^myBlock)(void) = ^{ printf("field is %ld\n", xp->field); };
H A Dobjectassign.c50 MyStruct_t xp = (MyStruct_t)&X; local
51 xp->field = 10;
52 void (^myBlock)(void) = ^{ printf("field is %ld\n", xp->field); };
/external/eigen/unsupported/Eigen/src/NonLinearOptimization/
H A Dchkder.h13 Matrix< Scalar, Dynamic, 1 > &xp,
34 xp.resize(n);
39 xp[j] = x[j] + temp;
9 chkder( const Matrix< Scalar, Dynamic, 1 > &x, const Matrix< Scalar, Dynamic, 1 > &fvec, const Matrix< Scalar, Dynamic, Dynamic > &fjac, Matrix< Scalar, Dynamic, 1 > &xp, const Matrix< Scalar, Dynamic, 1 > &fvecp, int mode, Matrix< Scalar, Dynamic, 1 > &err ) argument
/external/ceres-solver/examples/
H A Dcircle_fit.cc87 T xp = xx_ - *x; local
92 // residual[0] = r - sqrt(xp*xp + yp*yp);
100 residual[0] = r*r - xp*xp - yp*yp;
H A Dsnavely_reprojection_error.h74 T xp = - p[0] / p[2]; local
80 T r2 = xp*xp + yp*yp;
84 T predicted_x = focal * distortion * xp;
139 T xp = - p[0] / p[2]; local
143 T r2 = xp*xp + yp*yp;
147 T predicted_x = focal * distortion * xp;
H A Dsimple_bundle_adjuster.cc142 T xp = - p[0] / p[2]; local
148 T r2 = xp*xp + yp*yp;
153 T predicted_x = focal * distortion * xp;
/external/chromium_org/third_party/boringssl/src/crypto/x509/
H A Dx509_trs.c236 int X509_TRUST_get_flags(X509_TRUST *xp) argument
238 return xp->flags;
241 char *X509_TRUST_get0_name(X509_TRUST *xp) argument
243 return xp->name;
246 int X509_TRUST_get_trust(X509_TRUST *xp) argument
248 return xp->trust;
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/test/
H A DRTPjitter.cc221 int compare_arr_time(const void *xp, const void *yp) { argument
223 if(((arr_time *)xp)->time == ((arr_time *)yp)->time)
225 else if(((arr_time *)xp)->time > ((arr_time *)yp)->time)
/external/clang/test/CodeGenCXX/
H A Ddelete.cpp115 void global_delete_virtual(X *xp) { argument
133 ::delete xp;
/external/clang/test/SemaCXX/
H A Doverload-member-call.cpp39 void test(X x, const X xc, X* xp, const X* xcp, volatile X xv, volatile X* xvp) { argument
43 float& f2 = xp->f(0);
50 float& f4 = xp->g(0);
51 double& d1 = xp->g(0.0);
H A Dmember-expr.cpp11 void test(X* xp, X x) { argument
13 int i2 = xp->f();
15 xp->E; // expected-error{{cannot refer to type member 'E' in 'X' with '->'}}
17 int i4 = xp->Enumerator;
19 xp->mem = 2;
21 float f2 = xp->g();
40 void test2(X *xp) { argument
41 xp->::i = 7; // expected-error{{qualified member access refers to a member in the global namespace}}
42 xp->C::i = 7; // expected-error{{qualified member access refers to a member in namespace 'C'}}
/external/openssl/crypto/x509/
H A Dx509_trs.c229 int X509_TRUST_get_flags(X509_TRUST *xp) argument
231 return xp->flags;
234 char *X509_TRUST_get0_name(X509_TRUST *xp) argument
236 return xp->name;
239 int X509_TRUST_get_trust(X509_TRUST *xp) argument
241 return xp->trust;
/external/chromium_org/third_party/opus/src/celt/x86/
H A Dpitch_sse.h118 const opus_val32 *xp = &x[i-T-2]; local
120 x4v = _mm_loadu_ps(xp+4);
123 x1v = _mm_loadu_ps(xp+1);
124 x2v = _mm_loadu_ps(xp+2);
125 x3v = _mm_loadu_ps(xp+3);
/external/clang/test/SemaTemplate/
H A Dinstantiate-function-1.cpp21 T *xp = &x, &yr = y; // expected-error{{pointer to a reference}} local
H A Dmember-access-expr.cpp106 void test_X5(X5<X4> x5, X5<const X4> x5c, X4 *xp, const X4 *cxp) { argument
107 x5.f(xp);
H A Dinstantiate-expr-2.cpp140 T test_plus(const T* xp, const T& x, const T& y) { argument
142 return xp->operator+(y);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/generators/rss/
H A DRSSFeedUpdateEntryTask.java62 private static final XPath xp = XPathFactory.newInstance().newXPath(); field in class:RSSFeedUpdateEntryTask
300 xp.reset();
301 Object o = xp.evaluate(xpath, document, XPathConstants.NODESET);
/external/freetype/src/gzip/
H A Dinftrees.c129 uIntf *xp; /* pointer into x */ local
183 p = c + 1; xp = x + 2;
185 *xp++ = (j += *p++);
226 xp = c + k;
230 if ((f <<= 1) <= *++xp)
232 f -= *xp; /* else deduct codes from patterns */
/external/libopus/celt/x86/
H A Dpitch_sse.h118 const opus_val32 *xp = &x[i-T-2]; local
120 x4v = _mm_loadu_ps(xp+4);
123 x1v = _mm_loadu_ps(xp+1);
124 x2v = _mm_loadu_ps(xp+2);
125 x3v = _mm_loadu_ps(xp+3);
/external/chromium_org/third_party/boringssl/src/crypto/x509v3/
H A Dv3_purp.c71 static int check_purpose_ssl_client(const X509_PURPOSE *xp, const X509 *x, int ca);
72 static int check_purpose_ssl_server(const X509_PURPOSE *xp, const X509 *x, int ca);
73 static int check_purpose_ns_ssl_server(const X509_PURPOSE *xp, const X509 *x, int ca);
75 static int check_purpose_smime_sign(const X509_PURPOSE *xp, const X509 *x, int ca);
76 static int check_purpose_smime_encrypt(const X509_PURPOSE *xp, const X509 *x, int ca);
77 static int check_purpose_crl_sign(const X509_PURPOSE *xp, const X509 *x, int ca);
78 static int check_purpose_timestamp_sign(const X509_PURPOSE *xp, const X509 *x, int ca);
79 static int no_check(const X509_PURPOSE *xp, const X509 *x, int ca);
80 static int ocsp_helper(const X509_PURPOSE *xp, const X509 *x, int ca);
252 int X509_PURPOSE_get_id(X509_PURPOSE *xp) argument
257 X509_PURPOSE_get0_name(X509_PURPOSE *xp) argument
262 X509_PURPOSE_get0_sname(X509_PURPOSE *xp) argument
267 X509_PURPOSE_get_trust(X509_PURPOSE *xp) argument
550 check_purpose_ssl_client(const X509_PURPOSE *xp, const X509 *x, int ca) argument
567 check_purpose_ssl_server(const X509_PURPOSE *xp, const X509 *x, int ca) argument
579 check_purpose_ns_ssl_server(const X509_PURPOSE *xp, const X509 *x, int ca) argument
610 check_purpose_smime_sign(const X509_PURPOSE *xp, const X509 *x, int ca) argument
619 check_purpose_smime_encrypt(const X509_PURPOSE *xp, const X509 *x, int ca) argument
628 check_purpose_crl_sign(const X509_PURPOSE *xp, const X509 *x, int ca) argument
643 ocsp_helper(const X509_PURPOSE *xp, const X509 *x, int ca) argument
652 check_purpose_timestamp_sign(const X509_PURPOSE *xp, const X509 *x, int ca) argument
687 no_check(const X509_PURPOSE *xp, const X509 *x, int ca) argument
[all...]

Completed in 1684 milliseconds

12