• Home
  • Raw
  • Download

Lines Matching full:out

218             const Out *curOut = curGate->GetFirstOutConst();  in CheckStateOutput()
234 expected = 2; // 2: expected number of state out branches in CheckStateOutput()
242 … CheckFailed("Number of state out branches is not valid (expected:" + std::to_string(expected) + in CheckStateOutput()
255 const Out *curOut = curGate->GetFirstOutConst(); in CheckBranchOutput()
271 CheckFailed("Duplicate state out branches", -1); in CheckBranchOutput()
340 void Out::SetNextOut(const Out *ptr) in SetNextOut()
347 Out *Out::GetNextOut() in GetNextOut()
350 return reinterpret_cast<Out *>((reinterpret_cast<uint8_t *>(this)) + nextOut_); in GetNextOut()
353 const Out *Out::GetNextOutConst() const in GetNextOutConst()
356 return reinterpret_cast<const Out *>((reinterpret_cast<const uint8_t *>(this)) + nextOut_); in GetNextOutConst()
359 void Out::SetPrevOut(const Out *ptr) in SetPrevOut()
366 Out *Out::GetPrevOut() in GetPrevOut()
369 return reinterpret_cast<Out *>((reinterpret_cast<uint8_t *>(this)) + prevOut_); in GetPrevOut()
372 const Out *Out::GetPrevOutConst() const in GetPrevOutConst()
375 return reinterpret_cast<const Out *>((reinterpret_cast<const uint8_t *>(this)) + prevOut_); in GetPrevOutConst()
378 void Out::SetIndex(OutIdx idx) in SetIndex()
383 OutIdx Out::GetIndex() const in GetIndex()
388 Gate *Out::GetGate() in GetGate()
394 const Gate *Out::GetGateConst() const in GetGateConst()
400 void Out::SetPrevOutNull() in SetPrevOutNull()
405 bool Out::IsPrevOutNull() const in IsPrevOutNull()
410 void Out::SetNextOutNull() in SetNextOutNull()
415 bool Out::IsNextOutNull() const in IsNextOutNull()
420 bool Out::IsStateEdge() const in IsStateEdge()
507 } else { // only this out now in DeleteIn()
521 Out *Gate::GetOut(size_t idx) in GetOut()
524 return &reinterpret_cast<Out *>(this)[-1 - idx]; in GetOut()
527 const Out *Gate::GetOutConst(size_t idx) const in GetOutConst()
530 return &reinterpret_cast<const Out *>(this)[-1 - idx]; in GetOutConst()
533 Out *Gate::GetFirstOut() in GetFirstOut()
536 return reinterpret_cast<Out *>((reinterpret_cast<uint8_t *>(this)) + firstOut_); in GetFirstOut()
539 const Out *Gate::GetFirstOutConst() const in GetFirstOutConst()
542 return reinterpret_cast<const Out *>((reinterpret_cast<const uint8_t *>(this)) + firstOut_); in GetFirstOutConst()
555 void Gate::SetFirstOut(const Out *firstOut) in SetFirstOut()
566 LOG_COMPILER(INFO) << std::dec << "Gate In access out-of-bound! (idx=" << idx << ")"; in GetIn()
579 LOG_COMPILER(INFO) << std::dec << "Gate In access out-of-bound! (idx=" << idx << ")"; in GetInConst()
732 log += "], \"out\":["; in Print()
735 const Out *curOut = GetFirstOutConst(); in Print()
786 log += "], out=["; in ShortPrint()
789 const Out *curOut = GetFirstOutConst(); in ShortPrint()