Home
last modified time | relevance | path

Searched refs:NN_TASSERTMSG_ (Results 1 – 10 of 10) sorted by relevance

/CTR-SDK-0.13.2/include/nn/
Dassert.h66 #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-0.13.2/include/nn/util/
Dutil_Singleton.h40 NN_TASSERTMSG_(ms_Singleton == 0, "This singleton constructor is called twice."); in Singleton()
/CTR-SDK-0.13.2/include/nn/os/
Dos_CriticalSection.h186NN_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()
Dos_NonRecursiveCriticalSection.h85 NN_TASSERTMSG_( *m_Counter < 0 , "CriticalSection is not entered."); in Leave()
Dos_HandleObject.h134 NN_TASSERTMSG_(!IsValid(), "current handle(=%08X) is active\n", m_Handle.GetPrintableBits()); in SetHandle()
/CTR-SDK-0.13.2/sources/libraries/os/
Dos_ThreadLocalStorage.cpp96 NN_TASSERTMSG_(m_Index >= 0, "Out of Thread Local Storage Slot."); in ThreadLocalStorage()
Dos_Memory.cpp54 NN_TASSERTMSG_(s_DeviceMemoryAddress != NULL, "Device Memory is NOT Initialized."); in GetDeviceMemoryAddress()
Dos_Alarm.cpp80 NN_TASSERTMSG_(alarmThreadPool, "Not called InitializeAlarmSystem."); in Initialize()
/CTR-SDK-0.13.2/include/nn/net/osl/
Dosl_MbufPool.h103 NN_TASSERTMSG_(0 <= index && index < m_count, "index = %d, m_count = %d", index, m_count); in GetPtrFromIndex()
/CTR-SDK-0.13.2/sources/libraries/fnd/detail/
Dfnd_DetailHeap.cpp84 #define HEAP_WARNING NN_TASSERTMSG_