HomeSort by relevance Sort by last modified time
    Searched refs:mem_ctx (Results 101 - 125 of 176) sorted by null

1 2 3 45 6 7 8

  /external/mesa3d/src/glsl/
glsl_symbol_table.h 122 void *mem_ctx; member in struct:glsl_symbol_table
ir_print_visitor.h 90 void *mem_ctx; member in class:ir_print_visitor
glsl_types.h 89 * easier to just ralloc_free 'mem_ctx' (or any of its ancestors). */
92 if (glsl_type::mem_ctx == NULL) {
93 glsl_type::mem_ctx = ralloc_context(NULL); member in class:glsl_type::glsl_type
94 assert(glsl_type::mem_ctx != NULL);
99 type = ralloc_size(glsl_type::mem_ctx, size);
476 static void *mem_ctx; member in struct:glsl_type
ir_reader.cpp 38 void *mem_ctx; member in class:ir_reader
69 this->mem_ctx = state;
197 f = new(mem_ctx) ir_function(name->value());
252 sig = new(mem_ctx) ir_function_signature(return_type);
326 return new(mem_ctx) ir_loop_jump(ir_loop_jump::jump_break);
328 return new(mem_ctx) ir_loop_jump(ir_loop_jump::jump_continue);
383 ir_variable *var = new(mem_ctx) ir_variable(type, s_name->value(),
450 ir_if *iff = new(mem_ctx) ir_if(condition);
476 ir_loop *loop = new(mem_ctx) ir_loop;
499 return new(mem_ctx) ir_return(retval)
    [all...]
ir_variable_refcount.cpp 59 ir_variable_refcount_entry *entry = new(mem_ctx) ir_variable_refcount_entry(var);
loop_analysis.h 250 void *mem_ctx; member in class:loop_state
glsl_types.cpp 37 void *glsl_type::mem_ctx = NULL; member in class:glsl_type
42 if (glsl_type::mem_ctx == NULL) {
43 glsl_type::mem_ctx = ralloc_autofree_context(); member in class:glsl_type
44 assert(glsl_type::mem_ctx != NULL);
59 this->name = ralloc_strdup(this->mem_ctx, name);
77 this->name = ralloc_strdup(this->mem_ctx, name);
92 this->name = ralloc_strdup(this->mem_ctx, name);
93 this->fields.structure = ralloc_array(this->mem_ctx,
384 char *const n = (char *) ralloc_size(this->mem_ctx, name_length);
474 hash_table_insert(array_types, (void *) t, ralloc_strdup(mem_ctx, key))
    [all...]
ir_optimization.h 83 unsigned base, unsigned components, void *mem_ctx);
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_cse.cpp 88 void *mem_ctx = ralloc_context(this->mem_ctx); local
118 aeb_entry *entry = ralloc(mem_ctx, aeb_entry);
166 ralloc_free(mem_ctx);
brw_sf.c 56 void *mem_ctx; local
62 mem_ctx = ralloc_context(NULL);
65 brw_init_compile(brw, &c.func, mem_ctx);
130 ralloc_free(mem_ctx);
brw_fs_schedule_instructions.cpp 115 instruction_scheduler(fs_visitor *v, void *mem_ctx, int virtual_grf_count)
118 this->mem_ctx = ralloc_context(mem_ctx);
126 ralloc_free(this->mem_ctx);
138 void *mem_ctx; member in class:instruction_scheduler
149 schedule_node *n = new(mem_ctx) schedule_node(inst);
188 before->children = reralloc(mem_ctx, before->children,
191 before->child_latency = reralloc(mem_ctx, before->child_latency,
506 instruction_scheduler sched(this, mem_ctx, this->virtual_grf_count);
brw_clip.c 57 void *mem_ctx; local
63 mem_ctx = ralloc_context(NULL);
67 brw_init_compile(brw, &c.func, mem_ctx);
130 ralloc_free(mem_ctx);
brw_shader.cpp 112 void *mem_ctx = ralloc_context(NULL); local
118 clone_ir_list(mem_ctx, shader->ir, shader->base.ir);
197 ralloc_free(mem_ctx);
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
register_allocate.h 39 struct ra_regs *ra_alloc_reg_set(void *mem_ctx, unsigned int count);
  /external/mesa3d/src/mesa/program/
register_allocate.h 39 struct ra_regs *ra_alloc_reg_set(void *mem_ctx, unsigned int count);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_fs_schedule_instructions.cpp 115 instruction_scheduler(fs_visitor *v, void *mem_ctx, int virtual_grf_count)
118 this->mem_ctx = ralloc_context(mem_ctx);
126 ralloc_free(this->mem_ctx);
138 void *mem_ctx; member in class:instruction_scheduler
149 schedule_node *n = new(mem_ctx) schedule_node(inst);
188 before->children = reralloc(mem_ctx, before->children,
191 before->child_latency = reralloc(mem_ctx, before->child_latency,
506 instruction_scheduler sched(this, mem_ctx, this->virtual_grf_count);
brw_clip.c 57 void *mem_ctx; local
63 mem_ctx = ralloc_context(NULL);
67 brw_init_compile(brw, &c.func, mem_ctx);
130 ralloc_free(mem_ctx);
brw_shader.cpp 112 void *mem_ctx = ralloc_context(NULL); local
118 clone_ir_list(mem_ctx, shader->ir, shader->base.ir);
197 ralloc_free(mem_ctx);
brw_vec4_visitor.cpp 69 return emit(new(mem_ctx) vec4_instruction(this, opcode, dst,
77 return emit(new(mem_ctx) vec4_instruction(this, opcode, dst, src0, src1));
83 return emit(new(mem_ctx) vec4_instruction(this, opcode, dst, src0));
89 return emit(new(mem_ctx) vec4_instruction(this, opcode, dst_reg()));
96 return new(mem_ctx) vec4_instruction(this, BRW_OPCODE_##op, dst, \
104 return new(mem_ctx) vec4_instruction(this, BRW_OPCODE_##op, dst, \
129 inst = new(mem_ctx) vec4_instruction(this, BRW_OPCODE_IF);
146 inst = new(mem_ctx) vec4_instruction(this, BRW_OPCODE_IF, dst_null_d(),
176 inst = new(mem_ctx) vec4_instruction(this, BRW_OPCODE_CMP, dst, src0, src1);
187 inst = new(mem_ctx) vec4_instruction(this, VS_OPCODE_SCRATCH_READ
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
glsl_types.h 89 * easier to just ralloc_free 'mem_ctx' (or any of its ancestors). */
92 if (glsl_type::mem_ctx == NULL) {
93 glsl_type::mem_ctx = ralloc_context(NULL); member in class:glsl_type::glsl_type
94 assert(glsl_type::mem_ctx != NULL);
99 type = ralloc_size(glsl_type::mem_ctx, size);
476 static void *mem_ctx; member in struct:glsl_type
ir_reader.cpp 38 void *mem_ctx; member in class:ir_reader
69 this->mem_ctx = state;
197 f = new(mem_ctx) ir_function(name->value());
252 sig = new(mem_ctx) ir_function_signature(return_type);
326 return new(mem_ctx) ir_loop_jump(ir_loop_jump::jump_break);
328 return new(mem_ctx) ir_loop_jump(ir_loop_jump::jump_continue);
383 ir_variable *var = new(mem_ctx) ir_variable(type, s_name->value(),
450 ir_if *iff = new(mem_ctx) ir_if(condition);
476 ir_loop *loop = new(mem_ctx) ir_loop;
499 return new(mem_ctx) ir_return(retval)
    [all...]
ir_variable_refcount.cpp 59 ir_variable_refcount_entry *entry = new(mem_ctx) ir_variable_refcount_entry(var);
loop_analysis.h 250 void *mem_ctx; member in class:loop_state
glsl_types.cpp 37 void *glsl_type::mem_ctx = NULL; member in class:glsl_type
42 if (glsl_type::mem_ctx == NULL) {
43 glsl_type::mem_ctx = ralloc_autofree_context(); member in class:glsl_type
44 assert(glsl_type::mem_ctx != NULL);
59 this->name = ralloc_strdup(this->mem_ctx, name);
77 this->name = ralloc_strdup(this->mem_ctx, name);
92 this->name = ralloc_strdup(this->mem_ctx, name);
93 this->fields.structure = ralloc_array(this->mem_ctx,
384 char *const n = (char *) ralloc_size(this->mem_ctx, name_length);
474 hash_table_insert(array_types, (void *) t, ralloc_strdup(mem_ctx, key))
    [all...]
ir_optimization.h 83 unsigned base, unsigned components, void *mem_ctx);

Completed in 1229 milliseconds

1 2 3 45 6 7 8