Lines Matching defs:Out
56 class Out {
58 Out() = default;
59 void SetNextOut(const Out *ptr);
60 [[nodiscard]] Out *GetNextOut();
61 [[nodiscard]] const Out *GetNextOutConst() const;
62 void SetPrevOut(const Out *ptr);
63 [[nodiscard]] Out *GetPrevOut();
64 [[nodiscard]] const Out *GetPrevOutConst() const;
74 ~Out() = default;
143 return numIns * (sizeof(In) + sizeof(Out)) + sizeof(Gate);
148 return numIns * sizeof(Out);
155 [[nodiscard]] Out *GetOut(size_t idx);
156 [[nodiscard]] Out *GetFirstOut();
157 [[nodiscard]] const Out *GetOutConst(size_t idx) const;
158 [[nodiscard]] const Out *GetFirstOutConst() const;
162 void SetFirstOut(const Out *firstOut);