Searched refs:vp (Results 1 - 25 of 287) sorted by last modified time

1234567891011>>

/external/zopfli/src/zopfli/
H A Dblocksplitter.c62 double vp[NUM]; local
73 vp[i] = f(p[i], context);
76 best = vp[0];
78 if (vp[i] < best) {
79 best = vp[i];
/external/valgrind/main/coregrind/m_debuginfo/
H A Dlzoconf.h393 typedef union { void *vp; lzo_bytep bp; lzo_uint u; lzo_uint32 u32; unsigned long l; } lzo_align_t; member in union:__anon32402
/external/valgrind/main/coregrind/m_sigframe/
H A Dsigframe-arm-linux.c76 struct vg_sig_private vp; member in struct:sigframe
173 struct vg_sig_private *priv = &frame->vp;
176 (Addr)frame, offsetof(struct sigframe, vp));
189 (Addr)frame, offsetof(struct sigframe, vp));
296 priv = &frame->sig.vp;
303 priv = &frame->vp;
H A Dsigframe-arm64-linux.c74 struct vg_sig_private vp; member in struct:sigframe
167 struct vg_sig_private *priv = &frame->vp;
170 (Addr)frame, offsetof(struct sigframe, vp));
183 (Addr)frame, offsetof(struct sigframe, vp));
277 priv = &frame->sig.vp;
284 //ZZ priv = &frame->vp;
/external/stlport/stlport/stl/
H A D_hash_fun.h134 __vp vp; local
135 vp.p = __x;
136 return vp.s;
/external/skia/src/gpu/gl/
H A DGrGLTexture.cpp28 GrGLIRect vp; local
29 vp.fLeft = 0;
30 vp.fWidth = textureDesc.fWidth;
31 vp.fBottom = 0;
32 vp.fHeight = textureDesc.fHeight;
34 fRenderTarget.reset(SkNEW_ARGS(GrGLRenderTarget, (gpu, *rtDesc, vp, fTexIDObj, this)));
H A DGrGpuGL.cpp1375 const GrGLIRect& vp = rt->getViewport(); local
1377 scissor.setRelativeTo(vp,
1385 if (!scissor.contains(vp)) {
1740 const GrGLIRect& vp = rt->getViewport(); local
1741 if (fHWViewport != vp) {
1742 vp.pushToGLViewport(this->glInterface());
1743 fHWViewport = vp;
2007 const GrGLIRect& vp = rt->getViewport(); local
2010 r.setRelativeTo(vp, dirtyRect.fLeft, dirtyRect.fTop,
/external/skia/src/xml/
H A DSkJSDisplayable.cpp63 static JSBool GetProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp);
64 static JSBool SetProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp);
219 jsval *vp)
270 *vp = BOOLEAN_TO_JSVAL(s32);
274 *vp = INT_TO_JSVAL(s32);
278 *vp = INT_TO_JSVAL(SkScalarFloor(scalar));
280 *vp = DOUBLE_TO_JSVAL(scalar);
284 *vp = STRING_TO_JSVAL(str);
292 JSBool SkJSDisplayable::SetProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp) { argument
308 jsval value = *vp;
218 GetProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp) argument
[all...]
/external/robolectric/lib/test/
H A Dmockito-core-1.8.5.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...
/external/qemu/distrib/libpng-1.2.46/
H A Dpngrutil.c1813 png_charp vp; local
1870 width = png_strtod(png_ptr, ep, &vp);
1871 if (*vp)
1908 height = png_strtod(png_ptr, ep, &vp);
1909 if (*vp)
/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_blit_A.c682 unsigned int *vp = (unsigned int *)&tmpvec; \
683 printf("%s = %08X %08X %08X %08X\n", msg, vp[0], vp[1], vp[2], vp[3]); \
/external/qemu/distrib/sdl-1.2.15/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/ppp/pppd/
H A Dipcp.c521 parse_dotted_ip(p, vp)
523 u_int32_t *vp;
538 *vp = b;
549 *vp = v;
/external/ppp/pppd/plugins/radius/
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 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 Dradius.c84 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, argument
556 (*radius_attributes_hook)(vp);
729 radius_setmppekeys(VALUE_PAIR *vp, REQUEST_INFO *req_info, unsigned char *challenge) argument
783 radius_setmppekeys2(VALUE_PAIR *vp, REQUEST_INFO *req_info) argument
[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/pdfium/fpdfsdk/include/javascript/
H A DJS_Define.h53 #define OBJ_PROP_PARAMS IFXJS_Context* cc, CJS_PropValue& vp, JS_ErrorString& sError
H A Dglobal.h48 FX_BOOL DoProperty(IFXJS_Context* cc, FX_LPCWSTR propname, CJS_PropValue & vp, JS_ErrorString & sError);
/external/pdfium/fpdfsdk/src/javascript/
H A DDocument.cpp193 if (!vp.IsGetting()) return FALSE;
203 vp << (int)pPDFForm->CountFields();
212 if (vp.IsGetting())
215 vp << true;
217 vp << false;
223 vp >> bChanged;
238 if (vp.IsGetting())
240 vp.SetNull();
253 if (vp.IsGetting())
257 vp << pPageVie
[all...]
H A DField.cpp384 if (vp.IsSetting())
389 vp >> alignStr;
418 vp << (FX_LPCWSTR)L"center";
421 vp << (FX_LPCWSTR)L"left";
424 vp << (FX_LPCWSTR)L"right";
427 vp << (FX_LPCWSTR)L"";
444 if (vp.IsSetting())
449 vp >> strType;
477 vp << (FX_LPCWSTR)L"solid";
480 vp << (FX_LPCWST
[all...]
H A DIcon.cpp62 if(!vp.IsGetting())return FALSE;
64 vp << m_swIconName;
H A Dapp.cpp139 if (vp.IsGetting())
187 vp << aDocs;
189 vp.SetNull();
197 if (vp.IsSetting())
200 vp >> bVP;
227 vp << (bool)m_bCalculate;
235 if (vp.IsGetting())
237 vp << JS_NUM_FORMSVERSION;
252 if (vp.IsGetting())
255 // vp << JS_STR_VIEWERTYPE_STANDAR
[all...]
H A Dcolor.cpp163 if (vp.IsGetting())\
167 vp << array;\
172 if (!vp.ConvertToArray(array)) return FALSE;\
H A Devent.cpp67 if (vp.IsSetting())
69 if (vp.GetType() == VT_string)
70 vp >> wChange;
74 vp << wChange;
81 if (!vp.IsGetting())return FALSE;
88 vp << pEvent->ChangeEx();
94 if (!vp.IsGetting())return FALSE;
101 vp << pEvent->CommitKey();
112 if (!vp.IsGetting() && wcscmp((const wchar_t*)pEvent->Name(),L"Keystroke") != 0)
116 vp << TRU
[all...]

Completed in 316 milliseconds

1234567891011>>