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

1 2 3 4 5 6

  /external/clang/test/SemaCXX/
reinterpret-fn-obj-pedantic.cpp 7 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}}
address-space-conversion.cpp 50 void test_static_cast(void_ptr vp, void_ptr_1 vp1, void_ptr_2 vp2,
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,
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,
167 (void)(A_ptr)(vp);
175 (void)(A_ptr_1)(vp);
    [all...]
  /external/clang/test/CXX/over/over.match/over.match.best/
p1.cpp 6 void test_f0(int* ip, void *vp) {
11 float &fr = f0(vp, 0);
  /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...]
  /external/mksh/src/
var.c 91 struct tbl *vp, **vpp = l->vars.tbls, *vq; local
98 if ((vp = *vpp++) != NULL && (vp->flag&SPECIAL)) {
99 if ((vq = global(vp->name))->flag & ISSET)
147 register struct tbl *vp; local
151 if ((vp = ktsearch(&l->vars, vn, h)) != NULL)
158 vp = NULL;
160 *vpp = vp;
180 struct tbl *vp; local
185 varsearch(e->loc, &vp, vn, hash(vn))
223 struct tbl *vp; local
296 struct tbl *vp; local
455 struct tbl *vp = &vtemp; local
692 struct tbl *vp; local
1020 struct tbl *vp, **vpp; local
1378 struct tbl *vp, *vq; local
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/post/
PreDepthProcessor.java 51 private ViewPort vp; field in class:PreDepthProcessor
67 public void initialize(RenderManager rm, ViewPort vp) {
69 this.vp = vp;
72 public void reshape(ViewPort vp, int w, int h) {
73 this.vp = vp;
77 return vp != null;
86 rq.renderQueue(RenderQueue.Bucket.Opaque, rm, vp.getCamera(), false);
97 vp = null
    [all...]
SceneProcessor.java 52 * @param vp The viewport to which the SP is assigned
54 public void initialize(RenderManager rm, ViewPort vp);
58 * @param vp
60 public void reshape(ViewPort vp, int w, int h);
  /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...]
  /ndk/sources/host-tools/nawk-20071023/
tran.c 281 Awkfloat setfval(Cell *vp, Awkfloat f) /* set float val of a Cell */
285 if ((vp->tval & (NUM | STR)) == 0)
286 funnyvar(vp, "assign to");
287 if (isfld(vp)) {
289 fldno = atoi(vp->nval);
293 } else if (isrec(vp)) {
297 if (freeable(vp))
298 xfree(vp->sval); /* free any previous string */
299 vp->tval &= ~STR; /* mark string invalid */
300 vp->tval |= NUM; /* mark number ok *
    [all...]
  /external/clang/test/Parser/
pointer_promotion.c 4 void *vp; local
  /external/jmonkeyengine/engine/src/core/com/jme3/renderer/
RenderManager.java 263 ViewPort vp = new ViewPort(viewName, cam); local
264 preViewPorts.add(vp);
265 return vp;
275 ViewPort vp = new ViewPort(viewName, cam); local
276 viewPorts.add(vp);
277 return vp;
286 ViewPort vp = new ViewPort(viewName, cam); local
287 postViewPorts.add(vp);
288 return vp;
291 private void notifyReshape(ViewPort vp, int w, int h) {
794 renderScene(children.get(i), vp); local
1040 renderScene(scenes.get(i), vp); local
1117 renderScene(scenes.get(i), vp); local
1160 ViewPort vp = preViewPorts.get(i); local
1166 ViewPort vp = viewPorts.get(i); local
1172 ViewPort vp = postViewPorts.get(i); local
    [all...]
  /external/jmonkeyengine/engine/src/core-effects/com/jme3/water/
ReflectionProcessor.java 22 private ViewPort vp; field in class:ReflectionProcessor
39 public void initialize(RenderManager rm, ViewPort vp) {
41 this.vp = vp;
44 public void reshape(ViewPort vp, int w, int h) {
62 vp.getQueue().renderQueue(RenderQueue.Bucket.Sky, rm, reflectionCam, true);
  /external/skia/src/gpu/gl/
GrGLTexture.cpp 42 GrGLIRect vp; local
43 vp.fLeft = 0;
44 vp.fWidth = textureDesc.fWidth;
45 vp.fBottom = 0;
46 vp.fHeight = textureDesc.fHeight;
48 fRenderTarget = new GrGLRenderTarget(gpu, *rtDesc, vp, fTexIDObj, this);
  /external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.func/
p1inst.cpp 14 void test_f(X0<float, int> xfi, X0<void, int> xvi, float *fp, void *vp, int i) {
16 xvi.f(vp, i); // expected-note{{instantiation}}
  /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}}
  /external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/
NiftyJmeDisplay.java 63 protected ViewPort vp; field in class:NiftyJmeDisplay
93 ViewPort vp){
96 w = vp.getCamera().getWidth();
97 h = vp.getCamera().getHeight();
113 public void initialize(RenderManager rm, ViewPort vp) {
117 this.vp = vp;
120 inputSys.setHeight(vp.getCamera().getHeight());
151 public void reshape(ViewPort vp, int w, int h) {
167 renderManager.setCamera(vp.getCamera(), true)
    [all...]
  /external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
p1.cpp 60 void test_spec(X0<void*> xvp, void *vp) {
61 xvp.f1(vp);
90 void test_func_template(X0<void *> xvp, void *vp, const void *cvp) {
91 xvp.ft1(vp, cvp);
p2.cpp 97 void test_spec(N0::X0<void*> xvp, void *vp) {
98 xvp.f1(vp);
235 void test_func_template(N0::X0<void *> xvp, void *vp, const void *cvp,
237 xvp.ft1(vp, cvp);
238 xvp.ft1(vp, i);
239 xvp.ft1(vp, u);
  /external/clang/test/CodeGen/
conditional.c 24 void* vp; local
25 cip = 0 ? vp : cip;
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/control/
Control.java 87 * @param vp
89 public void render(RenderManager rm, ViewPort vp);
AbstractControl.java 84 protected abstract void controlRender(RenderManager rm, ViewPort vp);
93 public void render(RenderManager rm, ViewPort vp) {
97 controlRender(rm, vp);
  /external/jmonkeyengine/engine/src/desktop/com/jme3/app/state/
ScreenshotAppState.java 58 public void initialize(RenderManager rm, ViewPort vp) {
60 reshape(vp, vp.getCamera().getWidth(), vp.getCamera().getHeight());
68 public void reshape(ViewPort vp, int w, int h) {

Completed in 1077 milliseconds

1 2 3 4 5 6