Lines Matching refs:out
83 static inline bool reserve( InputTuple &my_input, OutputTuple &out) { in reserve()
84 if ( !std::get<N-1>( my_input ).reserve( std::get<N-1>( out ) ) ) return false; in reserve()
85 if ( !join_helper<N-1>::reserve( my_input, out ) ) { in reserve()
93 static inline bool get_my_item( InputTuple &my_input, OutputTuple &out) { in get_my_item()
94 bool res = std::get<N-1>(my_input).get_item(std::get<N-1>(out) ); // may fail in get_my_item()
95 …return join_helper<N-1>::get_my_item(my_input, out) && res; // do get on other inputs before… in get_my_item()
99 static inline bool get_items(InputTuple &my_input, OutputTuple &out) { in get_items()
100 return get_my_item(my_input, out); in get_items()
162 static inline bool reserve( InputTuple &my_input, OutputTuple &out) {
163 return std::get<0>( my_input ).reserve( std::get<0>( out ) );
167 static inline bool get_my_item( InputTuple &my_input, OutputTuple &out) {
168 return std::get<0>(my_input).get_item(std::get<0>(out));
172 static inline bool get_items(InputTuple &my_input, OutputTuple &out) {
173 return get_my_item(my_input, out);
724 bool try_to_make_tuple(output_type &out) {
726 return join_helper<N>::reserve(my_inputs, out);
798 bool try_to_make_tuple(output_type &out) {
800 return join_helper<N>::get_items(my_inputs, out);
1007 bool try_to_make_tuple(output_type &out) {
1008 key_matching_FE_operation op_data(&out,try_make);
1103 output_type out;
1113 … build_succeeded = try_to_make_tuple(out); // fetch front_end of queue
1115 graph_task *new_task = my_successors.try_put_task(out);