Home
last modified time | relevance | path

Searched refs:ASSERTMSG (Results 1 – 7 of 7) sorted by relevance

/CTR-SDK-1.0.0/CTR_SDK/sources/libraries/rdt/CTR/
Drdt_Deque.h160 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()
Drdt_Header.cpp51 ASSERTMSG(magicNum==MAGIC_NUMBER, "Wrong magic number."); in PrintDebugInfo()
52 ASSERTMSG(reserved==0, "Don't use reserved. Keep it as zero."); in PrintDebugInfo()
Drdt_Queue.h135 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()
Drdt_Segment.cpp38 ASSERTMSG(len <= PAYLOAD_SIZE, "Amount of data excees payload.\n");; in SetData()
Drdt_Utility.h77 #define ASSERTMSG(exp, ...) (void) ((exp) || \ macro
90 #define ALIGN_ASSERT(exp, align) ASSERTMSG( ((uptr)(exp)) % (align) == 0, "%s must be %d byte align…
Drdt_ReceiverImpl.cpp562 ASSERTMSG(m_pState!=NULL, "It seems that state is not initialized.\n"); in GetStatus()
Drdt_SenderImpl.cpp739 ASSERTMSG(m_sendBuffer.IsEmpty(), "You cannot request FIN if send buffer is not empty."); in sendFinSegment()