Searched refs:vp (Results 1 - 25 of 226) sorted by relevance

12345678910

/external/clang/test/SemaCXX/
H A Dreinterpret-fn-obj-pedantic.cpp7 void *vp = reinterpret_cast<void*>(fp); // expected-warning {{cast between pointer-to-function and pointer-to-object is an extension}} local
8 (void)reinterpret_cast<fnptr>(vp); // expected-warning {{cast between pointer-to-function and pointer-to-object is an extension}}
/external/mesa3d/src/gallium/drivers/nv30/
H A Dnv30_vertprog.c35 nv30_vertprog_destroy(struct nv30_vertprog *vp) argument
37 util_dynarray_fini(&vp->branch_relocs);
38 nouveau_heap_free(&vp->exec);
39 FREE(vp->insns);
40 vp->insns = NULL;
41 vp->nr_insns = 0;
43 util_dynarray_fini(&vp->const_relocs);
44 nouveau_heap_free(&vp->data);
45 FREE(vp->consts);
46 vp
57 struct nv30_vertprog *vp = nv30->vertprog.program; local
223 struct nv30_vertprog *vp = CALLOC_STRUCT(nv30_vertprog); local
235 struct nv30_vertprog *vp = hwcso; local
[all...]
/external/clang/test/CXX/over/over.match/over.match.best/
H A Dp1.cpp7 void test_f0(int* ip, void *vp) { argument
12 float &fr = f0(vp, 0);
/external/libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.types/
H A Dallocator_pointers.pass.cpp38 typename std::allocator_traits<Alloc>::pointer vp; local
41 static_assert(std::is_same<bool, decltype( vp == vp)>::value, "");
42 static_assert(std::is_same<bool, decltype( vp != vp)>::value, "");
43 static_assert(std::is_same<bool, decltype( vp > vp)>::value, "");
44 static_assert(std::is_same<bool, decltype( vp >= vp)>::value, "");
45 static_assert(std::is_same<bool, decltype( vp < v
[all...]
/external/libcxx/test/std/utilities/memory/default.allocator/
H A Dallocator_pointers.pass.cpp37 typename std::allocator_traits<Alloc>::pointer vp; local
40 static_assert(std::is_same<bool, decltype( vp == vp)>::value, "");
41 static_assert(std::is_same<bool, decltype( vp != vp)>::value, "");
42 static_assert(std::is_same<bool, decltype( vp > vp)>::value, "");
43 static_assert(std::is_same<bool, decltype( vp >= vp)>::value, "");
44 static_assert(std::is_same<bool, decltype( vp < v
[all...]
/external/mksh/src/
H A Dvar.c94 struct tbl *vp, **vpp = l->vars.tbls, *vq; local
101 if ((vp = *vpp++) != NULL && (vp->flag&SPECIAL)) {
102 if ((vq = global(vp->name))->flag & ISSET)
150 register struct tbl *vp; local
154 if ((vp = ktsearch(&l->vars, vn, h)) != NULL)
161 vp = NULL;
163 *vpp = vp;
184 struct tbl *vp; local
189 varsearch(e->loc, &vp, v
228 struct tbl *vp; local
302 struct tbl *vp; local
343 str_val(struct tbl *vp) argument
467 struct tbl *vp = &vtemp; local
482 getint(struct tbl *vp, mksh_ari_u *nump, bool arith) argument
580 setint_v(struct tbl *vq, struct tbl *vp, bool arith) argument
612 formatstr(struct tbl *vp, const char *s) argument
695 exportprep(struct tbl *vp, const char *val) argument
725 struct tbl *vp; local
997 unset(struct tbl *vp, int flags) argument
1105 struct tbl *vp, **vpp; local
1170 getspec(struct tbl *vp) argument
1246 setspec(struct tbl *vp) argument
1362 unsetspec(struct tbl *vp) argument
1411 arraysearch(struct tbl *vp, uint32_t val) argument
1496 struct tbl *vp, *vq; local
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/post/
H A DPreDepthProcessor.java51 private ViewPort vp; field in class:PreDepthProcessor
67 public void initialize(RenderManager rm, ViewPort vp) { argument
69 this.vp = vp;
72 public void reshape(ViewPort vp, int w, int h) { argument
73 this.vp = vp;
77 return vp != null;
86 rq.renderQueue(RenderQueue.Bucket.Opaque, rm, vp.getCamera(), false);
97 vp
[all...]
H A DSceneProcessor.java52 * @param vp The viewport to which the SP is assigned
54 public void initialize(RenderManager rm, ViewPort vp); argument
58 * @param vp
60 public void reshape(ViewPort vp, int w, int h); argument
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dgen7_viewport_state.c39 struct gen7_sf_clip_viewport *vp; local
41 vp = brw_state_batch(brw, AUB_TRACE_SF_VP_STATE,
42 sizeof(*vp), 64, &brw->sf.vp_offset);
47 vp->guardband.xmin = -1.0;
48 vp->guardband.xmax = 1.0;
49 vp->guardband.ymin = -1.0;
50 vp->guardband.ymax = 1.0;
62 vp->viewport.m00 = v[MAT_SX];
63 vp->viewport.m11 = v[MAT_SY] * y_scale;
64 vp
[all...]
/external/pdfium/fpdfsdk/src/javascript/
H A Devent.cpp59 FX_BOOL event::change(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError) argument
67 if (vp.IsSetting())
69 if (vp.GetType() == VT_string)
70 vp >> wChange;
74 vp << wChange;
79 FX_BOOL event::changeEx(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError) argument
81 if (!vp.IsGetting())return FALSE;
88 vp << pEvent->ChangeEx();
92 FX_BOOL event::commitKey(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError) argument
94 if (!vp
105 fieldFull(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError) argument
122 keyDown(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError) argument
138 modifier(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError) argument
154 name(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError) argument
167 rc(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError) argument
186 richChange(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError) argument
199 richChangeEx(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError) argument
213 richValue(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError) argument
226 selEnd(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError) argument
250 selStart(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError) argument
273 shift(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError) argument
289 source(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError) argument
302 target(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError) argument
315 targetName(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError) argument
328 type(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError) argument
341 value(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError) argument
364 willCommit(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError) argument
[all...]
H A DIcon.cpp60 FX_BOOL Icon::name(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError) argument
62 if(!vp.IsGetting())return FALSE;
64 vp << m_swIconName;
/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 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 Devent.h19 FX_BOOL change(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError);
20 FX_BOOL changeEx(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError);
21 FX_BOOL commitKey(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError);
22 FX_BOOL fieldFull(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError);
23 FX_BOOL keyDown(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError);
24 FX_BOOL modifier(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError);
25 FX_BOOL name(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError);
26 FX_BOOL rc(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError);
27 FX_BOOL richChange(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError);
28 FX_BOOL richChangeEx(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideStrin
[all...]
H A Dcolor.h19 FX_BOOL black(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError);
20 FX_BOOL blue(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError);
21 FX_BOOL cyan(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError);
22 FX_BOOL dkGray(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError);
23 FX_BOOL gray(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError);
24 FX_BOOL green(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError);
25 FX_BOOL ltGray(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError);
26 FX_BOOL magenta(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError);
27 FX_BOOL red(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError);
28 FX_BOOL transparent(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideStrin
[all...]
/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/mesa3d/src/mesa/drivers/dri/r200/
H A Dr200_vertprog.c103 static GLboolean r200VertexProgUpdateParams(struct gl_context *ctx, struct r200_vertex_program *vp) argument
108 struct gl_vertex_program *mesa_vp = &vp->mesa_program;
127 //fprintf(stderr, "%s", vp->Parameters->Parameters[pi].Name);
239 static void vp_dump_inputs(struct r200_vertex_program *vp, char *caller)
243 if(vp == NULL){
244 fprintf(stderr, "vp null in call to %s from %s\n", __FUNCTION__, caller);
250 fprintf(stderr, "%d ", vp->inputs[i]);
256 static unsigned long t_src_index(struct r200_vertex_program *vp, struct prog_src_register *src) argument
263 /* if(vp->inputs[src->Index] != -1)
264 return vp
284 t_src(struct r200_vertex_program *vp, struct prog_src_register *src) argument
296 t_src_scalar(struct r200_vertex_program *vp, struct prog_src_register *src) argument
399 r200_translate_vertex_program(struct gl_context *ctx, struct r200_vertex_program *vp) argument
1119 struct r200_vertex_program *vp = (struct r200_vertex_program *)ctx->VertexProgram.Current; local
1214 struct r200_vertex_program *vp; local
1239 struct r200_vertex_program *vp = (void *)prog; local
1264 struct r200_vertex_program *vp = (void *)prog; local
[all...]
/external/mesa3d/src/mesa/state_tracker/
H A Dst_debug.c87 for (i = 0; i < st->vp->state.num_inputs; i++) {
88 printf(" Slot %d: VERT_ATTRIB_%d\n", i, st->vp->index_to_input[i]);
92 if (st->vp->variants)
93 tgsi_dump( st->vp->variants[0].tgsi.tokens, 0 );
94 if (st->vp->Base.Base.Parameters)
95 _mesa_print_parameter_list(st->vp->Base.Base.Parameters);
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d10tri/
H A Dd3d10tri.cpp91 D3D10_VIEWPORT vp; local
92 memset(&vp, 0, sizeof(vp));
93 vp.Width = (unsigned)width;
94 vp.Height = (unsigned)height;
95 vp.MaxDepth = 1.0f;
98 ctx->RSSetViewports(1, &vp);
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11tri/
H A Dd3d11tri.cpp93 D3D11_VIEWPORT vp; local
94 memset(&vp, 0, sizeof(vp));
95 vp.Width = (float)width;
96 vp.Height = (float)height;
97 vp.MaxDepth = 1.0f;
100 ctx->RSSetViewports(1, &vp);
/external/jmonkeyengine/engine/src/core/com/jme3/renderer/
H A DRenderManager.java263 ViewPort vp = new ViewPort(viewName, cam);
264 preViewPorts.add(vp);
265 return vp;
275 ViewPort vp = new ViewPort(viewName, cam);
276 viewPorts.add(vp);
277 return vp;
286 ViewPort vp = new ViewPort(viewName, cam);
287 postViewPorts.add(vp);
288 return vp;
291 private void notifyReshape(ViewPort vp, in argument
771 renderScene(Spatial scene, ViewPort vp) argument
849 flushQueue(ViewPort vp) argument
863 clearQueue(ViewPort vp) argument
887 renderViewPortQueues(ViewPort vp, boolean flush) argument
942 renderTranslucentQueue(ViewPort vp) argument
1036 renderViewPortRaw(ViewPort vp) argument
1086 renderViewPort(ViewPort vp, float tpf) argument
[all...]
/external/jmonkeyengine/engine/src/core-effects/com/jme3/water/
H A DReflectionProcessor.java22 private ViewPort vp; field in class:ReflectionProcessor
39 public void initialize(RenderManager rm, ViewPort vp) { argument
41 this.vp = vp;
44 public void reshape(ViewPort vp, int w, int h) { argument
62 vp.getQueue().renderQueue(RenderQueue.Bucket.Sky, rm, reflectionCam, true);
/external/clang/test/Analysis/
H A Duninit-const.c184 int *vp = &u ; local
186 doStuff_variadic(tp,vp); // no-warning
193 int *vp = &u ; local
195 doStuff_variadic(tp,vp); // expected-warning {{Function call argument is a pointer to uninitialized value}}
203 int *vp = &u ; local
205 doStuff_variadic(tp,vp); // no-warning
212 int *vp = &u ; local
214 doStuff_variadic(tp,vp); // expected-warning {{Function call argument is a pointer to uninitialized value}}

Completed in 1016 milliseconds

12345678910