Searched refs:vp (Results 126 - 150 of 287) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/mesa/src/src/gallium/tests/graw/
H A Dvs-test.c127 struct pipe_viewport_state vp; local
129 vp.scale[0] = half_width;
130 vp.scale[1] = half_height;
131 vp.scale[2] = half_depth;
132 vp.scale[3] = 1.0f;
134 vp.translate[0] = half_width + x;
135 vp.translate[1] = half_height + y;
136 vp.translate[2] = half_depth + z;
137 vp.translate[3] = 0.0f;
139 ctx->set_viewport_state( ctx, &vp );
[all...]
/external/mesa3d/src/gallium/tests/graw/
H A Dfs-test.c183 struct pipe_viewport_state vp; local
185 vp.scale[0] = half_width;
186 vp.scale[1] = half_height;
187 vp.scale[2] = half_depth;
188 vp.scale[3] = 1.0f;
190 vp.translate[0] = half_width + x;
191 vp.translate[1] = half_height + y;
192 vp.translate[2] = half_depth + z;
193 vp.translate[3] = 0.0f;
195 ctx->set_viewport_state( ctx, &vp );
[all...]
H A Dgs-test.c216 struct pipe_viewport_state vp; local
218 vp.scale[0] = half_width;
219 vp.scale[1] = half_height;
220 vp.scale[2] = half_depth;
221 vp.scale[3] = 1.0f;
223 vp.translate[0] = half_width + x;
224 vp.translate[1] = half_height + y;
225 vp.translate[2] = half_depth + z;
226 vp.translate[3] = 0.0f;
228 ctx->set_viewport_state( ctx, &vp );
[all...]
H A Dvs-test.c127 struct pipe_viewport_state vp; local
129 vp.scale[0] = half_width;
130 vp.scale[1] = half_height;
131 vp.scale[2] = half_depth;
132 vp.scale[3] = 1.0f;
134 vp.translate[0] = half_width + x;
135 vp.translate[1] = half_height + y;
136 vp.translate[2] = half_depth + z;
137 vp.translate[3] = 0.0f;
139 ctx->set_viewport_state( ctx, &vp );
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/
H A Dgas-parse.c276 yasm_valparam *vp; local
334 vp = yasm_vp_create_string(NULL, filename);
335 yasm_vps_append(&vps, vp);
374 yasm_valparam *vp; local
442 vp = yasm_vp_create_string(NULL, filename);
443 yasm_vps_append(&vps, vp);
591 yasm_valparam *vp = yasm_vp_create_expr(NULL, align); local
592 yasm_vps_append(extvps, vp);
816 yasm_valparam *vp; local
849 vp
1010 yasm_valparam *vp; local
1543 yasm_valparam *vp; local
[all...]
/external/clang/test/CodeGen/
H A Dbuiltins-ppc-altivec.c12 vector pixel vp = { 1, 2, 3, 4, 5, 6, 7, 8 }; variable
1173 res_vp = vec_ld(0, &vp);
1245 res_vp = vec_lvx(0, &vp);
1375 res_vp = vec_ldl(0, &vp);
1447 res_vp = vec_lvxl(0, &vp);
1686 res_vp = vec_mergeh(vp, vp);
1730 res_vp = vec_vmrghh(vp, vp);
1775 res_vp = vec_mergeh(vp, v
[all...]
/external/pdfium/fpdfsdk/src/javascript/
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...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/coff/
H A Dcoff-objfmt.c1322 coff_helper_gasflags(void *obj, yasm_valparam *vp, unsigned long line, void *d, argument
1329 const char *s = yasm_vp_string(vp);
1403 yasm_valparam *vp; local
1473 vp = yasm_vps_first(valparams);
1474 sectname = yasm_vp_string(vp);
1477 vp = yasm_vps_next(vp);
1542 flags_override = yasm_dir_helper(object, vp, line, help,
1676 yasm_valparam *vp; local
1683 vp
1717 yasm_valparam *vp; local
1812 yasm_valparam *vp, *vp2; local
1871 yasm_valparam *vp; local
1904 yasm_valparam *vp; local
1996 yasm_valparam *vp = yasm_vps_first(valparams); local
2060 yasm_valparam *vp = yasm_vps_first(valparams); local
2090 yasm_valparam *vp = yasm_vps_first(valparams); local
2129 yasm_valparam *vp = yasm_vps_first(valparams); local
2160 yasm_valparam *vp = yasm_vps_first(valparams); local
2216 yasm_valparam *vp = yasm_vps_first(valparams); local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/
H A Dnv30_state_validate.c251 struct pipe_viewport_state *vp = &nv30->viewport; local
254 PUSH_DATAf(push, vp->translate[0]);
255 PUSH_DATAf(push, vp->translate[1]);
256 PUSH_DATAf(push, vp->translate[2]);
257 PUSH_DATAf(push, vp->translate[3]);
258 PUSH_DATAf(push, vp->scale[0]);
259 PUSH_DATAf(push, vp->scale[1]);
260 PUSH_DATAf(push, vp->scale[2]);
261 PUSH_DATAf(push, vp->scale[3]);
263 PUSH_DATAf(push, vp
[all...]
/external/mesa3d/src/gallium/drivers/nv30/
H A Dnv30_state_validate.c251 struct pipe_viewport_state *vp = &nv30->viewport; local
254 PUSH_DATAf(push, vp->translate[0]);
255 PUSH_DATAf(push, vp->translate[1]);
256 PUSH_DATAf(push, vp->translate[2]);
257 PUSH_DATAf(push, vp->translate[3]);
258 PUSH_DATAf(push, vp->scale[0]);
259 PUSH_DATAf(push, vp->scale[1]);
260 PUSH_DATAf(push, vp->scale[2]);
261 PUSH_DATAf(push, vp->scale[3]);
263 PUSH_DATAf(push, vp
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_vs_constval.c189 const struct brw_vertex_program *vp = local
202 if (vp->program.Base.NumInstructions == 0) {
218 if (vp->program.Base.InputsRead & BITFIELD64_BIT(i))
222 for (insn = 0; insn < vp->program.Base.NumInstructions; insn++) {
223 struct prog_instruction *inst = &vp->program.Base.Instructions[insn];
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_vs_constval.c189 const struct brw_vertex_program *vp = local
202 if (vp->program.Base.NumInstructions == 0) {
218 if (vp->program.Base.InputsRead & BITFIELD64_BIT(i))
222 for (insn = 0; insn < vp->program.Base.NumInstructions; insn++) {
223 struct prog_instruction *inst = &vp->program.Base.Instructions[insn];
/external/mksh/src/
H A Dfuncs.c644 struct tbl *vp, **p; local
865 for (p = ktsort(&l->funs); (vp = *p++); ) {
866 if (flag && (vp->flag & flag) == 0)
870 tobool(vp->flag & FKSH),
871 vp->name, vp->val.t);
873 shf_puts(vp->name, shl_stdout);
879 varsearch(e->loc, &vp, wp[i], hash(wp[i]));
880 c_typeset_vardump(vp, flag, thing, pflag, istset);
891 struct tbl **blockvars, *vp; local
902 c_typeset_vardump(struct tbl *vp, uint32_t flag, int thing, bool pflag, bool istset) argument
1812 struct tbl *vp /* FU gcc */ = NULL, *vq; local
2476 struct tbl *vp; local
[all...]
H A Dmain.c190 struct tbl *vp; local
328 vp = global("PATH");
330 setstr(vp, def_path, KSH_RETURN_ERROR);
361 vp = global("PWD");
362 cp = str_val(vp);
371 setstr(vp, current_wd, KSH_RETURN_ERROR);
385 vp = global("PS1");
387 if (!(vp->flag & ISSET) ||
388 (!ksheuid && !strchr(str_val(vp), '#')))
390 setstr(vp, safe_promp
[all...]
/external/fio/
H A Dgoptions.c314 struct value_pair *vp; local
318 vp = &o->posval[0];
319 while (vp->ival) {
320 if (!strcmp(vp->ival, text)) {
324 vp++;
334 struct value_pair *vp; local
340 vp = &o->posval[0];
341 while (vp->ival) {
342 gtk_combo_box_text_append_text(GTK_COMBO_BOX_TEXT(c->combo), vp->ival);
343 if (o->def && !strcmp(vp
359 struct value_pair *vp; local
379 struct value_pair *vp; local
424 struct value_pair *vp; local
1207 struct value_pair *vp; local
[all...]
/external/chromium-trace/trace-viewer/src/tracing/
H A Dtimeline_viewport.js356 function ViewportMarker(vp, positionWorld) {
357 this.viewport_ = vp;
388 canvasH, rulerHeight, vp) {
395 var viewX = vp.xWorldToView(ts);
416 drawLine: function(ctx, viewLWorld, viewRWorld, canvasH, vp) {
420 var viewX = vp.xWorldToView(ts);
/external/chromium_org/third_party/mesa/src/src/mesa/tnl/
H A Dt_vertex.c290 GLuint nr, const GLfloat *vp,
303 if (vp) {
333 vtx->attr[j].vp = vp;
342 printf("%d: %s, vp %p, offset %d\n", i,
343 _tnl_format_info[format].name, (void *)vp,
415 if (a->vp) {
416 vtx->vp_scale[0] = a->vp[MAT_SX];
417 vtx->vp_scale[1] = a->vp[MAT_SY];
418 vtx->vp_scale[2] = a->vp[MAT_S
289 _tnl_install_attrs( struct gl_context *ctx, const struct tnl_attr_map *map, GLuint nr, const GLfloat *vp, GLuint unpacked_size ) argument
[all...]
/external/mesa3d/src/mesa/tnl/
H A Dt_vertex.c290 GLuint nr, const GLfloat *vp,
303 if (vp) {
333 vtx->attr[j].vp = vp;
342 printf("%d: %s, vp %p, offset %d\n", i,
343 _tnl_format_info[format].name, (void *)vp,
415 if (a->vp) {
416 vtx->vp_scale[0] = a->vp[MAT_SX];
417 vtx->vp_scale[1] = a->vp[MAT_SY];
418 vtx->vp_scale[2] = a->vp[MAT_S
289 _tnl_install_attrs( struct gl_context *ctx, const struct tnl_attr_map *map, GLuint nr, const GLfloat *vp, GLuint unpacked_size ) argument
[all...]
/external/chromium-trace/trace-viewer/src/tcmalloc/
H A Dheap_instance_track.js93 var vp = this.viewport;
115 var leftView = vp.xWorldToView(left);
125 var rightView = vp.xWorldToView(right);
/external/chromium-trace/trace-viewer/src/tracing/tracks/
H A Dtrack.js144 var vp = this.viewport;
145 var pixWidth = vp.xViewVectorToWorld(1);
151 vp.applyTransformToCanvas(ctx);
H A Dobject_instance_track.js88 var vp = this.viewport;
90 var snapshotRadiusWorld = vp.xViewVectorToWorld(height);
95 vp.applyTransformToCanvas(ctx);
139 var xView = vp.xWorldToView(x);
/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;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
H A Dnv50_surface.c433 struct nv50_program *vp; member in struct:nv50_blitctx::__anon13850
442 struct nv50_program vp; member in struct:nv50_blitctx
467 blit->vp.type = PIPE_SHADER_VERTEX;
468 blit->vp.translated = TRUE;
469 blit->vp.code = (uint32_t *)code; /* const_cast */
470 blit->vp.code_size = sizeof(code);
471 blit->vp.max_gpr = 4;
472 blit->vp.max_out = 5;
473 blit->vp.out_nr = 2;
474 blit->vp
[all...]
H A Dnv50_program.h81 } vp; member in struct:nv50_program
/external/mesa3d/src/gallium/drivers/nv50/
H A Dnv50_surface.c433 struct nv50_program *vp; member in struct:nv50_blitctx::__anon27261
442 struct nv50_program vp; member in struct:nv50_blitctx
467 blit->vp.type = PIPE_SHADER_VERTEX;
468 blit->vp.translated = TRUE;
469 blit->vp.code = (uint32_t *)code; /* const_cast */
470 blit->vp.code_size = sizeof(code);
471 blit->vp.max_gpr = 4;
472 blit->vp.max_out = 5;
473 blit->vp.out_nr = 2;
474 blit->vp
[all...]

Completed in 656 milliseconds

1234567891011>>