| /xsrc/external/mit/MesaLib/dist/src/compiler/spirv/ |
| H A D | vtn_variables.c | 1797 struct vtn_value *initializer) 2017 initializer && 2019 initializer = NULL; 2021 /* Only initialize variable when there is an initializer and it's not 2024 if (initializer && !initializer->is_undef_constant) { 2029 "Only Vulkan supports variable initializer " 2032 vtn_fail_if(initializer->value_type != vtn_value_type_constant || 2033 !initializer->is_null_constant, 2035 "as initializer, bu 1795 vtn_create_variable(struct vtn_builder * b,struct vtn_value * val,struct vtn_type * ptr_type,SpvStorageClass storage_class,struct vtn_value * initializer) argument 2361 struct vtn_value *initializer = count > 4 ? vtn_untyped_value(b, w[4]) : NULL; local in function:vtn_handle_variables [all...] |
| /xsrc/external/mit/MesaLib/dist/src/microsoft/compiler/ |
| H A D | dxil_internal.h | 88 const struct dxil_value *initializer; member in struct:dxil_gvar
|
| H A D | dxil_dump.c | 277 if (gvar->initializer) 278 _mesa_string_buffer_printf(d->buf, "init_id:%d\n", gvar->initializer->id);
|
| H A D | dxil_module.c | 1806 gvar->initializer = value; 1951 gvar->initializer ? gvar->initializer->id + 1 : 0, 1952 (gvar->initializer ? GVAR_LINKAGE_INTERNAL : GVAR_LINKAGE_EXTERNAL),
|
| /xsrc/external/mit/pixman/dist/pixman/ |
| H A D | pixman-implementation.c | 341 if (info->initializer) 342 info->initializer (iter, info);
|
| H A D | pixman-private.h | 278 pixman_iter_initializer_t initializer; member in struct:pixman_iter_info_t
|
| /xsrc/external/mit/MesaLib.old/dist/ |
| H A D | Android.common.mk | 39 -Wno-initializer-overrides \
|
| /xsrc/external/mit/MesaLib/dist/docs/relnotes/ |
| H A D | 7.10.2.rst | 55 [GLSL] fail to redeclare an array using initializer 128 - glsl: Only allow unsized array assignment in an initializer
|
| H A D | 20.0.3.rst | 101 - gallium: hud_context: Fix scalar initializer warning.
|
| H A D | 7.9.1.rst | 276 - glsl: Inherrit type of declared variable from initializer 277 - glsl: Inherrit type of declared variable from initializer after
|
| H A D | 7.9.rst | 97 initializer
|
| H A D | 17.1.0.rst | 197 narrowed from type 'int' to 'int16_t' (aka 'short') in initializer
|
| H A D | 10.6.0.rst | 269 specified in initializer
|
| H A D | 12.0.0.rst | 303 initializer
|
| H A D | 13.0.0.rst | 230 \`make check\` fails uniform-initializer-test
|
| H A D | 18.2.0.rst | 204 'unsigned int') in initializer list [-Wc++11-narrowing]
|
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/ |
| H A D | ast.h | 449 ast_expression *initializer); 456 ast_expression *initializer; member in class:ast_declaration
|
| H A D | glsl_parser_extras.cpp | 876 * Recurses through <type> and <expr> if <expr> is an aggregate initializer 881 * Operates on assignments involving an aggregate initializer. E.g., 1429 if (initializer) { 1431 initializer->print(); 1438 ast_expression *initializer) 1442 this->initializer = initializer; 1436 ast_declaration(const char * identifier,ast_array_specifier * array_specifier,ast_expression * initializer) argument
|
| H A D | ast_to_hir.cpp | 913 is_initializer ? "initializer" : "value", 2278 * are immediately sized by a constructor or initializer. 4390 * Generate the IR for an initializer in a variable declaration 4401 YYLTYPE initializer_loc = decl->initializer->get_location(); 4428 * OpenGL API; they cannot be declared with an initializer in a 4464 /* If the initializer is an ast_aggregate_initializer, recursively store 4468 if (decl->initializer->oper == ast_aggregate) 4469 _mesa_ast_set_aggregate_type(var->type, decl->initializer); 4472 ir_rvalue *rhs = decl->initializer->hir(initializer_instructions, state); 4538 decl->initializer [all...] |
| /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/ |
| H A D | glsl_parser_extras.cpp | 914 * Recurses through <type> and <expr> if <expr> is an aggregate initializer 919 * Operates on assignments involving an aggregate initializer. E.g., 1468 if (initializer) { 1470 initializer->print(); 1477 ast_expression *initializer) 1481 this->initializer = initializer; 1475 ast_declaration(const char * identifier,ast_array_specifier * array_specifier,ast_expression * initializer) argument
|
| H A D | ast.h | 453 ast_expression *initializer); 460 ast_expression *initializer; member in class:ast_declaration
|
| H A D | ast_to_hir.cpp | 913 is_initializer ? "initializer" : "value", 2318 * are immediately sized by a constructor or initializer. 4489 * Generate the IR for an initializer in a variable declaration 4500 YYLTYPE initializer_loc = decl->initializer->get_location(); 4527 * OpenGL API; they cannot be declared with an initializer in a 4563 /* If the initializer is an ast_aggregate_initializer, recursively store 4567 if (decl->initializer->oper == ast_aggregate) 4568 _mesa_ast_set_aggregate_type(var->type, decl->initializer); 4571 ir_rvalue *rhs = decl->initializer->hir(initializer_instructions, state); 4637 decl->initializer [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/spirv/ |
| H A D | vtn_variables.c | 2049 nir_constant *initializer) 2262 if (initializer) { 2264 nir_constant_clone(initializer, var->var); 2385 nir_constant *initializer = NULL; local in function:vtn_handle_variables 2387 initializer = vtn_value(b, w[4], vtn_value_type_constant)->constant; 2389 vtn_create_variable(b, val, ptr_type, storage_class, initializer); 2047 vtn_create_variable(struct vtn_builder * b,struct vtn_value * val,struct vtn_type * ptr_type,SpvStorageClass storage_class,nir_constant * initializer) argument
|
| /xsrc/external/mit/MesaLib/dist/docs/ |
| H A D | viewperf.rst | 258 array initializer statement, but it neglects to specify ``#version 120``
|
| /xsrc/external/mit/xorg-server.old/dist/hw/dmx/doc/ |
| H A D | doxygen.conf.in | 283 # the documentation. If the initializer consists of more lines than specified 285 # The appearance of the initializer of individual variables and defines in the
|