| /xsrc/external/mit/MesaLib.old/dist/src/mesa/tnl/ |
| H A D | t_vb_normals.c | 51 struct normal_stage_data *store = NORMAL_STAGE_DATA(stage); local in function:run_normal_stage 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 in function:validate_normal_stage 98 store 151 struct normal_stage_data *store; local in function:alloc_normal_data 169 struct normal_stage_data *store = NORMAL_STAGE_DATA(stage); local in function:free_normal_data [all...] |
| H A D | t_vb_texmat.c | 58 struct texmat_stage_data *store = TEXMAT_STAGE_DATA(stage); local in function:run_texmat_stage 70 (void) TransformRaw( &store->texcoord[i], 74 VB->AttribPtr[VERT_ATTRIB_TEX0+i] = &store->texcoord[i]; 88 struct texmat_stage_data *store; local in function:alloc_texmat_data 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 in function:free_texmat_data 108 if (store) { [all...] |
| H A D | t_vb_vertex.c | 140 struct vertex_stage_data *store = (struct vertex_stage_data *)stage->privatePtr; local in function:run_vertex_stage 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 238 struct vertex_stage_data *store; local in function:init_vertex_stage 263 struct vertex_stage_data *store = VERTEX_STAGE_DATA(stage); local in function:dtr [all...] |
| H A D | t_vb_points.c | 54 struct point_stage_data *store = POINT_STAGE_DATA(stage); local in function:run_point_stage 62 GLfloat (*size)[4] = store->PointSize.data; 73 VB->AttribPtr[_TNL_ATTRIB_POINTSIZE] = &store->PointSize; 84 struct point_stage_data *store; local in function:alloc_point_data 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 in function:free_point_data 99 if (store) { [all...] |
| H A D | t_vb_light.c | 198 update_materials(struct gl_context *ctx, struct light_stage_data *store) argument 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 223 prepare_materials(struct gl_context * ctx,struct vertex_buffer * VB,struct light_stage_data * store) argument 331 struct light_stage_data *store = LIGHT_STAGE_DATA(stage); local in function:run_lighting 425 struct light_stage_data *store; local in function:init_lighting 456 struct light_stage_data *store = LIGHT_STAGE_DATA(stage); local in function:dtr [all...] |
| H A D | t_vb_program.c | 127 do_ndc_cliptest(struct gl_context *ctx, struct vp_stage_data *store) argument 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 295 struct vp_stage_data *store = VP_STAGE_DATA(stage); local in function:run_vp 474 struct vp_stage_data *store; local in function:init_vp 496 struct vp_stage_data *store = VP_STAGE_DATA(stage); local in function:dtr [all...] |
| H A D | 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 250 texgen_reflection_map_nv(struct gl_context * ctx,struct texgen_stage_data * store,GLuint unit) argument 272 texgen_normal_map_nv(struct gl_context * ctx,struct texgen_stage_data * store,GLuint unit) argument 300 texgen_sphere_map(struct gl_context * ctx,struct texgen_stage_data * store,GLuint unit) argument 333 texgen(struct gl_context * ctx,struct texgen_stage_data * store,GLuint unit) argument 487 struct texgen_stage_data *store = TEXGEN_STAGE_DATA(stage); local in function:run_texgen_stage 511 struct texgen_stage_data *store = TEXGEN_STAGE_DATA(stage); local in function:validate_texgen_stage 563 struct texgen_stage_data *store; local in function:alloc_texgen_data 584 struct texgen_stage_data *store = TEXGEN_STAGE_DATA(stage); local in function:free_texgen_data [all...] |
| /xsrc/external/mit/MesaLib/dist/src/mesa/tnl/ |
| H A D | t_vb_normals.c | 51 struct normal_stage_data *store = NORMAL_STAGE_DATA(stage); local in function:run_normal_stage 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 in function:validate_normal_stage 98 store 151 struct normal_stage_data *store; local in function:alloc_normal_data 169 struct normal_stage_data *store = NORMAL_STAGE_DATA(stage); local in function:free_normal_data [all...] |
| H A D | t_vb_texmat.c | 58 struct texmat_stage_data *store = TEXMAT_STAGE_DATA(stage); local in function:run_texmat_stage 70 (void) TransformRaw( &store->texcoord[i], 74 VB->AttribPtr[VERT_ATTRIB_TEX0+i] = &store->texcoord[i]; 88 struct texmat_stage_data *store; local in function:alloc_texmat_data 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 in function:free_texmat_data 108 if (store) { [all...] |
| H A D | t_vb_vertex.c | 140 struct vertex_stage_data *store = (struct vertex_stage_data *)stage->privatePtr; local in function:run_vertex_stage 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 241 struct vertex_stage_data *store; local in function:init_vertex_stage 266 struct vertex_stage_data *store = VERTEX_STAGE_DATA(stage); local in function:dtr [all...] |
| H A D | t_vb_points.c | 54 struct point_stage_data *store = POINT_STAGE_DATA(stage); local in function:run_point_stage 62 GLfloat (*size)[4] = store->PointSize.data; 73 VB->AttribPtr[_TNL_ATTRIB_POINTSIZE] = &store->PointSize; 84 struct point_stage_data *store; local in function:alloc_point_data 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 in function:free_point_data 99 if (store) { [all...] |
| H A D | t_vb_light.c | 198 update_materials(struct gl_context *ctx, struct light_stage_data *store) argument 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 223 prepare_materials(struct gl_context * ctx,struct vertex_buffer * VB,struct light_stage_data * store) argument 331 struct light_stage_data *store = LIGHT_STAGE_DATA(stage); local in function:run_lighting 425 struct light_stage_data *store; local in function:init_lighting 456 struct light_stage_data *store = LIGHT_STAGE_DATA(stage); local in function:dtr [all...] |
| H A D | t_vb_program.c | 127 do_ndc_cliptest(struct gl_context *ctx, struct vp_stage_data *store) argument 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 295 struct vp_stage_data *store = VP_STAGE_DATA(stage); local in function:run_vp 477 struct vp_stage_data *store; local in function:init_vp 499 struct vp_stage_data *store = VP_STAGE_DATA(stage); local in function:dtr [all...] |
| H A D | 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 250 texgen_reflection_map_nv(struct gl_context * ctx,struct texgen_stage_data * store,GLuint unit) argument 272 texgen_normal_map_nv(struct gl_context * ctx,struct texgen_stage_data * store,GLuint unit) argument 300 texgen_sphere_map(struct gl_context * ctx,struct texgen_stage_data * store,GLuint unit) argument 333 texgen(struct gl_context * ctx,struct texgen_stage_data * store,GLuint unit) argument 487 struct texgen_stage_data *store = TEXGEN_STAGE_DATA(stage); local in function:run_texgen_stage 511 struct texgen_stage_data *store = TEXGEN_STAGE_DATA(stage); local in function:validate_texgen_stage 563 struct texgen_stage_data *store; local in function:alloc_texgen_data 584 struct texgen_stage_data *store = TEXGEN_STAGE_DATA(stage); local in function:free_texgen_data [all...] |
| /xsrc/external/mit/xf86-video-intel/dist/src/sna/brw/ |
| H A D | 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 in function:gen5_sf 139 brw_compile_init(&p, GEN, store); 147 uint32_t store[128]; local in function:gen5_sf_mask 150 brw_compile_init(&p, GEN, store); 158 uint32_t store[128]; local in function:gen5_wm_affine_nomask 161 brw_compile_init(&p, GEN, store); 169 uint32_t store[128]; local in function:gen5_wm_affine_mask_noca 172 brw_compile_init(&p, GEN, store); 180 uint32_t store[12 local in function:gen5_wm_affine_mask_ca 191 uint32_t store[128]; local in function:gen5_wm_projective_nomask [all...] |
| H A D | 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 in function:gen7_ps_nomask_affine 120 brw_compile_init(&p, GEN, store); 128 uint32_t store[1024]; local in function:gen7_ps_mask_affine 131 brw_compile_init(&p, GEN, store); 139 uint32_t store[1024]; local in function:gen7_ps_maskca_affine 142 brw_compile_init(&p, GEN, store); 150 uint32_t store[1024]; local in function:gen7_ps_masksa_affine 153 brw_compile_init(&p, GEN, store); 161 uint32_t store[102 local in function:gen7_ps_nomask_projective 172 uint32_t store[1024]; local in function:gen7_ps_opacity [all...] |
| H A D | 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 in function:gen4_sf__nomask 139 brw_compile_init(&p, GEN, store); 147 uint32_t store[128]; local in function:gen4_sf__mask 150 brw_compile_init(&p, GEN, store); 159 uint32_t store[128]; local in function:gen4_wm_kernel__affine_nomask 162 brw_compile_init(&p, GEN, store); 171 uint32_t store[128]; local in function:gen4_wm_kernel__affine_mask_noca 174 brw_compile_init(&p, GEN, store); 183 uint32_t store[12 local in function:gen4_wm_kernel__projective_nomask [all...] |
| H A D | 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 in function:gen6_ps_nomask_affine 175 brw_compile_init(&p, 060, store); 183 uint32_t store[1024]; local in function:gen6_ps_mask_affine 186 brw_compile_init(&p, 060, store); 194 uint32_t store[1024]; local in function:gen6_ps_nomask_projective 197 brw_compile_init(&p, 060, store);
|
| /xsrc/external/mit/xf86-video-intel-2014/dist/src/sna/brw/ |
| H A D | 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 in function:gen5_sf 139 brw_compile_init(&p, GEN, store); 147 uint32_t store[128]; local in function:gen5_sf_mask 150 brw_compile_init(&p, GEN, store); 158 uint32_t store[128]; local in function:gen5_wm_affine_nomask 161 brw_compile_init(&p, GEN, store); 169 uint32_t store[128]; local in function:gen5_wm_affine_mask_noca 172 brw_compile_init(&p, GEN, store); 180 uint32_t store[12 local in function:gen5_wm_affine_mask_ca 191 uint32_t store[128]; local in function:gen5_wm_projective_nomask [all...] |
| H A D | 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 in function:gen7_ps_nomask_affine 120 brw_compile_init(&p, GEN, store); 128 uint32_t store[1024]; local in function:gen7_ps_mask_affine 131 brw_compile_init(&p, GEN, store); 139 uint32_t store[1024]; local in function:gen7_ps_maskca_affine 142 brw_compile_init(&p, GEN, store); 150 uint32_t store[1024]; local in function:gen7_ps_masksa_affine 153 brw_compile_init(&p, GEN, store); 161 uint32_t store[102 local in function:gen7_ps_nomask_projective 172 uint32_t store[1024]; local in function:gen7_ps_opacity [all...] |
| H A D | 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 in function:gen4_sf__nomask 139 brw_compile_init(&p, GEN, store); 147 uint32_t store[128]; local in function:gen4_sf__mask 150 brw_compile_init(&p, GEN, store); 159 uint32_t store[128]; local in function:gen4_wm_kernel__affine_nomask 162 brw_compile_init(&p, GEN, store); 171 uint32_t store[128]; local in function:gen4_wm_kernel__affine_mask_noca 174 brw_compile_init(&p, GEN, store); 183 uint32_t store[12 local in function:gen4_wm_kernel__projective_nomask [all...] |
| H A D | 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 in function:gen6_ps_nomask_affine 175 brw_compile_init(&p, 060, store); 183 uint32_t store[1024]; local in function:gen6_ps_mask_affine 186 brw_compile_init(&p, 060, store); 194 uint32_t store[1024]; local in function:gen6_ps_nomask_projective 197 brw_compile_init(&p, 060, store);
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/v3d/ |
| H A D | 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 [all...] |
| /xsrc/external/mit/libX11/dist/src/ |
| H A D | PutBEvent.c | 41 XEvent store = *event; local in function:_XPutBackEvent 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/ |
| H A D | builder_tests.cpp | 52 nir_intrinsic_instr *store = local in function:__anonec79332a0110::nir_builder_test::store_test_val 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);
|