Searched refs:NN_TASSERTMSG_ (Results 1 – 15 of 15) sorted by relevance
| /CTR-SDK-2.4.0/include/nn/ |
| D | assert.h | 66 #define NN_TASSERTMSG_(exp, ...) \ macro 92 #define NN_TASSERTMSG_(exp, ...) \ macro 101 #define NN_TASSERTMSG_(exp, ...) \ macro 112 #define NN_TASSERTMSG_(exp, ...) ((void)0) macro 125 #define NN_TASSERT_(exp) NN_TASSERTMSG_((exp), "%s", #exp) 133 #define NN_NULL_TASSERT_(exp) NN_TASSERTMSG_( (exp) != NULL, "%s must not be NULL", #… 137 #define NN_ALIGN_TASSERT_(exp, align) NN_TASSERTMSG_( ((uptr)(exp)) % (align) == 0, "%s(=0x%0… 141 #define NN_MIN_TASSERT_(exp, min) NN_TASSERTMSG_( (exp) >= (min), "%s(=%d) must be >= %s(… 145 #define NN_MAX_TASSERT_(exp, max) NN_TASSERTMSG_( (exp) <= (max), "%s(=%d) must be <= %s(… 149 #define NN_MINMAX_TASSERT_(exp, min, max) NN_TASSERTMSG_( (exp) >= (min) && (exp) <= (max), "%s(=… [all …]
|
| /CTR-SDK-2.4.0/sources/libraries/os/ |
| D | os_StackMemoryBlock.cpp | 61 NN_TASSERTMSG_(detail::IsMemoryBlockEnabled(), "InitializeMemoryBlock is not called.\n"); in Initialize() 62 …NN_TASSERTMSG_(GetAddress() == 0, "This StackMemoryBlock instance has been already initialized.\n"… in Initialize()
|
| D | os_MemoryBlock.cpp | 73 NN_TASSERTMSG_(detail::IsMemoryBlockEnabled(), "InitializeMemoryBlock is not called.\n"); in Initialize() 74 NN_TASSERTMSG_(GetAddress() == 0, "This MemoryBlock instance has been already initialized.\n"); in Initialize()
|
| D | os_ThreadLocalStorage.cpp | 123 NN_TASSERTMSG_(m_Index >= 0, "Out of Thread Local Storage Slot."); in ThreadLocalStorage()
|
| D | os_TransferMemoryBlock.cpp | 46 …NN_TASSERTMSG_( GetAddress() == NULL, "This TransferMemoryBlock instance has been already initiali… in TryInitialize()
|
| D | os_Memory.cpp | 54 NN_TASSERTMSG_(s_DeviceMemoryAddress != NULL, "Device Memory is NOT Initialized."); in GetDeviceMemoryAddress()
|
| D | os_SharedMemory.cpp | 63 …NN_TASSERTMSG_( GetAddress() == NULL, "This SharedMemoryBlock instance has been already initialize… in Map()
|
| D | os_Thread.cpp | 292 … NN_TASSERTMSG_(m_CanFinalize, "Thread should be Joined or Detached before being Finalized."); in FinalizeImpl()
|
| /CTR-SDK-2.4.0/include/nn/os/ |
| D | os_InterCoreCriticalSection.h | 174 …NN_TASSERTMSG_(LockedByCurrentThread() && m_LockCount > 0, "InterCoreCriticalSection is not entere… in Leave() 177 NN_TASSERTMSG_( *m_Counter < 0 , "InterCoreCriticalSection is not entered."); in Leave()
|
| D | os_CriticalSection.h | 186 …NN_TASSERTMSG_(LockedByCurrentThread() && m_LockCount > 0, "CriticalSection is not entered on the … in Leave() 189 NN_TASSERTMSG_( *m_Counter < 0 , "CriticalSection is not entered."); in Leave()
|
| D | os_NonRecursiveCriticalSection.h | 85 NN_TASSERTMSG_( *m_Counter < 0 , "CriticalSection is not entered."); in Leave()
|
| D | os_HandleObject.h | 137 NN_TASSERTMSG_(!IsValid(), "current handle(=%08X) is active\n", m_Handle.GetPrintableBits()); in SetHandle()
|
| /CTR-SDK-2.4.0/include/nn/util/ |
| D | util_Singleton.h | 40 NN_TASSERTMSG_(ms_Singleton == 0, "This singleton constructor is called twice."); in Singleton()
|
| /CTR-SDK-2.4.0/include/nn/net/osl/ |
| D | osl_MbufPool.h | 103 NN_TASSERTMSG_(0 <= index && index < m_count, "index = %d, m_count = %d", index, m_count); in GetPtrFromIndex()
|
| /CTR-SDK-2.4.0/sources/libraries/fnd/detail/ |
| D | fnd_DetailHeap.cpp | 84 #define HEAP_WARNING NN_TASSERTMSG_
|