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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_vs_state.c 44 struct brw_vs_unit_state *vs; local
46 vs = brw_state_batch(brw, AUB_TRACE_VS_STATE,
47 sizeof(*vs), 32, &brw->vs.state_offset);
48 memset(vs, 0, sizeof(*vs));
51 vs->thread0.grf_reg_count = ALIGN(brw->vs.prog_data->total_grf, 16) / 16 - 1;
52 vs->thread0.kernel_start_pointer =
54 brw->vs.state_offset
    [all...]
brw_vs_surface_state.c 38 /* Creates a new VS constant buffer reflecting the current VS program's
39 * constants, if needed by the VS program.
64 if (!brw->vs.prog_data->nr_pull_params) {
65 if (brw->vs.const_bo) {
66 drm_intel_bo_unreference(brw->vs.const_bo);
67 brw->vs.const_bo = NULL;
68 brw->vs.surf_offset[SURF_INDEX_VERT_CONST_BUFFER] = 0;
75 drm_intel_bo_unreference(brw->vs.const_bo);
76 brw->vs.const_bo = drm_intel_bo_alloc(intel->bufmgr, "vp_const_buffer"
    [all...]
gen6_vs_state.c 44 unsigned int nr_params = brw->vs.prog_data->nr_params / 4;
57 if (brw->vs.prog_data->nr_params == 0 && !ctx->Transform.ClipPlanesEnabled) {
58 brw->vs.push_const_size = 0;
67 32, &brw->vs.push_const_offset);
69 if (brw->vs.prog_data->uses_new_param_layout) {
70 for (i = 0; i < brw->vs.prog_data->nr_params; i++) {
71 *param = *brw->vs.prog_data->param[i];
74 params_uploaded += brw->vs.prog_data->nr_params / 4;
77 * until we redo the VS backend.
96 if (brw->vs.constant_map[i] != -1)
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_vs_state.c 44 struct brw_vs_unit_state *vs; local
46 vs = brw_state_batch(brw, AUB_TRACE_VS_STATE,
47 sizeof(*vs), 32, &brw->vs.state_offset);
48 memset(vs, 0, sizeof(*vs));
51 vs->thread0.grf_reg_count = ALIGN(brw->vs.prog_data->total_grf, 16) / 16 - 1;
52 vs->thread0.kernel_start_pointer =
54 brw->vs.state_offset
    [all...]
brw_vs_surface_state.c 38 /* Creates a new VS constant buffer reflecting the current VS program's
39 * constants, if needed by the VS program.
64 if (!brw->vs.prog_data->nr_pull_params) {
65 if (brw->vs.const_bo) {
66 drm_intel_bo_unreference(brw->vs.const_bo);
67 brw->vs.const_bo = NULL;
68 brw->vs.surf_offset[SURF_INDEX_VERT_CONST_BUFFER] = 0;
75 drm_intel_bo_unreference(brw->vs.const_bo);
76 brw->vs.const_bo = drm_intel_bo_alloc(intel->bufmgr, "vp_const_buffer"
    [all...]
gen6_vs_state.c 44 unsigned int nr_params = brw->vs.prog_data->nr_params / 4;
57 if (brw->vs.prog_data->nr_params == 0 && !ctx->Transform.ClipPlanesEnabled) {
58 brw->vs.push_const_size = 0;
67 32, &brw->vs.push_const_offset);
69 if (brw->vs.prog_data->uses_new_param_layout) {
70 for (i = 0; i < brw->vs.prog_data->nr_params; i++) {
71 *param = *brw->vs.prog_data->param[i];
74 params_uploaded += brw->vs.prog_data->nr_params / 4;
77 * until we redo the VS backend.
96 if (brw->vs.constant_map[i] != -1)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_vs.c 69 if (size > draw->vs.const_storage_size[slot]) {
70 if (draw->vs.aligned_constant_storage[slot]) {
71 align_free((void *)draw->vs.aligned_constant_storage[slot]);
72 draw->vs.const_storage_size[slot] = 0;
74 draw->vs.aligned_constant_storage[slot] =
76 if (draw->vs.aligned_constant_storage[slot]) {
77 draw->vs.const_storage_size[slot] = size;
81 if (draw->vs.aligned_constant_storage[slot]) {
82 memcpy((void *)draw->vs.aligned_constant_storage[slot],
86 constants = draw->vs.aligned_constant_storage[slot]
104 struct draw_vertex_shader *vs = NULL; local
    [all...]
draw_vs_llvm.c 87 struct llvm_vertex_shader *vs = CALLOC_STRUCT( llvm_vertex_shader ); local
89 if (vs == NULL)
93 vs->base.state.tokens = tgsi_dup_tokens(state->tokens);
94 if (!vs->base.state.tokens) {
95 FREE(vs);
99 tgsi_scan_shader(state->tokens, &vs->base.info);
101 vs->variant_key_size =
103 vs->base.info.file_max[TGSI_FILE_INPUT]+1,
104 vs->base.info.file_max[TGSI_FILE_SAMPLER]+1);
106 vs->base.state.stream_output = state->stream_output
    [all...]
draw_vs_ppc.c 174 struct draw_ppc_vertex_shader *vs; local
176 vs = CALLOC_STRUCT( draw_ppc_vertex_shader );
177 if (vs == NULL)
181 vs->base.state.tokens = tgsi_dup_tokens(templ->tokens);
182 if (!vs->base.state.tokens)
185 tgsi_scan_shader(templ->tokens, &vs->base.info);
187 vs->base.draw = draw;
188 vs->base.create_variant = draw_vs_create_variant_generic;
189 vs->base.prepare = vs_ppc_prepare;
190 vs->base.run_linear = vs_ppc_run_linear
    [all...]
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_vs.c 69 if (size > draw->vs.const_storage_size[slot]) {
70 if (draw->vs.aligned_constant_storage[slot]) {
71 align_free((void *)draw->vs.aligned_constant_storage[slot]);
72 draw->vs.const_storage_size[slot] = 0;
74 draw->vs.aligned_constant_storage[slot] =
76 if (draw->vs.aligned_constant_storage[slot]) {
77 draw->vs.const_storage_size[slot] = size;
81 if (draw->vs.aligned_constant_storage[slot]) {
82 memcpy((void *)draw->vs.aligned_constant_storage[slot],
86 constants = draw->vs.aligned_constant_storage[slot]
104 struct draw_vertex_shader *vs = NULL; local
    [all...]
draw_vs_llvm.c 87 struct llvm_vertex_shader *vs = CALLOC_STRUCT( llvm_vertex_shader ); local
89 if (vs == NULL)
93 vs->base.state.tokens = tgsi_dup_tokens(state->tokens);
94 if (!vs->base.state.tokens) {
95 FREE(vs);
99 tgsi_scan_shader(state->tokens, &vs->base.info);
101 vs->variant_key_size =
103 vs->base.info.file_max[TGSI_FILE_INPUT]+1,
104 vs->base.info.file_max[TGSI_FILE_SAMPLER]+1);
106 vs->base.state.stream_output = state->stream_output
    [all...]
draw_vs_ppc.c 174 struct draw_ppc_vertex_shader *vs; local
176 vs = CALLOC_STRUCT( draw_ppc_vertex_shader );
177 if (vs == NULL)
181 vs->base.state.tokens = tgsi_dup_tokens(templ->tokens);
182 if (!vs->base.state.tokens)
185 tgsi_scan_shader(templ->tokens, &vs->base.info);
187 vs->base.draw = draw;
188 vs->base.create_variant = draw_vs_create_variant_generic;
189 vs->base.prepare = vs_ppc_prepare;
190 vs->base.run_linear = vs_ppc_run_linear
    [all...]
  /external/qemu/ui/
vnc-android.c 215 static inline uint32_t vnc_has_feature(VncState *vs, int feature) {
216 return (vs->features & (1 << feature));
227 static void vnc_disconnect_start(VncState *vs);
228 static void vnc_disconnect_finish(VncState *vs);
230 static void vnc_colordepth(VncState *vs);
273 static void vnc_update(VncState *vs, int x, int y, int w, int h)
275 struct VncSurface *s = &vs->guest;
300 VncState *vs = vd->clients; local
301 while (vs != NULL) {
302 vnc_update(vs, x, y, w, h)
391 VncState *vs = vd->clients; local
677 VncState *vs, *vn; local
714 VncState *vs = opaque; local
826 VncState *vs = opaque; local
851 VncState *vs = opaque; local
1050 VncState *vs = opaque; local
1134 VncState *vs = opaque; local
2067 VncState *vs = g_malloc0(sizeof(VncState)); local
2101 VncDisplay *vs = opaque; local
2114 VncDisplay *vs = g_malloc0(sizeof(*vs)); local
2144 VncDisplay *vs = ds ? (VncDisplay *)ds->opaque : vnc_display; local
2166 VncDisplay *vs = ds ? (VncDisplay *)ds->opaque : vnc_display; local
2182 VncDisplay *vs = ds ? (VncDisplay *)ds->opaque : vnc_display; local
2189 VncDisplay *vs = ds ? (VncDisplay *)ds->opaque : vnc_display; local
    [all...]
vnc.c 207 static inline uint32_t vnc_has_feature(VncState *vs, int feature) {
208 return (vs->features & (1 << feature));
219 static void vnc_disconnect_start(VncState *vs);
220 static void vnc_disconnect_finish(VncState *vs);
222 static void vnc_colordepth(VncState *vs);
265 static void vnc_update(VncState *vs, int x, int y, int w, int h)
267 struct VncSurface *s = &vs->guest;
292 VncState *vs = vd->clients; local
293 while (vs != NULL) {
294 vnc_update(vs, x, y, w, h)
383 VncState *vs = vd->clients; local
669 VncState *vs, *vn; local
706 VncState *vs = opaque; local
818 VncState *vs = opaque; local
843 VncState *vs = opaque; local
1043 VncState *vs = opaque; local
1127 VncState *vs = opaque; local
2060 VncState *vs = g_malloc0(sizeof(VncState)); local
2094 VncDisplay *vs = opaque; local
2109 VncDisplay *vs = g_malloc0(sizeof(*vs)); local
2139 VncDisplay *vs = ds ? (VncDisplay *)ds->opaque : vnc_display; local
2161 VncDisplay *vs = ds ? (VncDisplay *)ds->opaque : vnc_display; local
2177 VncDisplay *vs = ds ? (VncDisplay *)ds->opaque : vnc_display; local
2184 VncDisplay *vs = ds ? (VncDisplay *)ds->opaque : vnc_display; local
    [all...]
vnc-tls.h 66 int vnc_tls_client_setup(VncState *vs, int x509Creds);
67 void vnc_tls_client_cleanup(VncState *vs);
69 int vnc_tls_validate_certificate(VncState *vs);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_pipe_vs.c 103 struct svga_vertex_shader *vs = CALLOC_STRUCT(svga_vertex_shader); local
104 if (!vs)
109 vs->base.tokens = tgsi_dup_tokens(substitute_vs(svga->debug.shader_id,
115 tgsi_scan_shader(vs->base.tokens, &vs->base.info);
122 tmp2.tokens = vs->base.tokens;
123 vs->draw_shader = draw_create_vertex_shader(svga->swtnl.draw, &tmp2);
126 vs->base.id = svga->debug.shader_id++;
130 __FUNCTION__, vs->base.id,
131 vs->base.info.num_inputs, vs->base.info.num_outputs)
139 struct svga_vertex_shader *vs = (struct svga_vertex_shader *)shader; local
150 struct svga_vertex_shader *vs = (struct svga_vertex_shader *)shader; local
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_pipe_vs.c 103 struct svga_vertex_shader *vs = CALLOC_STRUCT(svga_vertex_shader); local
104 if (!vs)
109 vs->base.tokens = tgsi_dup_tokens(substitute_vs(svga->debug.shader_id,
115 tgsi_scan_shader(vs->base.tokens, &vs->base.info);
122 tmp2.tokens = vs->base.tokens;
123 vs->draw_shader = draw_create_vertex_shader(svga->swtnl.draw, &tmp2);
126 vs->base.id = svga->debug.shader_id++;
130 __FUNCTION__, vs->base.id,
131 vs->base.info.num_inputs, vs->base.info.num_outputs)
139 struct svga_vertex_shader *vs = (struct svga_vertex_shader *)shader; local
150 struct svga_vertex_shader *vs = (struct svga_vertex_shader *)shader; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
r300_vs.h 60 struct r300_vertex_shader *vs);
63 struct r300_vertex_shader *vs);
66 struct r300_vertex_shader *vs);
  /external/mesa3d/src/gallium/drivers/r300/
r300_vs.h 60 struct r300_vertex_shader *vs);
63 struct r300_vertex_shader *vs);
66 struct r300_vertex_shader *vs);
  /external/pdfium/core/src/fxge/agg/agg23/
agg_shorten_path.h 23 void shorten_path(VertexSequence& vs, FX_FLOAT s, unsigned closed = 0)
26 if(s > 0 && vs.size() > 1) {
28 int n = int(vs.size() - 2);
30 d = vs[n].dist;
34 vs.remove_last();
38 if(vs.size() < 2) {
39 vs.remove_all();
41 n = vs.size() - 1;
42 vertex_type& prev = vs[n - 1];
43 vertex_type& last = vs[n]
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_state_vs.c 83 const struct lp_vertex_shader *vs = (const struct lp_vertex_shader *)_vs; local
85 if (llvmpipe->vs == vs)
89 vs ? vs->draw_data : NULL);
91 llvmpipe->vs = vs;
98 llvmpipe_delete_vs_state(struct pipe_context *pipe, void *vs)
103 (struct lp_vertex_shader *)vs;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
r3xx_vertprog_dump.c 172 struct r300_vertex_program_code * vs = c->code; local
173 unsigned instrcount = vs->length / 4;
182 fprintf(stderr, "%d: op: 0x%08x", i, vs->body.d[offset]);
183 r300_vs_op_dump(vs->body.d[offset]);
186 fprintf(stderr, " src%i: 0x%08x", src, vs->body.d[offset+1+src]);
187 r300_vs_src_dump(vs->body.d[offset+1+src]);
191 fprintf(stderr, "Flow Control Ops: 0x%08x\n",vs->fc_ops);
192 for(i = 0; i < vs->num_fc_ops; i++) {
194 switch((vs->fc_ops >> (i * 2)) & 0x3 ) {
203 vs->fc_op_addrs.r500[i].uw
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_state_vs.c 83 const struct lp_vertex_shader *vs = (const struct lp_vertex_shader *)_vs; local
85 if (llvmpipe->vs == vs)
89 vs ? vs->draw_data : NULL);
91 llvmpipe->vs = vs;
98 llvmpipe_delete_vs_state(struct pipe_context *pipe, void *vs)
103 (struct lp_vertex_shader *)vs;
  /external/mesa3d/src/gallium/drivers/r300/compiler/
r3xx_vertprog_dump.c 172 struct r300_vertex_program_code * vs = c->code; local
173 unsigned instrcount = vs->length / 4;
182 fprintf(stderr, "%d: op: 0x%08x", i, vs->body.d[offset]);
183 r300_vs_op_dump(vs->body.d[offset]);
186 fprintf(stderr, " src%i: 0x%08x", src, vs->body.d[offset+1+src]);
187 r300_vs_src_dump(vs->body.d[offset+1+src]);
191 fprintf(stderr, "Flow Control Ops: 0x%08x\n",vs->fc_ops);
192 for(i = 0; i < vs->num_fc_ops; i++) {
194 switch((vs->fc_ops >> (i * 2)) & 0x3 ) {
203 vs->fc_op_addrs.r500[i].uw
    [all...]
  /external/clang/test/SemaCXX/
cxx0x-class.cpp 3 int vs = 0; variable
14 static const int nci = vs; // expected-error {{in-class initializer for static data member is not a constant expression}}

Completed in 337 milliseconds

1 2 3 4 5 6 7 8 91011>>