HomeSort by relevance Sort by last modified time
    Searched refs:rzalloc_array (Results 1 - 11 of 11) sorted by null

  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_eu.c 183 p->store = rzalloc_array(mem_ctx, struct brw_instruction, p->store_size);
201 p->if_stack = rzalloc_array(mem_ctx, int, p->if_stack_array_size);
205 p->loop_stack = rzalloc_array(mem_ctx, int, p->loop_stack_array_size);
206 p->if_depth_in_loop = rzalloc_array(mem_ctx, int, p->loop_stack_array_size);
brw_fs_live_variables.cpp 141 bd = rzalloc_array(mem_ctx, struct block_data, cfg->num_blocks);
144 bd[i].def = rzalloc_array(mem_ctx, bool, num_vars);
145 bd[i].use = rzalloc_array(mem_ctx, bool, num_vars);
146 bd[i].livein = rzalloc_array(mem_ctx, bool, num_vars);
147 bd[i].liveout = rzalloc_array(mem_ctx, bool, num_vars);
brw_wm.c 309 c->instruction = rzalloc_array(c, struct brw_wm_instruction, BRW_WM_MAX_INSN);
310 c->prog_instructions = rzalloc_array(c, struct prog_instruction, BRW_WM_MAX_INSN);
311 c->vreg = rzalloc_array(c, struct brw_wm_value, BRW_WM_MAX_VREG);
312 c->refs = rzalloc_array(c, struct brw_wm_ref, BRW_WM_MAX_REF);
  /external/mesa3d/src/mesa/program/
register_allocate.c 171 regs->regs = rzalloc_array(regs, struct ra_reg, count);
174 regs->regs[i].conflicts = rzalloc_array(regs->regs, GLboolean, count);
241 class->regs = rzalloc_array(class, GLboolean, regs->count);
311 g->nodes = rzalloc_array(g, struct ra_node, count);
314 g->stack = rzalloc_array(g, unsigned int, count);
317 g->nodes[i].adjacency = rzalloc_array(g, GLboolean, count);
ir_to_mesa.cpp     [all...]
  /external/mesa3d/src/glsl/
ralloc.h 144 * \def rzalloc_array(ctx, type, count)
157 #define rzalloc_array(ctx, type, count) \ macro
link_uniforms.cpp 595 rzalloc_array(prog, struct gl_uniform_storage, num_user_uniforms);
597 rzalloc_array(uniforms, union gl_constant_value, num_data_slots);
linker.cpp     [all...]
ast_to_hir.cpp     [all...]
  /external/mesa3d/src/glsl/tests/
set_uniform_initializer_tests.cpp 111 prog->UniformStorage = rzalloc_array(prog, struct gl_uniform_storage,
123 rzalloc_array(prog, union gl_constant_value, total_components);
  /external/mesa3d/src/mesa/state_tracker/
st_glsl_to_tgsi.cpp     [all...]

Completed in 350 milliseconds