Lines Matching refs:t
226 reserving_port_operation(const T& e, op_type t) :
227 type(char(t)), my_arg(const_cast<T*>(&e)) {}
228 reserving_port_operation(const predecessor_type &s, op_type t) : type(char(t)),
230 reserving_port_operation(op_type t) : type(char(t)) {}
386 queueing_port_operation(const T& e, op_type t) :
387 type(char(t)), my_val(e), my_arg(nullptr)
391 queueing_port_operation(const T* p, op_type t) :
392 type(char(t)), my_arg(const_cast<T*>(p))
396 queueing_port_operation(op_type t) : type(char(t)), my_arg(nullptr)
550 key_matching_port_operation(const input_type& e, op_type t) :
551 type(char(t)), my_val(e), my_arg(nullptr) {}
553 key_matching_port_operation(const input_type* p, op_type t) :
554 type(char(t)), my_arg(const_cast<input_type*>(p)) {}
556 key_matching_port_operation(op_type t) : type(char(t)), my_arg(nullptr) {}
700 graph_task* t = allocator.new_object<task_type>(graph_ref, allocator, *my_node);
702 spawn_in_graph_arena(this->graph_ref, *t);
773 graph_task* t = allocator.new_object<task_type>(graph_ref, allocator, *my_node);
776 return t;
777 spawn_in_graph_arena(this->graph_ref, *t);
864 … key_matching_FE_operation(const unref_key_type& e , op_type t) : type(char(t)), my_val(e),
866 …key_matching_FE_operation(output_type *p, op_type t) : type(char(t)), my_output(p), bypass_t(nullp…
868 … key_matching_FE_operation(op_type t) : type(char(t)), my_output(nullptr), bypass_t(nullptr) {}
878 graph_task* fill_output_buffer(unref_key_type &t) {
882 this->current_key = t;
916 unref_key_type &t = current->my_val;
917 if(!(this->find_ref_with_key(t,p))) {
919 ev.my_key = t;
922 bool found = this->find_ref_with_key(t, p);
926 current->bypass_t = fill_output_buffer(t);
979 … graph_task *increment_key_count(unref_key_type const & t) override { // called from input_ports
980 key_matching_FE_operation op_data(t, inc_count);
1055 join_node_base_operation(const output_type& e, op_type t) : type(char(t)),
1057 join_node_base_operation(const successor_type &s, op_type t) : type(char(t)),
1059 join_node_base_operation(op_type t) : type(char(t)), bypass_t(nullptr) {}
1078 … graph_task* t = allocator.new_object<task_type>(my_graph, allocator, *this);
1080 spawn_in_graph_arena(my_graph, *t);
1232 K operator()(const T& t) const {
1233 return key_from_message<K>(t);
1239 const K& operator()(const T& t) const {
1240 return key_from_message<const K&>(t);