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

1 2 3 4 5 6 7 8 91011>>

  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r300/compiler/
radeon_rename_regs.c 52 struct rc_list * variables; local
68 variables = rc_get_variables(c);
70 for (var_ptr = variables; var_ptr; var_ptr = var_ptr->Next) {
radeon_pair_regalloc.c 522 struct rc_list * variables; local
526 /* Get list of program variables */
527 variables = rc_get_variables(s->C);
528 node_count = rc_list_count(variables);
532 for (var_ptr = variables, node_index = 0; var_ptr;
577 for (var_ptr = variables, node_index = 0; var_ptr;
604 for (var_ptr = variables, node_index = 0;
625 for (var_ptr = variables, node_index = 0; var_ptr;
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r300/compiler/
radeon_rename_regs.c 52 struct rc_list * variables; local
68 variables = rc_get_variables(c);
70 for (var_ptr = variables; var_ptr; var_ptr = var_ptr->Next) {
radeon_pair_regalloc.c 522 struct rc_list * variables; local
526 /* Get list of program variables */
527 variables = rc_get_variables(s->C);
528 node_count = rc_list_count(variables);
532 for (var_ptr = variables, node_index = 0; var_ptr;
577 for (var_ptr = variables, node_index = 0; var_ptr;
604 for (var_ptr = variables, node_index = 0;
625 for (var_ptr = variables, node_index = 0; var_ptr;
  /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/
gl_nir_link_uniform_blocks.c 49 * variables. They can be associated in debug information, but there is no
128 * "Uniform and shader storage block variables must also be decorated
314 * Iterates @type in order to compute how many individual leaf variables
339 struct gl_uniform_buffer_variable *variables,
348 variables[*variable_index].Type = type;
351 variables[*variable_index].RowMajor = glsl_matrix_type_is_row_major(type);
354 variables[*variable_index].RowMajor = false;
360 * root-variables, and we would need to recompute offsets when we iterate
363 variables[*variable_index].Offset = *offset;
371 struct gl_uniform_buffer_variable *variables,
453 struct gl_uniform_buffer_variable *variables = local
551 struct gl_uniform_buffer_variable *variables = NULL; local
    [all...]
link_uniform_blocks.cpp 37 ubo_visitor(void *mem_ctx, gl_uniform_buffer_variable *variables,
40 : index(0), offset(0), buffer_size(0), variables(variables),
60 gl_uniform_buffer_variable *variables; member in class:__anon693::ubo_visitor
113 gl_uniform_buffer_variable *v = &this->variables[this->index++];
222 gl_uniform_buffer_variable *variables,
238 ubo_visitor *parcel, gl_uniform_buffer_variable *variables,
255 parcel, variables, b, block_index,
259 parcel, variables, b, block_index,
269 ubo_visitor *parcel, gl_uniform_buffer_variable *variables,
356 gl_uniform_buffer_variable *variables = local
    [all...]
standalone.cpp 53 variables = _mesa_pointer_set_create(NULL);
58 _mesa_set_destroy(variables, NULL);
63 /* If the variable is auto or temp, add it to the set of variables that
69 _mesa_set_add(variables, ir);
76 struct set_entry *entry = _mesa_set_search(variables, ir->var);
79 * variables that are candidates for removal.
82 _mesa_set_remove(variables, entry);
89 set_foreach(variables, entry) {
98 set *variables; member in class:dead_variable_visitor
loop_analysis.cpp 40 * variables.
354 this->variables.push_tail(lv);
504 * variables in ways that cannot be known, and may even terminate shader
506 * rely on any of our analysis about assignments to variables.
528 foreach_in_list_safe(loop_variable, lv, &ls->variables) {
529 /* Move variables that are already marked as being loop constant to
549 * marked as a loop constant on one pass may allow other variables to be
556 foreach_in_list_safe(loop_variable, lv, &ls->variables) {
560 /* Process the RHS of the assignment. If all of the variables
577 /* The remaining variables that are not loop invariant might be loo
    [all...]
loop_analysis.h 32 * Analyze and classify all variables used in all loops in the instruction list
51 * Tracking for all variables used in a loop
62 * Variables that have not yet been classified
64 exec_list variables; member in class:loop_variable_state
67 * Variables whose values are constant within the body of the loop
74 * Induction variables for this loop
98 * Hash table containing all variables accessed in this loop
137 /** Are all variables in the RHS of the assignment loop constants? */
165 /* Induction variables always have a non-null increment, and vice
  /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/
link_uniform_blocks.cpp 37 ubo_visitor(void *mem_ctx, gl_uniform_buffer_variable *variables,
40 : index(0), offset(0), buffer_size(0), variables(variables),
60 gl_uniform_buffer_variable *variables; member in class:__anon3329::ubo_visitor
113 gl_uniform_buffer_variable *v = &this->variables[this->index++];
222 gl_uniform_buffer_variable *variables,
238 ubo_visitor *parcel, gl_uniform_buffer_variable *variables,
253 parcel, variables, b, block_index,
257 parcel, variables, b, block_index,
267 ubo_visitor *parcel, gl_uniform_buffer_variable *variables,
355 gl_uniform_buffer_variable *variables = local
    [all...]
loop_analysis.h 32 * Analyze and classify all variables used in all loops in the instruction list
51 * Tracking for all variables used in a loop
62 * Variables that have not yet been classified
64 exec_list variables; member in class:loop_variable_state
67 * Variables whose values are constant within the body of the loop
74 * Induction variables for this loop
98 * Hash table containing all variables accessed in this loop
137 /** Are all variables in the RHS of the assignment loop constants? */
165 /* Induction variables always have a non-null increment, and vice
standalone.cpp 52 variables = _mesa_pointer_set_create(NULL);
57 _mesa_set_destroy(variables, NULL);
62 /* If the variable is auto or temp, add it to the set of variables that
68 _mesa_set_add(variables, ir);
75 struct set_entry *entry = _mesa_set_search(variables, ir->var);
78 * variables that are candidates for removal.
81 _mesa_set_remove(variables, entry);
88 set_foreach(variables, entry) {
97 set *variables; member in class:dead_variable_visitor
loop_analysis.cpp 40 * variables.
305 this->variables.push_tail(lv);
457 * variables in ways that cannot be known, and may even terminate shader
459 * rely on any of our analysis about assignments to variables.
481 foreach_in_list_safe(loop_variable, lv, &ls->variables) {
482 /* Move variables that are already marked as being loop constant to
502 * marked as a loop constant on one pass may allow other variables to be
509 foreach_in_list_safe(loop_variable, lv, &ls->variables) {
513 /* Process the RHS of the assignment. If all of the variables
530 /* The remaining variables that are not loop invariant might be loo
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/
nir_search.c 40 nir_alu_src variables[NIR_SEARCH_MAX_VARIABLES]; member in struct:match_state
283 if (state->variables[var->variable].src.ssa != instr->src[src].src.ssa)
289 if (state->variables[var->variable].swizzle[i] != new_swizzle[i])
307 state->variables[var->variable].src = instr->src[src].src;
308 state->variables[var->variable].abs = false;
309 state->variables[var->variable].negate = false;
313 state->variables[var->variable].swizzle[i] = new_swizzle[i];
315 state->variables[var->variable].swizzle[i] = 0;
428 return nir_src_bit_size(state->variables[-value->bit_size - 1].src);
489 nir_alu_src_copy(&val, &state->variables[var->variable]
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/compiler/nir/
nir_lower_io_to_temporaries.c 25 * Implements a pass that lowers output and/or input variables to a
380 exec_list_append(&shader->variables, &state.old_inputs);
381 exec_list_append(&shader->variables, &state.old_outputs);
382 exec_list_append(&shader->variables, &state.new_inputs);
383 exec_list_append(&shader->variables, &state.new_outputs);
nir_search.c 47 nir_alu_src variables[NIR_SEARCH_MAX_VARIABLES]; member in struct:match_state
300 if (state->variables[var->variable].src.ssa != instr->src[src].src.ssa)
306 if (state->variables[var->variable].swizzle[i] != new_swizzle[i])
325 state->variables[var->variable].src = instr->src[src].src;
326 state->variables[var->variable].abs = false;
327 state->variables[var->variable].negate = false;
331 state->variables[var->variable].swizzle[i] = new_swizzle[i];
333 state->variables[var->variable].swizzle[i] = 0;
461 return nir_src_bit_size(state->variables[-value->bit_size - 1].src);
527 nir_alu_src_copy(&val, &state->variables[var->variable])
    [all...]
nir_lower_variable_initializers.c 95 /* Only some variables have initializers that we want to lower. Others
116 &shader->variables,
  /xsrc/external/mit/libXaw/dist/src/
Actions.c 89 /* variables */
98 XawActionVar **variables; member in struct:_XawActionVarList
124 /* variables */
141 /* variables */
869 * Start of Variables Implementation Code
995 list->variables = NULL;
1065 if (!list->variables)
1068 list->variables = (XawActionVar **)XtMalloc((Cardinal)sizeof(XawActionVar*));
1069 list->variables[0] = variable;
1074 list->variables = (XawActionVar **)XtRealloc((char *)list->variables
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/freedreno/vulkan/
tu_shader.c 84 tu_sort_variables_by_location(struct exec_list *variables)
89 nir_foreach_variable_safe(var, variables)
108 exec_list_move_nodes_to(&sorted, variables);
  /xsrc/external/mit/MesaLib.old/dist/src/amd/
Android.mk 25 # Import variables
  /xsrc/external/mit/MesaLib.old/dist/src/broadcom/
Android.mk 25 # Import variables
  /xsrc/external/mit/MesaLib.old/dist/src/intel/
Android.mk 25 # Import variables
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/
Android.libmesa_st_mesa.mk 29 # Import variables:
  /xsrc/external/mit/xinit/dist/
startx.cpp 6 XCOMM variables, then user .xinitrc and .xserverrc files, and then system
54 XCOMM Bourne shell does not automatically export modified environment variables
  /xsrc/external/mit/xedit/dist/lisp/
compile.c 300 /* Relative offsets the locally added variables will have at run time */
314 /* Bind variables */
373 /* Unbind variables */
454 /* Unbind any local variables */
549 /* If no local variables */
585 /* Bind the added variables */
591 /* Unbind the added variables */
615 /* If no local variables */
1088 /* Check for added variables that the jump is skiping the unbind opcode */
1179 int i, length = com->block->variables.length
    [all...]

Completed in 34 milliseconds

1 2 3 4 5 6 7 8 91011>>