HomeSort by: relevance | last modified time | path
    Searched refs:store (Results 1 - 25 of 436) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /xsrc/external/mit/MesaLib/dist/src/mesa/tnl/
t_vb_normals.c 51 struct normal_stage_data *store = NORMAL_STAGE_DATA(stage); local
55 if (!store->NormalTransform)
66 store->NormalTransform( ctx->ModelviewMatrixStack.Top,
70 &store->normal ); /* resulting normals */
73 store->normal.stride = 4 * sizeof(GLfloat);
76 store->normal.stride = 0;
79 VB->AttribPtr[_TNL_ATTRIB_NORMAL] = &store->normal;
87 * Examine current GL state and set the store->NormalTransform pointer
93 struct normal_stage_data *store = NORMAL_STAGE_DATA(stage); local
98 store->NormalTransform = NULL
151 struct normal_stage_data *store; local
169 struct normal_stage_data *store = NORMAL_STAGE_DATA(stage); local
    [all...]
t_vb_texmat.c 58 struct texmat_stage_data *store = TEXMAT_STAGE_DATA(stage); local
70 (void) TransformRaw( &store->texcoord[i],
74 VB->AttribPtr[VERT_ATTRIB_TEX0+i] = &store->texcoord[i];
88 struct texmat_stage_data *store; local
91 stage->privatePtr = calloc(1, sizeof(*store));
92 store = TEXMAT_STAGE_DATA(stage);
93 if (!store)
97 _mesa_vector4f_alloc( &store->texcoord[i], 0, VB->Size, 32 );
105 struct texmat_stage_data *store = TEXMAT_STAGE_DATA(stage); local
108 if (store) {
    [all...]
t_vb_vertex.c 140 struct vertex_stage_data *store = (struct vertex_stage_data *)stage->privatePtr; local
156 VB->EyePtr = TransformRaw( &store->eye,
164 VB->ClipPtr = TransformRaw( &store->clip,
187 store->ormask = 0;
188 store->andmask = CLIP_FRUSTUM_BITS;
193 &store->proj,
194 store->clipmask,
195 &store->ormask,
196 &store->andmask,
204 store->clipmask
241 struct vertex_stage_data *store; local
266 struct vertex_stage_data *store = VERTEX_STAGE_DATA(stage); local
    [all...]
t_vb_points.c 54 struct point_stage_data *store = POINT_STAGE_DATA(stage); local
62 GLfloat (*size)[4] = store->PointSize.data;
73 VB->AttribPtr[_TNL_ATTRIB_POINTSIZE] = &store->PointSize;
84 struct point_stage_data *store; local
85 stage->privatePtr = malloc(sizeof(*store));
86 store = POINT_STAGE_DATA(stage);
87 if (!store)
90 _mesa_vector4f_alloc( &store->PointSize, 0, VB->Size, 32 );
98 struct point_stage_data *store = POINT_STAGE_DATA(stage); local
99 if (store) {
    [all...]
t_vb_light.c 198 update_materials(struct gl_context *ctx, struct light_stage_data *store)
202 for (i = 0 ; i < store->mat_count ; i++) {
204 COPY_CLEAN_4V(store->mat[i].current, store->mat[i].size, store->mat[i].ptr);
206 STRIDE_F(store->mat[i].ptr, store->mat[i].stride);
210 _mesa_update_material( ctx, store->mat_bitmask );
224 struct vertex_buffer *VB, struct light_stage_data *store)
228 store->mat_count = 0
331 struct light_stage_data *store = LIGHT_STAGE_DATA(stage); local
425 struct light_stage_data *store; local
456 struct light_stage_data *store = LIGHT_STAGE_DATA(stage); local
    [all...]
t_vb_program.c 127 do_ndc_cliptest(struct gl_context *ctx, struct vp_stage_data *store)
134 store->ormask = 0;
135 store->andmask = CLIP_FRUSTUM_BITS;
142 &store->ndcCoords,
143 store->clipmask,
144 &store->ormask,
145 &store->andmask,
153 store->clipmask,
154 &store->ormask,
155 &store->andmask
295 struct vp_stage_data *store = VP_STAGE_DATA(stage); local
477 struct vp_stage_data *store; local
499 struct vp_stage_data *store = VP_STAGE_DATA(stage); local
    [all...]
t_vb_texgen.c 57 struct texgen_stage_data *store,
251 struct texgen_stage_data *store,
256 GLvector4f *out = &store->texcoord[unit];
273 struct texgen_stage_data *store,
278 GLvector4f *out = &store->texcoord[unit];
301 struct texgen_stage_data *store,
306 GLvector4f *out = &store->texcoord[unit];
310 GLfloat (*f)[3] = store->tmp_f;
311 GLfloat *m = store->tmp_m;
313 (build_m_tab[VB->EyePtr->size])( store->tmp_f
487 struct texgen_stage_data *store = TEXGEN_STAGE_DATA(stage); local
511 struct texgen_stage_data *store = TEXGEN_STAGE_DATA(stage); local
563 struct texgen_stage_data *store; local
584 struct texgen_stage_data *store = TEXGEN_STAGE_DATA(stage); local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/tnl/
t_vb_normals.c 51 struct normal_stage_data *store = NORMAL_STAGE_DATA(stage); local
55 if (!store->NormalTransform)
66 store->NormalTransform( ctx->ModelviewMatrixStack.Top,
70 &store->normal ); /* resulting normals */
73 store->normal.stride = 4 * sizeof(GLfloat);
76 store->normal.stride = 0;
79 VB->AttribPtr[_TNL_ATTRIB_NORMAL] = &store->normal;
87 * Examine current GL state and set the store->NormalTransform pointer
93 struct normal_stage_data *store = NORMAL_STAGE_DATA(stage); local
98 store->NormalTransform = NULL
151 struct normal_stage_data *store; local
169 struct normal_stage_data *store = NORMAL_STAGE_DATA(stage); local
    [all...]
t_vb_texmat.c 58 struct texmat_stage_data *store = TEXMAT_STAGE_DATA(stage); local
70 (void) TransformRaw( &store->texcoord[i],
74 VB->AttribPtr[VERT_ATTRIB_TEX0+i] = &store->texcoord[i];
88 struct texmat_stage_data *store; local
91 stage->privatePtr = calloc(1, sizeof(*store));
92 store = TEXMAT_STAGE_DATA(stage);
93 if (!store)
97 _mesa_vector4f_alloc( &store->texcoord[i], 0, VB->Size, 32 );
105 struct texmat_stage_data *store = TEXMAT_STAGE_DATA(stage); local
108 if (store) {
    [all...]
t_vb_vertex.c 140 struct vertex_stage_data *store = (struct vertex_stage_data *)stage->privatePtr; local
156 VB->EyePtr = TransformRaw( &store->eye,
161 VB->ClipPtr = TransformRaw( &store->clip,
184 store->ormask = 0;
185 store->andmask = CLIP_FRUSTUM_BITS;
190 &store->proj,
191 store->clipmask,
192 &store->ormask,
193 &store->andmask,
201 store->clipmask
238 struct vertex_stage_data *store; local
263 struct vertex_stage_data *store = VERTEX_STAGE_DATA(stage); local
    [all...]
t_vb_points.c 54 struct point_stage_data *store = POINT_STAGE_DATA(stage); local
62 GLfloat (*size)[4] = store->PointSize.data;
73 VB->AttribPtr[_TNL_ATTRIB_POINTSIZE] = &store->PointSize;
84 struct point_stage_data *store; local
85 stage->privatePtr = malloc(sizeof(*store));
86 store = POINT_STAGE_DATA(stage);
87 if (!store)
90 _mesa_vector4f_alloc( &store->PointSize, 0, VB->Size, 32 );
98 struct point_stage_data *store = POINT_STAGE_DATA(stage); local
99 if (store) {
    [all...]
t_vb_light.c 198 update_materials(struct gl_context *ctx, struct light_stage_data *store)
202 for (i = 0 ; i < store->mat_count ; i++) {
204 COPY_CLEAN_4V(store->mat[i].current, store->mat[i].size, store->mat[i].ptr);
206 STRIDE_F(store->mat[i].ptr, store->mat[i].stride);
210 _mesa_update_material( ctx, store->mat_bitmask );
224 struct vertex_buffer *VB, struct light_stage_data *store)
228 store->mat_count = 0
331 struct light_stage_data *store = LIGHT_STAGE_DATA(stage); local
425 struct light_stage_data *store; local
456 struct light_stage_data *store = LIGHT_STAGE_DATA(stage); local
    [all...]
t_vb_program.c 127 do_ndc_cliptest(struct gl_context *ctx, struct vp_stage_data *store)
134 store->ormask = 0;
135 store->andmask = CLIP_FRUSTUM_BITS;
142 &store->ndcCoords,
143 store->clipmask,
144 &store->ormask,
145 &store->andmask,
153 store->clipmask,
154 &store->ormask,
155 &store->andmask
295 struct vp_stage_data *store = VP_STAGE_DATA(stage); local
474 struct vp_stage_data *store; local
496 struct vp_stage_data *store = VP_STAGE_DATA(stage); local
    [all...]
t_vb_texgen.c 57 struct texgen_stage_data *store,
251 struct texgen_stage_data *store,
256 GLvector4f *out = &store->texcoord[unit];
273 struct texgen_stage_data *store,
278 GLvector4f *out = &store->texcoord[unit];
301 struct texgen_stage_data *store,
306 GLvector4f *out = &store->texcoord[unit];
310 GLfloat (*f)[3] = store->tmp_f;
311 GLfloat *m = store->tmp_m;
313 (build_m_tab[VB->EyePtr->size])( store->tmp_f
487 struct texgen_stage_data *store = TEXGEN_STAGE_DATA(stage); local
511 struct texgen_stage_data *store = TEXGEN_STAGE_DATA(stage); local
563 struct texgen_stage_data *store; local
584 struct texgen_stage_data *store = TEXGEN_STAGE_DATA(stage); local
    [all...]
  /xsrc/external/mit/xf86-video-intel/dist/src/sna/brw/
brw_test_gen5.c 130 #define compare(old) brw_test_compare(__FUNCTION__, p.gen, p.store, p.nr_insn, (struct brw_instruction *)old, ARRAY_SIZE(old))
136 uint32_t store[128]; local
139 brw_compile_init(&p, GEN, store);
147 uint32_t store[128]; local
150 brw_compile_init(&p, GEN, store);
158 uint32_t store[128]; local
161 brw_compile_init(&p, GEN, store);
169 uint32_t store[128]; local
172 brw_compile_init(&p, GEN, store);
180 uint32_t store[128] local
191 uint32_t store[128]; local
    [all...]
brw_test_gen7.c 112 #define compare(old) brw_test_compare(__FUNCTION__, p.gen, p.store, p.nr_insn, (struct brw_instruction *)old, ARRAY_SIZE(old))
117 uint32_t store[1024]; local
120 brw_compile_init(&p, GEN, store);
128 uint32_t store[1024]; local
131 brw_compile_init(&p, GEN, store);
139 uint32_t store[1024]; local
142 brw_compile_init(&p, GEN, store);
150 uint32_t store[1024]; local
153 brw_compile_init(&p, GEN, store);
161 uint32_t store[1024] local
172 uint32_t store[1024]; local
    [all...]
brw_test_gen4.c 132 #define compare(old) brw_test_compare(__FUNCTION__, p.gen, p.store, p.nr_insn, (struct brw_instruction *)old, ARRAY_SIZE(old)-8)
136 uint32_t store[128]; local
139 brw_compile_init(&p, GEN, store);
147 uint32_t store[128]; local
150 brw_compile_init(&p, GEN, store);
159 uint32_t store[128]; local
162 brw_compile_init(&p, GEN, store);
171 uint32_t store[128]; local
174 brw_compile_init(&p, GEN, store);
183 uint32_t store[128] local
    [all...]
brw_test_gen6.c 112 #define compare(old) brw_test_compare(__FUNCTION__, p.gen, p.store, p.nr_insn, (struct brw_instruction *)old, ARRAY_SIZE(old))
154 brw_disasm(stdout, &p->store[n], 60);
172 uint32_t store[1024]; local
175 brw_compile_init(&p, 060, store);
183 uint32_t store[1024]; local
186 brw_compile_init(&p, 060, store);
194 uint32_t store[1024]; local
197 brw_compile_init(&p, 060, store);
  /xsrc/external/mit/xf86-video-intel-2014/dist/src/sna/brw/
brw_test_gen5.c 130 #define compare(old) brw_test_compare(__FUNCTION__, p.gen, p.store, p.nr_insn, (struct brw_instruction *)old, ARRAY_SIZE(old))
136 uint32_t store[128]; local
139 brw_compile_init(&p, GEN, store);
147 uint32_t store[128]; local
150 brw_compile_init(&p, GEN, store);
158 uint32_t store[128]; local
161 brw_compile_init(&p, GEN, store);
169 uint32_t store[128]; local
172 brw_compile_init(&p, GEN, store);
180 uint32_t store[128] local
191 uint32_t store[128]; local
    [all...]
brw_test_gen7.c 112 #define compare(old) brw_test_compare(__FUNCTION__, p.gen, p.store, p.nr_insn, (struct brw_instruction *)old, ARRAY_SIZE(old))
117 uint32_t store[1024]; local
120 brw_compile_init(&p, GEN, store);
128 uint32_t store[1024]; local
131 brw_compile_init(&p, GEN, store);
139 uint32_t store[1024]; local
142 brw_compile_init(&p, GEN, store);
150 uint32_t store[1024]; local
153 brw_compile_init(&p, GEN, store);
161 uint32_t store[1024] local
172 uint32_t store[1024]; local
    [all...]
brw_test_gen4.c 132 #define compare(old) brw_test_compare(__FUNCTION__, p.gen, p.store, p.nr_insn, (struct brw_instruction *)old, ARRAY_SIZE(old)-8)
136 uint32_t store[128]; local
139 brw_compile_init(&p, GEN, store);
147 uint32_t store[128]; local
150 brw_compile_init(&p, GEN, store);
159 uint32_t store[128]; local
162 brw_compile_init(&p, GEN, store);
171 uint32_t store[128]; local
174 brw_compile_init(&p, GEN, store);
183 uint32_t store[128] local
    [all...]
brw_test_gen6.c 112 #define compare(old) brw_test_compare(__FUNCTION__, p.gen, p.store, p.nr_insn, (struct brw_instruction *)old, ARRAY_SIZE(old))
154 brw_disasm(stdout, &p->store[n], 60);
172 uint32_t store[1024]; local
175 brw_compile_init(&p, 060, store);
183 uint32_t store[1024]; local
186 brw_compile_init(&p, 060, store);
194 uint32_t store[1024]; local
197 brw_compile_init(&p, 060, store);
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/v3d/
v3dx_rcl.c 40 * dummy store.
49 cl_emit(cl, STORE_TILE_BUFFER_GENERAL, store) {
50 store.buffer_to_store = NONE;
95 /* Can't do raw ZSTENCIL loads -- need to load/store them to
129 cl_emit(cl, STORE_TILE_BUFFER_GENERAL, store) {
130 store.buffer_to_store = buffer;
131 store.address = cl_address(rsc->bo, surf->offset);
134 store.clear_buffer_being_stored = false;
137 store.output_image_format = V3D_OUTPUT_IMAGE_FORMAT_S8;
139 store.output_image_format = surf->format
    [all...]
  /xsrc/external/mit/libX11/dist/src/
PutBEvent.c 41 XEvent store = *event; local
54 /* if not claimed, then just fetch and store again */
57 store = *event;
60 store = copy;
68 qelt->event = store;
  /xsrc/external/mit/MesaLib/dist/src/compiler/nir/tests/
builder_tests.cpp 52 nir_intrinsic_instr *store = local
54 store->num_components = val->num_components;
55 store->src[0] = nir_src_for_ssa(&nir_build_deref_var(b, var)->dest.ssa);
56 store->src[1] = nir_src_for_ssa(val);
57 nir_intrinsic_set_write_mask(store, ((1 << val->num_components) - 1));
58 nir_builder_instr_insert(b, &store->instr);
60 stores.push_back(store);

Completed in 15 milliseconds

1 2 3 4 5 6 7 8 91011>>