Searched refs:vp (Results 26 - 50 of 287) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/mesa/src/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/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/ppp/pppd/plugins/radius/
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/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}}
/external/clang/test/Sema/
H A Dconditional-expr.c12 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/libcxx/test/language.support/support.dynamic/new.delete/new.delete.array/
H A Dnew_array_nothrow.pass.cpp38 void*volatile vp = operator new [] (std::numeric_limits<std::size_t>::max(), std::nothrow); local
40 assert(vp == 0);
/external/libcxx/test/language.support/support.dynamic/new.delete/new.delete.single/
H A Dnew_nothrow.pass.cpp38 void* vp = operator new (std::numeric_limits<std::size_t>::max(), std::nothrow); local
40 assert(vp == 0);
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
H A Dp1.cpp61 void test_spec(X0<void*> xvp, void *vp) { argument
62 xvp.f1(vp);
91 void test_func_template(X0<void *> xvp, void *vp, const void *cvp) { argument
92 xvp.ft1(vp, cvp);
/external/clang/test/CodeGenCXX/
H A Ddebug-info-alias.cpp37 v *vp;
/external/chromium_org/third_party/mesa/src/src/mesa/tnl/
H A Dt_vertex_generic.c54 const GLfloat * const vp = a->vp; local
56 out[0] = vp[0] * in[0] + vp[12];
57 out[1] = vp[5] * in[1] + vp[13];
58 out[2] = vp[10] * in[2] + vp[14];
66 const GLfloat * const vp = a->vp; local
78 const GLfloat * const vp = a->vp; local
90 const GLfloat * const vp = a->vp; local
102 const GLfloat * const vp = a->vp; local
113 const GLfloat * const vp = a->vp; local
124 const GLfloat * const vp = a->vp; local
135 const GLfloat * const vp = a->vp; local
145 const GLfloat * const vp = a->vp; local
585 const GLfloat * const vp = a->vp; local
601 const GLfloat * const vp = a->vp; local
614 const GLfloat * const vp = a->vp; local
[all...]
/external/mesa3d/src/mesa/tnl/
H A Dt_vertex_generic.c54 const GLfloat * const vp = a->vp; local
56 out[0] = vp[0] * in[0] + vp[12];
57 out[1] = vp[5] * in[1] + vp[13];
58 out[2] = vp[10] * in[2] + vp[14];
66 const GLfloat * const vp = a->vp; local
78 const GLfloat * const vp = a->vp; local
90 const GLfloat * const vp = a->vp; local
102 const GLfloat * const vp = a->vp; local
113 const GLfloat * const vp = a->vp; local
124 const GLfloat * const vp = a->vp; local
135 const GLfloat * const vp = a->vp; local
145 const GLfloat * const vp = a->vp; local
585 const GLfloat * const vp = a->vp; local
601 const GLfloat * const vp = a->vp; local
614 const GLfloat * const vp = a->vp; local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11tex/
H A Dd3d11tex.cpp94 D3D11_VIEWPORT vp; local
95 memset(&vp, 0, sizeof(vp));
96 vp.Width = (float)width;
97 vp.Height = (float)height;
98 vp.MaxDepth = 1.0f;
101 ctx->RSSetViewports(1, &vp);
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dgen6_viewport_state.c45 struct brw_clipper_viewport *vp; local
47 vp = brw_state_batch(brw, AUB_TRACE_CLIP_VP_STATE,
48 sizeof(*vp), 32, &brw->clip.vp_offset);
50 vp->xmin = -1.0;
51 vp->xmax = 1.0;
52 vp->ymin = -1.0;
53 vp->ymax = 1.0;
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11tex/
H A Dd3d11tex.cpp94 D3D11_VIEWPORT vp; local
95 memset(&vp, 0, sizeof(vp));
96 vp.Width = (float)width;
97 vp.Height = (float)height;
98 vp.MaxDepth = 1.0f;
101 ctx->RSSetViewports(1, &vp);
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dgen6_viewport_state.c45 struct brw_clipper_viewport *vp; local
47 vp = brw_state_batch(brw, AUB_TRACE_CLIP_VP_STATE,
48 sizeof(*vp), 32, &brw->clip.vp_offset);
50 vp->xmin = -1.0;
51 vp->xmax = 1.0;
52 vp->ymin = -1.0;
53 vp->ymax = 1.0;
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/
H A Dtcmalloc_large_unittest.cc68 unsigned char volatile* vp = p; // prevent optimizations local
72 vp[i * (size / kPoints)] = static_cast<unsigned char>(i);
76 CHECK(vp[i * (size / kPoints)] == static_cast<unsigned char>(i));
79 vp[size-1] = 'M';
80 CHECK(vp[size-1] == 'M');
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
H A Dtcmalloc_large_unittest.cc68 unsigned char volatile* vp = p; // prevent optimizations local
72 vp[i * (size / kPoints)] = static_cast<unsigned char>(i);
76 CHECK(vp[i * (size / kPoints)] == static_cast<unsigned char>(i));
79 vp[size-1] = 'M';
80 CHECK(vp[size-1] == 'M');
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
H A Dnouveau_util.h143 struct gl_viewport_attrib *vp = &ctx->Viewport; local
146 a[MAT_SX] = (float)vp->Width / 2;
149 a[MAT_SY] = (float)vp->Height / 2;
152 a[MAT_SY] = - (float)vp->Height / 2;
154 a[MAT_SZ] = fb->_DepthMaxF * (vp->Far - vp->Near) / 2;
160 struct gl_viewport_attrib *vp = &ctx->Viewport; local
163 a[0] = (float)vp->Width / 2 + vp->X;
166 a[1] = (float)vp
[all...]
/external/mesa3d/src/mesa/drivers/dri/nouveau/
H A Dnouveau_util.h143 struct gl_viewport_attrib *vp = &ctx->Viewport; local
146 a[MAT_SX] = (float)vp->Width / 2;
149 a[MAT_SY] = (float)vp->Height / 2;
152 a[MAT_SY] = - (float)vp->Height / 2;
154 a[MAT_SZ] = fb->_DepthMaxF * (vp->Far - vp->Near) / 2;
160 struct gl_viewport_attrib *vp = &ctx->Viewport; local
163 a[0] = (float)vp->Width / 2 + vp->X;
166 a[1] = (float)vp
[all...]
/external/pdfium/fpdfsdk/src/javascript/
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;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
H A Dnv50_shader_state.c150 struct nv50_program *vp = nv50->vertprog; local
152 if (!nv50_program_validate(nv50, vp))
154 nv50_program_update_context_state(nv50, vp, 0);
157 PUSH_DATA (push, vp->vp.attrs[0]);
158 PUSH_DATA (push, vp->vp.attrs[1]);
160 PUSH_DATA (push, vp->max_out);
162 PUSH_DATA (push, vp->max_gpr);
164 PUSH_DATA (push, vp
340 struct nv50_program *vp = nv50->gmtyprog ? nv50->gmtyprog : nv50->vertprog; local
491 nv50_vp_gp_mapping(uint8_t *map, int m, struct nv50_program *vp, struct nv50_program *gp) argument
524 struct nv50_program *vp = nv50->vertprog; local
[all...]
/external/mesa3d/src/gallium/drivers/nv50/
H A Dnv50_shader_state.c150 struct nv50_program *vp = nv50->vertprog; local
152 if (!nv50_program_validate(nv50, vp))
154 nv50_program_update_context_state(nv50, vp, 0);
157 PUSH_DATA (push, vp->vp.attrs[0]);
158 PUSH_DATA (push, vp->vp.attrs[1]);
160 PUSH_DATA (push, vp->max_out);
162 PUSH_DATA (push, vp->max_gpr);
164 PUSH_DATA (push, vp
340 struct nv50_program *vp = nv50->gmtyprog ? nv50->gmtyprog : nv50->vertprog; local
491 nv50_vp_gp_mapping(uint8_t *map, int m, struct nv50_program *vp, struct nv50_program *gp) argument
524 struct nv50_program *vp = nv50->vertprog; local
[all...]
/external/clang/test/CodeGen/
H A Dconditional.c24 void* vp; local
25 cip = 0 ? vp : cip;

Completed in 586 milliseconds

1234567891011>>