| /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/glcpp/tests/ |
| H A D | 101-macros-used-twice.c | 2 #define function(x) 1 macro 11 #if function(0) 14 #if function(0)
|
| H A D | 056-macro-argument-with-comma.c | 2 #define function(x) success macro 3 #define foo function
|
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/glcpp/tests/ |
| H A D | 101-macros-used-twice.c | 2 #define function(x) 1 macro 11 #if function(0) 14 #if function(0)
|
| H A D | 056-macro-argument-with-comma.c | 2 #define function(x) success macro 3 #define foo function
|
| /xsrc/external/mit/libX11/dist/src/ |
| H A D | SetFunc.c | 36 int function) 39 if (gc->values.function != function) { 40 gc->values.function = function; 33 XSetFunction(register Display * dpy,GC gc,int function) argument
|
| H A D | SetState.c | 38 int function, 45 if (function != gv->function) { 46 gv->function = function; 33 XSetState(register Display * dpy,GC gc,unsigned long foreground,unsigned long background,int function,unsigned long planemask) argument
|
| /xsrc/external/mit/MesaLib.old/dist/src/intel/vulkan/ |
| H A D | anv_nir_lower_push_constants.c | 29 nir_foreach_function(function, shader) { 30 if (!function->impl) 33 nir_foreach_block(block, function->impl) {
|
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/ |
| H A D | nir_metadata.c | 72 nir_foreach_function(function, shader) { 73 if (function->impl) { 74 function->impl->valid_metadata |= nir_metadata_not_properly_reset; 83 * the earlier function was properly thrown away. Note that passes may not call 89 nir_foreach_function(function, shader) { 90 if (function->impl) { 91 assert(!(function->impl->valid_metadata &
|
| H A D | nir_lower_global_vars_to_local.c | 30 * one function and makes it local to that function 79 nir_foreach_function(function, shader) { 80 if (function->impl) { 81 nir_foreach_block(block, function->impl) 82 mark_global_var_uses_block(block, function->impl, var_func_table); 109 nir_foreach_function(function, shader) { 110 if (function->impl) { 111 function->impl->valid_metadata &= ~nir_metadata_not_properly_reset;
|
| H A D | nir_opt_shrink_load.c | 49 nir_foreach_function(function, shader) { 50 if (!function->impl) 53 nir_foreach_block(block, function->impl) { 62 nir_metadata_preserve(function->impl, nir_metadata_block_index |
|
| H A D | nir_lower_constant_initializers.c | 94 nir_foreach_function(function, shader) { 95 if (!function->impl) 101 nir_builder_init(&builder, function->impl); 103 if ((modes & nir_var_shader_out) && function->is_entrypoint) 106 if ((modes & nir_var_shader_temp) && function->is_entrypoint) 109 if ((modes & nir_var_system_value) && function->is_entrypoint) 113 impl_progress |= lower_const_initializer(&builder, &function->impl->locals); 117 nir_metadata_preserve(function->impl, nir_metadata_block_index | 122 function->impl->valid_metadata &= ~nir_metadata_not_properly_reset;
|
| /xsrc/external/mit/MesaLib/dist/src/compiler/nir/ |
| H A D | nir_metadata.c | 67 nir_foreach_function(function, shader) { 68 if (function->impl) 69 nir_metadata_preserve(function->impl, nir_metadata_all); 83 nir_foreach_function(function, shader) { 84 if (function->impl) { 85 function->impl->valid_metadata |= nir_metadata_not_properly_reset; 94 * the earlier function was properly thrown away. Note that passes may not call 100 nir_foreach_function(function, shader) { 101 if (function->impl) { 102 assert(!(function [all...] |
| H A D | nir_lower_global_vars_to_local.c | 30 * one function and makes it local to that function 79 nir_foreach_function(function, shader) { 80 if (function->impl) { 81 nir_foreach_block(block, function->impl) 82 mark_global_var_uses_block(block, function->impl, var_func_table); 109 nir_foreach_function(function, shader) { 110 if (function->impl) 111 nir_metadata_preserve(function->impl, nir_metadata_all);
|
| H A D | nir_remove_dead_variables.c | 98 nir_foreach_function(function, shader) { 99 if (function->impl) { 100 nir_foreach_block(block, function->impl) { 113 nir_foreach_function(function, shader) { 114 if (!function->impl) 117 nir_foreach_block(block, function->impl) { 202 nir_foreach_function(function, shader) { 203 if (function->impl) { 204 if (remove_dead_vars(&function->impl->locals, 214 nir_foreach_function(function, shade [all...] |
| /xsrc/external/mit/xf86-video-intel/dist/src/sna/brw/ |
| H A D | brw_test.c | 31 void brw_test_compare(const char *function, int gen, argument 39 printf ("%s: new\n", function); 43 printf ("%s: old\n", function);
|
| H A D | brw_test.h | 37 void brw_test_compare(const char *function, int gen,
|
| /xsrc/external/mit/xf86-video-intel-2014/dist/src/sna/brw/ |
| H A D | brw_test.c | 31 void brw_test_compare(const char *function, int gen, argument 39 printf ("%s: new\n", function); 43 printf ("%s: old\n", function);
|
| H A D | brw_test.h | 37 void brw_test_compare(const char *function, int gen,
|
| /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/ |
| H A D | ir_function_detect_recursion.cpp | 28 * Consider the (possibly disjoint) graph of function calls in a shader. If a 29 * program contains recursion, this graph will contain a cycle. If a function 31 * calls another function). 33 * To detect recursion, the function call graph is constructed. The graph is 34 * repeatedly reduced by removing any function that either has no callees 43 * function appearing more than once at any one time in the run-time stack 44 * of function calls. That is, a function may not call itself either 95 * present if the static function call graph of the program contains 103 * - Is it an error to have a recursive function tha 135 class function { class in namespace:__anon5c3c95490110 137 function(ir_function_signature *sig) function in class:__anon5c3c95490110::function [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/ |
| H A D | ir_function_detect_recursion.cpp | 28 * Consider the (possibly disjoint) graph of function calls in a shader. If a 29 * program contains recursion, this graph will contain a cycle. If a function 31 * calls another function). 33 * To detect recursion, the function call graph is constructed. The graph is 34 * repeatedly reduced by removing any function that either has no callees 43 * function appearing more than once at any one time in the run-time stack 44 * of function calls. That is, a function may not call itself either 95 * present if the static function call graph of the program contains 103 * - Is it an error to have a recursive function tha 135 class function { class in namespace:__anon3b9181b60110 137 function(ir_function_signature *sig) function in class:__anon3b9181b60110::function [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/util/ |
| H A D | os_memory_debug.h | 48 debug_malloc(const char *file, unsigned line, const char *function, 52 debug_calloc(const char *file, unsigned line, const char *function, 56 debug_free(const char *file, unsigned line, const char *function, 60 debug_realloc(const char *file, unsigned line, const char *function,
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/d3d10umd/ |
| H A D | Debug.cpp | 46 CheckHResult(HRESULT hr, const char *function, unsigned line) argument 60 DebugPrintf("%s: %u: 0x%08lX: %s", function, line, hr, lpMessageBuffer); 71 const char *function) 73 DebugPrintf("%s:%u:%s: Assertion `%s' failed.\n", file, line, function, expr); 68 AssertFail(const char * expr,const char * file,unsigned line,const char * function) argument
|
| /xsrc/external/mit/MesaLib/dist/src/util/ |
| H A D | os_memory_debug.h | 45 debug_malloc(const char *file, unsigned line, const char *function, 49 debug_calloc(const char *file, unsigned line, const char *function, 53 debug_free(const char *file, unsigned line, const char *function, 57 debug_realloc(const char *file, unsigned line, const char *function,
|
| /xsrc/external/mit/MesaLib/dist/src/panfrost/midgard/ |
| H A D | nir_fuse_io_16.c | 52 nir_foreach_function(function, shader) { 53 if (!function->impl) continue; 56 nir_builder_init(&b, function->impl); 58 nir_foreach_block(block, function->impl) { 92 nir_builder_init(&b, function->impl); 104 nir_metadata_preserve(function->impl, nir_metadata_block_index | nir_metadata_dominance);
|
| /xsrc/external/mit/MesaLib/dist/src/freedreno/decode/scripts/ |
| H A D | test.lua | 5 function start_cmdstream(name) 9 function draw(primtype, nindx) 18 function A6XX_TEX_CONST(pkt, size) 24 function end_cmdstream() 28 function finish()
|