HomeSort by relevance Sort by last modified time
    Searched defs:vp (Results 1 - 25 of 46) sorted by null

1 2

  /external/clang/test/SemaCXX/
reinterpret-fn-obj-pedantic.cpp 7 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}}
altivec.cpp 12 vector pixel vp; local
27 int res8[vec_step(vp) == 8 ? 1 : -1];
reinterpret-cast.cpp 24 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);
cstyle-cast.cpp 174 void *vp = (void*)(testval); local
175 long l = (long)(vp);
208 void *vp = (void*)(fp); local
209 (void)(fnptr)(vp);
  /external/clang/test/Parser/
pointer_promotion.c 4 void *vp; local
  /external/stlport/stlport/stl/
_hash_fun.h 134 __vp vp; local
135 vp.p = __x;
136 return vp.s;
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_hash_fun.h 134 __vp vp; local
135 vp.p = __x;
136 return vp.s;
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/
_hash_fun.h 134 __vp vp; local
135 vp.p = __x;
136 return vp.s;
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/
_hash_fun.h 134 __vp vp; local
135 vp.p = __x;
136 return vp.s;
  /external/skia/gpu/src/
GrGLTexture.cpp 127 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/clang/test/CodeGen/
conditional.c 24 void* vp; local
25 cip = 0 ? vp : cip;
builtins-ppc-altivec.c 9 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
    [all...]
  /external/clang/test/Sema/
conditional-expr.c 12 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}}
  /frameworks/base/core/jni/android/opengl/
poly_clip.cpp 62 float *up, *vp, *wp; local
81 vp = (float *)v;
83 for(int i = 0; i < 4; i++, wp++, up++, vp++) {
84 *wp = *up+t*(*vp-*up);
  /external/valgrind/main/coregrind/m_sigframe/
sigframe-arm-linux.c 65 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;
  /system/core/sh/
var.h 65 struct var *vp; /* the variable that was made local */ member in struct:localvar
var.c 167 struct var *vp; local
170 for (ip = varinit ; (vp = ip->var) != NULL ; ip++) {
171 if (find_var(ip->text, &vpp, &vp->name_len) != NULL)
173 vp->next = *vpp;
174 *vpp = vp;
175 vp->text = strdup(ip->text);
176 vp->flags = ip->flags;
177 vp->func = ip->func;
275 struct var *vp, **vpp; local
280 vp = find_var(s, &vpp, &nlen)
394 struct var *vp; local
433 struct var *vp, **prev; local
510 struct var *vp; local
563 struct var *vp; local
621 struct var *vp; local
663 struct var *vp; local
742 struct var *vp; local
801 struct var *vp, **vpp; local
    [all...]
  /external/openssl/crypto/bn/
bn_asm.c 853 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[i] = 0
    [all...]
  /external/ppp/pppd/plugins/radius/
avpair.c 22 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)
64 switch (vp->type)
75 memcpy(vp->strvalue, (char *)pval, len);
76 vp->strvalue[len] = '\0'
112 VALUE_PAIR *vp = (VALUE_PAIR *) NULL; local
162 VALUE_PAIR *vp; local
369 VALUE_PAIR *vp, *fp = NULL, *lp = NULL; local
402 VALUE_PAIR *vp; local
775 VALUE_PAIR *vp = NULL; local
    [all...]
sendserver.c 33 static int rc_pack_list (VALUE_PAIR *vp, char *secret, AUTH_HDR *auth)
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->strvalue, (size_t) length)
214 VALUE_PAIR *vp; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/svga/
SDL_svgavideo.c 494 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/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
Blit.cpp 435 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.Height, 0, 0 }
    [all...]
  /external/ipsec-tools/src/racoon/
isakmp_quick.c 548 vchar_t *vp = NULL;
550 if (isakmp_p2ph(&vp, pa->ptr) < 0)
553 error = ipsecdoi_id2sockaddr(vp,
557 vfree(vp);
1250 vchar_t *vp = NULL;
1252 if (isakmp_p2ph(&vp, pa->ptr) < 0)
1255 error = ipsecdoi_id2sockaddr(vp,
1259 vfree(vp);
547 vchar_t *vp = NULL; local
1249 vchar_t *vp = NULL; local
    [all...]
  /external/wpa_supplicant/
driver_bsd.c 619 uint8_t *cp, *vp; local
641 vp = (u_int8_t *)(sr+1);
642 os_memcpy(wsr->ssid, vp, sr->isr_ssid_len);
644 vp += sr->isr_ssid_len;
647 switch (vp[0]) {
649 if (!iswpaoui(vp))
652 min(2+vp[1], SSID_MAX_WPA_IE_LEN);
653 os_memcpy(wsr->wpa_ie, vp,
658 min(2+vp[1], SSID_MAX_WPA_IE_LEN);
659 os_memcpy(wsr->rsn_ie, vp,
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/drivers/
driver_bsd.c 622 uint8_t *cp, *vp; local
644 vp = (u_int8_t *)(sr+1);
645 os_memcpy(wsr->ssid, vp, sr->isr_ssid_len);
647 vp += sr->isr_ssid_len;
650 switch (vp[0]) {
652 if (!iswpaoui(vp))
655 min(2+vp[1], SSID_MAX_WPA_IE_LEN);
656 os_memcpy(wsr->wpa_ie, vp,
661 min(2+vp[1], SSID_MAX_WPA_IE_LEN);
662 os_memcpy(wsr->rsn_ie, vp,
    [all...]

Completed in 1591 milliseconds

1 2