Searched defs:struct_type (Results 1 - 6 of 6) sorted by relevance

/external/mesa3d/src/glsl/
H A Dlower_ubo_reference.cpp133 const glsl_type *struct_type = deref_record->record->type; local
137 for (unsigned int i = 0; i < struct_type->length; i++) {
138 const glsl_type *type = struct_type->fields.structure[i].type;
143 if (strcmp(struct_type->fields.structure[i].name,
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_fs_visitor.cpp147 const glsl_type *struct_type = ir->record->type; local
152 for (unsigned int i = 0; i < struct_type->length; i++) {
153 if (strcmp(struct_type->fields.structure[i].name, ir->field) == 0)
155 offset += type_size(struct_type->fields.structure[i].type);
H A Dbrw_vec4_visitor.cpp1497 const glsl_type *struct_type = ir->record->type; local
1502 for (i = 0; i < struct_type->length; i++) {
1503 if (strcmp(struct_type->fields.structure[i].name, ir->field) == 0)
1505 offset += type_size(struct_type->fields.structure[i].type);
/external/mesa3d/src/mesa/program/
H A Dir_to_mesa.cpp1637 const glsl_type *struct_type = ir->record->type; local
1642 for (i = 0; i < struct_type->length; i++) {
1643 if (strcmp(struct_type->fields.structure[i].name, ir->field) == 0)
1645 offset += type_size(struct_type->fields.structure[i].type);
/external/mesa3d/src/mesa/state_tracker/
H A Dst_glsl_to_tgsi.cpp2064 const glsl_type *struct_type = ir->record->type; local
2069 for (i = 0; i < struct_type->length; i++) {
2070 if (strcmp(struct_type->fields.structure[i].name, ir->field) == 0)
2072 offset += type_size(struct_type->fields.structure[i].type);
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.mli577 (** [struct_type context tys] returns the structure type in the context
580 val struct_type : llcontext -> lltype array -> lltype var
896 [struct_type (Array.map type_of elts)] and containing the values [elts]

Completed in 204 milliseconds