Searched defs:vp (Results 1 - 25 of 45) sorted by relevance

12

/external/clang/test/SemaCXX/
H A Dreinterpret-fn-obj-pedantic.cpp7 void *vp = reinterpret_cast<void*>(fp); // expected-warning {{reinterpret_cast between pointer-to-function and pointer-to-object is an extension}} local
8 (void)reinterpret_cast<fnptr>(vp); // expected-warning {{reinterpret_cast between pointer-to-function and pointer-to-object is an extension}}
H A Dcompare.cpp203 void test2(int i, void *vp) { argument
204 if (test1 == vp) { } // expected-warning{{equality comparison between function pointer and void pointer}}
206 if (vp < 0) { }
H A Daltivec.cpp12 vector pixel vp; local
27 int res8[vec_step(vp) == 8 ? 1 : -1];
H A Daddress-space-conversion.cpp50 void test_static_cast(void_ptr vp, void_ptr_1 vp1, void_ptr_2 vp2, argument
67 (void)static_cast<A_ptr>(vp);
96 (void)static_cast<A_ptr_1>(vp); // expected-error{{casts away qualifiers}}
98 (void)static_cast<A_ptr_2>(vp); // expected-error{{casts away qualifiers}}
131 void test_reinterpret_cast(void_ptr vp, void_ptr_1 vp1, void_ptr_2 vp2, argument
141 (void)reinterpret_cast<A_ptr>(vp);
149 (void)reinterpret_cast<A_ptr_1>(vp);
157 void test_cstyle_cast(void_ptr vp, void_ptr_1 vp1, void_ptr_2 vp2, argument
167 (void)(A_ptr)(vp);
175 (void)(A_ptr_1)(vp);
181 test_implicit_conversion(void_ptr vp, void_ptr_1 vp1, void_ptr_2 vp2, A_ptr ap, A_ptr_1 ap1, A_ptr_2 ap2, B_ptr bp, B_ptr_1 bp1, B_ptr_2 bp2) argument
[all...]
H A Dreinterpret-cast.cpp24 void *vp = reinterpret_cast<void*>(testval); local
25 intptr_t i = reinterpret_cast<intptr_t>(vp);
64 void *vp = reinterpret_cast<void*>(fp); local
65 (void)reinterpret_cast<fnptr>(vp);
H A Dcstyle-cast.cpp174 void *vp = (void*)(testval); local
175 long l = (long)(vp);
208 void *vp = (void*)(fp); local
209 (void)(fnptr)(vp);
/external/clang/test/CXX/over/over.match/over.match.best/
H A Dp1.cpp6 void test_f0(int* ip, void *vp) { argument
11 float &fr = f0(vp, 0);
/external/clang/test/Parser/
H A Dpointer_promotion.c4 void *vp; local
/external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.func/
H A Dp1inst.cpp14 void test_f(X0<float, int> xfi, X0<void, int> xvi, float *fp, void *vp, int i) { argument
16 xvi.f(vp, i); // expected-note{{instantiation}}
/external/ppp/pppd/plugins/radius/
H A Dradattr.c59 * vp -- linked-list of RADIUS attribute-value pairs
67 print_attributes(VALUE_PAIR *vp) argument
82 for (; vp; vp=vp->next) {
83 if (rc_avpair_tostr(vp, name, sizeof(name), value, sizeof(value)) < 0) {
H A Davpair.c22 VALUE_PAIR **vp);
37 VALUE_PAIR *vp; local
39 vp = rc_avpair_new (attrid, pval, len, vendorcode);
41 if (vp != (VALUE_PAIR *) NULL)
43 rc_avpair_insert (list, (VALUE_PAIR *) NULL, vp);
46 return vp;
60 int rc_avpair_assign (VALUE_PAIR *vp, void *pval, int len) argument
64 switch (vp->type)
75 memcpy(vp->strvalue, (char *)pval, len);
76 vp
112 VALUE_PAIR *vp = (VALUE_PAIR *) NULL; local
162 VALUE_PAIR *vp; local
261 rc_extract_vendor_specific_attributes(int attrlen, unsigned char *ptr, VALUE_PAIR **vp) argument
352 rc_avpair_get(VALUE_PAIR *vp, UINT4 attr) argument
369 VALUE_PAIR *vp, *fp = NULL, *lp = NULL; local
402 VALUE_PAIR *vp; local
775 VALUE_PAIR *vp = NULL; local
[all...]
H A Dsendserver.c33 static int rc_pack_list (VALUE_PAIR *vp, char *secret, AUTH_HDR *auth) argument
44 while (vp != (VALUE_PAIR *) NULL)
47 if (vp->vendorcode != VENDOR_NONE) {
55 *buf++ = (((unsigned int) vp->vendorcode) >> 16) & 255;
56 *buf++ = (((unsigned int) vp->vendorcode) >> 8) & 255;
57 *buf++ = ((unsigned int) vp->vendorcode) & 255;
60 *buf++ = vp->attribute;
63 switch(vp->type) {
65 length = vp->lvalue;
68 memcpy(buf, vp
214 VALUE_PAIR *vp; local
[all...]
/external/stlport/stlport/stl/
H A D_hash_fun.h134 __vp vp; local
135 vp.p = __x;
136 return vp.s;
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
H A Dp1.cpp60 void test_spec(X0<void*> xvp, void *vp) { argument
61 xvp.f1(vp);
90 void test_func_template(X0<void *> xvp, void *vp, const void *cvp) { argument
91 xvp.ft1(vp, cvp);
H A Dp2-0x.cpp96 void test_spec(N0::X0<void*> xvp, void *vp) { argument
97 xvp.f1(vp);
234 void test_func_template(N0::X0<void *> xvp, void *vp, const void *cvp, argument
236 xvp.ft1(vp, cvp);
237 xvp.ft1(vp, i);
238 xvp.ft1(vp, u);
H A Dp2.cpp96 void test_spec(N0::X0<void*> xvp, void *vp) { argument
97 xvp.f1(vp);
234 void test_func_template(N0::X0<void *> xvp, void *vp, const void *cvp, argument
236 xvp.ft1(vp, cvp);
237 xvp.ft1(vp, i);
238 xvp.ft1(vp, u);
/external/clang/test/CodeGen/
H A Dconditional.c24 void* vp; local
25 cip = 0 ? vp : cip;
H A Dbuiltins-ppc-altivec.c9 vector pixel vp = { 1, 2, 3, 4, 5, 6, 7, 8 }; variable
458 res_vp = vec_ld(0, &vp); // CHECK: @llvm.ppc.altivec.lvx
476 res_vp = vec_lvx(0, &vp); // CHECK: @llvm.ppc.altivec.lvx
512 res_vp = vec_ldl(0, &vp); // CHECK: @llvm.ppc.altivec.lvxl
530 res_vp = vec_lvxl(0, &vp); // CHECK: @llvm.ppc.altivec.lvxl
602 res_vp = vec_mergeh(vp, vp); // CHECK: @llvm.ppc.altivec.vperm
613 res_vp = vec_vmrghh(vp, vp); // CHECK: @llvm.ppc.altivec.vperm
626 res_vp = vec_mergeh(vp, v
[all...]
/external/clang/test/Sema/
H A Dconditional-expr.c12 void *vp; local
14 dp = vp;
15 vp = dp;
19 vp = 0 ? (double *)0 : (void *)0;
23 vp = (0 ? vp : cip); // expected-warning {{discards qualifiers}}
24 vp = (0 ? cip : vp); // expected-warning {{discards qualifiers}}
/external/skia/gpu/src/
H A DGrGLTexture.cpp127 GrGLIRect vp; local
128 vp.fLeft = 0;
129 vp.fWidth = textureDesc.fContentWidth;
130 vp.fHeight = textureDesc.fContentHeight;
131 vp.fBottom = textureDesc.fAllocHeight - textureDesc.fContentHeight;
136 vp, this);
/external/openssl/crypto/bn/
H A Dbn_asm.c853 volatile BN_ULONG *vp; local
859 vp = tp = alloca((num+2)*sizeof(BN_ULONG));
926 for(i=0;i<num+2;i++) vp[i] = 0;
930 for(i=0;i<num;i++) rp[i] = tp[i], vp[i] = 0;
931 vp[num] = 0;
932 vp[num+1] = 0;
989 volatile BN_ULONG *vp; local
992 vp = tp = alloca((num+2)*sizeof(BN_ULONG));
1015 for(i=0;i<num+2;i++) vp[i] = 0;
1019 for(i=0;i<num;i++) rp[i] = tp[i], vp[
[all...]
/external/qemu/distrib/sdl-1.2.12/src/video/svga/
H A DSDL_svgavideo.c494 int page, vp; local
509 vp = y * pitch + x * bpp;
510 src = (unsigned char *)this->screen->pixels + vp;
511 page = vp >> 16;
512 vp &= 0xffff;
515 if (vp + w > 0x10000) {
516 if (vp >= 0x10000) {
519 vp &= 0xffff;
521 SDL_memcpy(dst + vp, src, 0x10000 - vp);
[all...]
/external/skia/src/xml/
H A DSkJSDisplayable.cpp71 static JSBool GetProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp);
72 static JSBool SetProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp);
227 jsval *vp)
278 *vp = BOOLEAN_TO_JSVAL(s32);
282 *vp = INT_TO_JSVAL(s32);
286 *vp = INT_TO_JSVAL(SkScalarFloor(scalar));
289 *vp = DOUBLE_TO_JSVAL(scalar);
291 *vp = DOUBLE_TO_JSVAL(scalar / 65536.0f );
296 *vp = STRING_TO_JSVAL(str);
304 JSBool SkJSDisplayable::SetProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp) { argument
226 GetProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp) argument
[all...]
/external/valgrind/main/coregrind/m_sigframe/
H A Dsigframe-arm-linux.c65 struct vg_sig_private vp; member in struct:sigframe
162 struct vg_sig_private *priv = &frame->vp;
165 (Addr)frame, offsetof(struct sigframe, vp));
178 (Addr)frame, offsetof(struct sigframe, vp));
279 priv = &frame->sig.vp;
286 priv = &frame->vp;
/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
H A DBlit.cpp435 D3DVIEWPORT9 vp; local
436 vp.X = xoffset;
437 vp.Y = yoffset;
438 vp.Width = sourceRect.right - sourceRect.left;
439 vp.Height = sourceRect.bottom - sourceRect.top;
440 vp.MinZ = 0.0f;
441 vp.MaxZ = 1.0f;
442 device->SetViewport(&vp);
444 float halfPixelAdjust[4] = { -1.0f/vp.Width, 1.0f/vp
[all...]

Completed in 416 milliseconds

12