Lines Matching defs:out
177 std::ostream& operator<<(std::ostream& out, const RegisterContainer<Value>& container)
179 StreamStateSaver state_saver{out};
181 out << "RegisterContainer{\n";
182 out << std::hex;
183 out.fill('0');
189 out << " 0x" << std::setw(address_width) << static_cast<unsigned>(reg.address)
192 out << "}";
193 return out;
314 inline std::ostream& operator<<(std::ostream& out, const Genesys_Register_Set& regs)
316 out << regs.registers();
317 return out;
466 std::ostream& operator<<(std::ostream& out, const RegisterSettingSet<Value>& container)
468 StreamStateSaver state_saver{out};
470 out << "RegisterSettingSet{\n";
471 out << std::hex;
472 out.fill('0');
479 out << " 0x" << std::setw(address_width) << static_cast<unsigned>(reg.address)
483 out << "}";
484 return out;