Searched refs:function (Results 1 - 25 of 1177) sorted by relevance

1234567891011>>

/xsrc/external/mit/MesaLib/dist/src/compiler/glsl/glcpp/tests/
H A D101-macros-used-twice.c2 #define function(x) 1 macro
11 #if function(0)
14 #if function(0)
H A D056-macro-argument-with-comma.c2 #define function(x) success macro
3 #define foo function
/xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/glcpp/tests/
H A D101-macros-used-twice.c2 #define function(x) 1 macro
11 #if function(0)
14 #if function(0)
H A D056-macro-argument-with-comma.c2 #define function(x) success macro
3 #define foo function
/xsrc/external/mit/libX11/dist/src/
H A DSetFunc.c36 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 DSetState.c38 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 Danv_nir_lower_push_constants.c29 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 Dnir_metadata.c72 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 Dnir_lower_global_vars_to_local.c30 * 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 Dnir_opt_shrink_load.c49 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 Dnir_lower_constant_initializers.c94 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 Dnir_metadata.c67 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 Dnir_lower_global_vars_to_local.c30 * 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 Dnir_remove_dead_variables.c98 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 Dbrw_test.c31 void brw_test_compare(const char *function, int gen, argument
39 printf ("%s: new\n", function);
43 printf ("%s: old\n", function);
H A Dbrw_test.h37 void brw_test_compare(const char *function, int gen,
/xsrc/external/mit/xf86-video-intel-2014/dist/src/sna/brw/
H A Dbrw_test.c31 void brw_test_compare(const char *function, int gen, argument
39 printf ("%s: new\n", function);
43 printf ("%s: old\n", function);
H A Dbrw_test.h37 void brw_test_compare(const char *function, int gen,
/xsrc/external/mit/MesaLib/dist/src/compiler/glsl/
H A Dir_function_detect_recursion.cpp28 * 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 Dir_function_detect_recursion.cpp28 * 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 Dos_memory_debug.h48 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 DDebug.cpp46 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 Dos_memory_debug.h45 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 Dnir_fuse_io_16.c52 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 Dtest.lua5 function start_cmdstream(name)
9 function draw(primtype, nindx)
18 function A6XX_TEX_CONST(pkt, size)
24 function end_cmdstream()
28 function finish()

Completed in 23 milliseconds

1234567891011>>