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

1 2 3 4 5 6

  /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/mesa/tnl/
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_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_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_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...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/lima/ir/gp/
physical_regalloc.c 30 * load/store node
47 gpir_store_node *store = gpir_node_to_store(node); local
48 printf("%03d: store %d use reg %d\n", index, node->index, store->reg->index);
68 list_for_each_entry(gpir_store_node, store, &reg->defs_list, reg_link) {
69 if (store->node.preg.index < reg->start)
70 reg->start = store->node.preg.index;
120 /* update load/store node info for the real reg */
122 list_for_each_entry(gpir_store_node, store, &reg->defs_list, reg_link) {
123 store->index = reg->index >> 2
    [all...]
value_regalloc.c 47 /* create store node for spilled node */
48 gpir_store_node *store = gpir_node_create(spill->block, gpir_op_store_reg); local
49 store->child = spill;
50 /* no need to calculate other vreg values because store & spill won't
52 store->node.value_reg = spill->value_reg;
53 list_addtail(&store->node.list, &spill->list);
56 store->reg = reg;
57 list_addtail(&store->reg_link, &reg->defs_list);
78 gpir_node_add_dep(&store->node, spill, GPIR_DEP_INPUT);
node.c 359 gpir_store_node *store = gpir_node_to_store(parent); local
360 if (store->child == old_child)
361 store->child = new_child;
410 gpir_store_node *store = gpir_node_to_store(node); local
411 if (store->reg)
412 list_del(&store->reg_link);
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/tnl/
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_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_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_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...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/draw/
draw_pipe_util.c 79 ubyte *store = (ubyte *) MALLOC( MAX_VERTEX_SIZE * nr + local
81 if (!store)
86 FREE(store);
91 stage->tmp[i] = (struct vertex_header *)(store + i * MAX_VERTEX_SIZE);
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/draw/
draw_pipe_util.c 79 ubyte *store = (ubyte *) MALLOC( MAX_VERTEX_SIZE * nr ); local
81 if (!store)
86 FREE(store);
91 stage->tmp[i] = (struct vertex_header *)(store + i * MAX_VERTEX_SIZE);
  /xsrc/external/mit/MesaLib.old/dist/src/intel/compiler/
brw_nir_tcs_workarounds.c 113 nir_intrinsic_instr *store = local
115 store->num_components = 2;
116 nir_intrinsic_set_write_mask(store, WRITEMASK_XY);
117 nir_intrinsic_set_component(store, 2);
118 store->src[0] = nir_src_for_ssa(inner);
119 store->src[1] = nir_src_for_ssa(nir_imm_int(b, 0));
120 nir_builder_instr_insert(b, &store->instr);
  /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);
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/lima/ir/gp/
optimize.c 195 gpir_store_node *store = gpir_node_to_store(node); local
196 if (!BITSET_TEST(regs, store->reg->index))
node.c 382 gpir_store_node *store = gpir_node_to_store(parent); local
383 if (store->child == old_child)
384 store->child = new_child;
reduce_scheduler.c 88 * node need an extra reg to store its result. For example,
219 gpir_node *store = last_written[load->reg->index]; local
220 if (store && store->block == block) {
221 gpir_node_add_dep(store, node, GPIR_DEP_WRITE_AFTER_READ);
224 gpir_store_node *store = gpir_node_to_store(node); local
225 last_written[store->reg->index] = node;
  /xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/
nir_lower_scratch.c 93 nir_intrinsic_instr *store = local
95 store->num_components = intrin->num_components;
96 store->src[0] = nir_src_for_ssa(value);
97 store->src[1] = nir_src_for_ssa(offset);
98 nir_intrinsic_set_write_mask(store, nir_intrinsic_write_mask(intrin));
99 nir_intrinsic_set_align(store, align, 0);
100 nir_builder_instr_insert(b, &store->instr);
  /xsrc/external/mit/freetype/dist/src/tools/
glnames.py 4986 # We now store the Adobe Glyph List in compressed form. The list is put
4988 # appearance). Consider, for example, that you want to store the
4996 # It is possible to store the entries as follows.
5043 # to store its Unicode values. Additionally, no node has more than
5145 def store( self, storage ): member in class:StringNode
5172 storage = child.store( storage )
5360 dict_array = dict.store( "" )
  /xsrc/external/mit/MesaLib/dist/src/asahi/lib/
agx_device.h 65 uint32_t store; member in struct:agx_device::__anon615
  /xsrc/external/mit/MesaLib/dist/src/compiler/nir/
nir_intrinsics.py 132 # For store instructions, a writemask for the store.
214 # The nir_alu_type of input data to a store or conversion
546 # Image load, store and atomic intrinsics.
559 # in use are undefined. Image store takes an additional four-component
573 image("store", src_comp=[4, 1, 0, 1], extra_indices=[SRC_TYPE])
893 # load/store intrinsics. Typically, this is vec4 units for things such as
950 # to store and the second (and possibly third) source specify where to store
954 def store(name, srcs, indices=[], flags=[]) function
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/lima/ir/pp/
node.c 371 ppir_store_node *store = ppir_node_to_store(parent); local
372 _ppir_node_replace_child(&store->src, old_child, new_child);
node_to_instr.c 274 /* Only the store color node should appear here.
277 * 1. store a const node
278 * 2. store a load node
279 * 3. store a reg assigned in another block like loop/if
288 ppir_debug("node_to_instr create move %d from store %d\n",
294 * store is the root of this recursion */
303 ppir_store_node *store = ppir_node_to_store(node); local
304 alu->src[0] = store->src;
313 store->src.type = ppir_target_ssa;
314 store->src.ssa = &alu->dest.ssa
    [all...]

Completed in 71 milliseconds

1 2 3 4 5 6