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

1 2

  /system/core/sh/
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...]
var.h 65 struct var *vp; /* the variable that was made local */ member in struct:localvar
  /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...]
radattr.c 59 * vp -- linked-list of RADIUS attribute-value pairs
67 print_attributes(VALUE_PAIR *vp)
82 for (; vp; vp=vp->next) {
83 if (rc_avpair_tostr(vp, name, sizeof(name), value, sizeof(value)) < 0) {
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...]
radius.c 84 static int radius_setparams(VALUE_PAIR *vp, char *msg, REQUEST_INFO *req_info,
94 static int radius_setmppekeys(VALUE_PAIR *vp, REQUEST_INFO *req_info,
96 static int radius_setmppekeys2(VALUE_PAIR *vp, REQUEST_INFO *req_info);
124 VALUE_PAIR *avp; /* Additional (user supplied) vp's to send to server */
187 /* Append to a list of vp's for later parsing */
290 /* Add user specified vp's */
466 /* Add user specified vp's */
534 * vp -- received value-pairs
542 radius_setparams(VALUE_PAIR *vp, char *msg, REQUEST_INFO *req_info,
556 (*radius_attributes_hook)(vp);
    [all...]
  /external/stlport/stlport/stl/
_hash_fun.h 134 __vp vp; local
135 vp.p = __x;
136 return vp.s;
  /ndk/sources/android/stlport/stlport/stl/
_hash_fun.h 134 __vp vp; local
135 vp.p = __x;
136 return vp.s;
  /external/kernel-headers/original/linux/sunrpc/
svc.h 83 u32 val, *vp; local
84 vp = iov->iov_base;
85 val = *vp++;
86 iov->iov_base = (void*)vp;
93 u32 *vp = (u32 *)iov->iov_base; local
94 iov->iov_base = (void *)(vp - 1);
95 iov->iov_len += sizeof(*vp);
100 u32 *vp = iov->iov_base + iov->iov_len; local
101 *vp = val;
  /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/dbus/dbus/
dbus-marshal-basic.c 390 const DBusBasicValue *vp; local
392 vp = value;
397 _dbus_string_set_byte (str, pos, vp->byt);
407 set_2_octets (str, pos, vp->u16, byte_order);
418 set_4_octets (str, pos, vp->u32, byte_order);
429 set_8_octets (str, pos, *vp, byte_order);
439 _dbus_assert (vp->str != NULL);
440 return set_string (str, pos, vp->str, byte_order,
444 _dbus_assert (vp->str != NULL);
445 return set_signature (str, pos, vp->str, byte_order
511 DBusBasicValue *vp; local
800 const DBusBasicValue *vp; local
1030 const void* vp = *(const DBusBasicValue**)value; local
    [all...]
  /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);
  /frameworks/base/core/java/android/view/
WindowManagerImpl.java 302 ViewParent vp = view.getParent(); local
303 while (vp != null && !(vp instanceof ViewRoot)) {
304 vp = vp.getParent();
307 if (vp == null) return null;
309 ViewRoot vr = (ViewRoot)vp;
  /frameworks/base/libs/rs/
rsScriptC_Lib.cpp 67 const void *vp = sc->mSlots[bank]->getPtr(); local
68 const float *f = static_cast<const float *>(vp);
76 const void *vp = sc->mSlots[bank]->getPtr(); local
77 const int32_t *i = static_cast<const int32_t *>(vp);
85 void *vp = sc->mSlots[bank]->getPtr(); local
86 float *f = static_cast<float *>(vp);
93 void *vp = sc->mSlots[bank]->getPtr(); local
94 int32_t *i = static_cast<int32_t *>(vp);
101 void *vp = tm->mVertexBuffers[idx]->getPtr();; local
102 return static_cast<float *>(vp);
115 const void *vp = sc->mSlots[bank]->getPtr(); local
123 const void *vp = sc->mSlots[bank]->getPtr(); local
131 const void *vp = sc->mSlots[bank]->getPtr(); local
141 void *vp = sc->mSlots[bank]->getPtr(); local
149 void *vp = sc->mSlots[bank]->getPtr(); local
157 void *vp = sc->mSlots[bank]->getPtr(); local
165 void *vp = sc->mSlots[bank]->getPtr(); local
173 void *vp = sc->mSlots[bank]->getPtr(); local
    [all...]
rsProgram.cpp 244 void rsi_ProgramBindConstants(Context *rsc, RsProgram vp, uint32_t slot, RsAllocation constants)
246 Program *p = static_cast<Program *>(vp);
  /external/skia/src/xml/
SkJSDisplayable.cpp 71 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) {
    [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...]
  /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/libvpx/vp8/common/arm/neon/
shortidct4x4llm_neon.asm 38 vswp d3, d4 ;q2(vp[4] vp[12])
  /external/libvpx/vp8/decoder/arm/neon/
dequant_dc_idct_neon.asm 51 vswp d3, d4 ;q2(vp[4] vp[12])
dequant_idct_neon.asm 45 vswp d3, d4 ;q2(vp[4] vp[12])
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
varray.h 196 #define VARRAY_FREE(vp) \
197 do { if (vp) { free (vp); vp = (varray_type) 0; } } while (0)
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
varray.h 196 #define VARRAY_FREE(vp) \
197 do { if (vp) { free (vp); vp = (varray_type) 0; } } while (0)
  /external/chromium/net/third_party/nss/ssl/
ssltrace.c 69 void ssl_PrintBuf(sslSocket *ss, const char *msg, const void *vp, int len)
71 const unsigned char *cp = (const unsigned char *)vp;

Completed in 504 milliseconds

1 2