Lines Matching refs:t

195 static inline void fgt_multioutput_node(void* codeptr, string_resource_index t, void *g, void *inpu…
196 itt_make_task_group( ITT_DOMAIN_FLOW, input_port, FLOW_NODE, g, FLOW_GRAPH, t );
202 static inline void fgt_multioutput_node_with_body( void* codeptr, string_resource_index t, void *g,…
203 itt_make_task_group( ITT_DOMAIN_FLOW, input_port, FLOW_NODE, g, FLOW_GRAPH, t );
210 static inline void fgt_multiinput_node( void* codeptr, string_resource_index t, void *g, PortsTuple…
211 itt_make_task_group( ITT_DOMAIN_FLOW, output_port, FLOW_NODE, g, FLOW_GRAPH, t );
216 static inline void fgt_multiinput_multioutput_node( void* codeptr, string_resource_index t, void *n…
217 itt_make_task_group( ITT_DOMAIN_FLOW, n, FLOW_NODE, g, FLOW_GRAPH, t );
226 static inline void fgt_node( void* codeptr, string_resource_index t, void *g, void *output_port ) {
227 itt_make_task_group( ITT_DOMAIN_FLOW, output_port, FLOW_NODE, g, FLOW_GRAPH, t );
231 static void fgt_node_with_body( void* codeptr, string_resource_index t, void *g, void *output_port,…
232 itt_make_task_group( ITT_DOMAIN_FLOW, output_port, FLOW_NODE, g, FLOW_GRAPH, t );
237 static inline void fgt_node( void* codeptr, string_resource_index t, void *g, void *input_port, voi…
238 fgt_node( codeptr, t, g, output_port );
242 static inline void fgt_node_with_body( void* codeptr, string_resource_index t, void *g, void *inpu…
243 fgt_node_with_body( codeptr, t, g, output_port, body );
248 static inline void fgt_node( void* codeptr, string_resource_index t, void *g, void *input_port, vo…
249 fgt_node( codeptr, t, g, input_port, output_port );