Searched refs:ASSERTMSG (Results 1 – 7 of 7) sorted by relevance
| /CTR-SDK-1.0.0/CTR_SDK/sources/libraries/rdt/CTR/ |
| D | rdt_Deque.h | 160 ASSERTMSG(!IsFull(), "You cannot PushBack() anymore because deque is full."); in PushBack() 170 ASSERTMSG(!IsEmpty(), "You attempt to call PopFront(), but deque is empty."); in PopFront() 179 ASSERTMSG(!IsEmpty(), "You attempt to call const T& Front(), but deque is empty."); in Front() 188 ASSERTMSG(!IsEmpty(), "You attempt to call T& Front(), but deque is empty."); in Front() 197 ASSERTMSG(!IsEmpty(), "You attempt to call const T& Back(), but deque is empty."); in Back() 206 ASSERTMSG(!IsEmpty(), "You attempt to call T& Back(), but deque is empty."); in Back()
|
| D | rdt_Header.cpp | 51 ASSERTMSG(magicNum==MAGIC_NUMBER, "Wrong magic number."); in PrintDebugInfo() 52 ASSERTMSG(reserved==0, "Don't use reserved. Keep it as zero."); in PrintDebugInfo()
|
| D | rdt_Queue.h | 135 ASSERTMSG((m_back + 1) % N != m_front, "You can not Push() anymore because queue is full."); in Push() 145 ASSERTMSG(!IsEmpty(), "You attempt to execute Pop(), but queue is empty."); in Pop()
|
| D | rdt_Segment.cpp | 38 ASSERTMSG(len <= PAYLOAD_SIZE, "Amount of data excees payload.\n");; in SetData()
|
| D | rdt_Utility.h | 77 #define ASSERTMSG(exp, ...) (void) ((exp) || \ macro 90 #define ALIGN_ASSERT(exp, align) ASSERTMSG( ((uptr)(exp)) % (align) == 0, "%s must be %d byte align…
|
| D | rdt_ReceiverImpl.cpp | 562 ASSERTMSG(m_pState!=NULL, "It seems that state is not initialized.\n"); in GetStatus()
|
| D | rdt_SenderImpl.cpp | 739 ASSERTMSG(m_sendBuffer.IsEmpty(), "You cannot request FIN if send buffer is not empty."); in sendFinSegment()
|