Lines Matching refs:nInputs
1036 static void add_input_nodes(join_node_type &my_join, tbb::flow::graph &g, int nInputs) {
1037 for(int i = 0; i < nInputs; ++i) {
1038 … my_input_node_type *new_node = new my_input_node_type(g, my_input_body<IT, ELEM>(i, nInputs));
1044 input_node_helper<ELEM-1, JNT>::add_input_nodes(my_join, g, nInputs);
1072 static void remove_input_nodes(join_node_type& my_join, int nInputs) {
1073 for(int i = 0; i< nInputs; ++i) {
1078 input_node_helper<ELEM-1, JNT>::remove_input_nodes(my_join, nInputs);
1103 static void add_input_nodes(join_node_type &my_join, tbb::flow::graph &g, int nInputs) {
1104 for(int i = 0; i < nInputs; ++i) {
1105 … my_input_node_type *new_node = new my_input_node_type(g, my_input_body<IT, 1>(i, nInputs));
1132 static void remove_input_nodes(join_node_type& my_join, int nInputs) {
1133 for(int i = 0; i < nInputs; ++i) {
1178 for(int nInputs = 1; nInputs<=MaxNInputs; ++nInputs) {
1180 bool not_out_of_order = (nInputs==1)&&(!is_key_matching);
1188 input_node_helper<TUPLE_SIZE, JType>::add_input_nodes((*my_join), g, nInputs);
1210 input_node_helper<TUPLE_SIZE, JType>::remove_input_nodes((*my_join), nInputs);