| /CTR-SDK-0.13.2/sources/libraries/os/ |
| D | os_HandleManager.cpp | 23 void nnosHandleManagerAttachEventHandle(nnosEvent* p, nnHandle handle) in nnosHandleManagerAttachEventHandle() 29 void nnosHandleManagerDetachEventHandle(nnosEvent* p) in nnosHandleManagerDetachEventHandle() 35 void nnosHandleManagerAttachMutexHandle(nnosMutex* p, nnHandle handle) in nnosHandleManagerAttachMutexHandle() 41 void nnosHandleManagerDetachMutexHandle(nnosMutex* p) in nnosHandleManagerDetachMutexHandle() 47 void nnosHandleManagerAttachSemaphoreHandle(nnosSemaphore* p, nnHandle handle) in nnosHandleManagerAttachSemaphoreHandle() 53 void nnosHandleManagerDetachSemaphoreHandle(nnosSemaphore* p) in nnosHandleManagerDetachSemaphoreHandle() 59 void nnosHandleManagerAttachTimerHandle(nnosTimer* p, nnHandle handle) in nnosHandleManagerAttachTimerHandle() 65 void nnosHandleManagerDetachTimerHandle(nnosTimer* p) in nnosHandleManagerDetachTimerHandle() 72 void nnosHandleManagerAttachSharedMemoryHandle(nnosSharedMemoryBlock* p, nnHandle handle) in nnosHandleManagerAttachSharedMemoryHandle() 78 void nnosHandleManagerDetachSharedMemoryHandle(nnosSharedMemoryBlock* p) in nnosHandleManagerDetachSharedMemoryHandle()
|
| D | os_Timer.cpp | 39 void nnosTimerInitialize(nnosTimer* p, bool isManualReset) in nnosTimerInitialize() 44 bool nnosTimerTryInitialize(nnosTimer* p, bool isManualReset) in nnosTimerTryInitialize() 52 void nnosTimerStartPeriodic(nnosTimer* p, s64 first, s64 interval) in nnosTimerStartPeriodic() 58 void nnosTimerStartOneShot(nnosTimer* p, s64 time) in nnosTimerStartOneShot() 64 void nnosTimerWait(nnosTimer* p) in nnosTimerWait() 70 void nnosTimerStop(nnosTimer* p) in nnosTimerStop() 76 void nnosTimerClearSignal(nnosTimer* p) in nnosTimerClearSignal() 82 void nnosTimerFinalize(nnosTimer* p) in nnosTimerFinalize() 88 void nnosTimerSignal(nnosTimer* p) in nnosTimerSignal()
|
| D | os_LightEvent.cpp | 149 void nnosLightEventInitialize(nnosLightEvent* p, bool isManualReset) in nnosLightEventInitialize() 154 bool nnosLightEventIsSignaled(nnosLightEvent* p) in nnosLightEventIsSignaled() 160 bool nnosLightEventIsManualReset(nnosLightEvent* p) in nnosLightEventIsManualReset() 166 bool nnosLightEventTryWait(nnosLightEvent* p) in nnosLightEventTryWait() 172 void nnosLightEventWait(nnosLightEvent* p) in nnosLightEventWait() 178 void nnosLightEventSignal(nnosLightEvent* p) in nnosLightEventSignal() 184 void nnosLightEventPulse(nnosLightEvent* p) in nnosLightEventPulse() 190 void nnosLightEventClearSignal(nnosLightEvent* p) in nnosLightEventClearSignal() 196 void nnosLightEventFinalize(nnosLightEvent* p) in nnosLightEventFinalize()
|
| D | os_CriticalSection.cpp | 60 void nnosCriticalSectionInitialize(nnosCriticalSection* p) in nnosCriticalSectionInitialize() 65 bool nnosCriticalSectionTryInitialize(nnosCriticalSection* p) in nnosCriticalSectionTryInitialize() 73 void nnosCriticalSectionEnter(nnosCriticalSection* p) in nnosCriticalSectionEnter() 79 bool nnosCriticalSectionTryEnter(nnosCriticalSection* p) in nnosCriticalSectionTryEnter() 85 void nnosCriticalSectionLeave(nnosCriticalSection* p) in nnosCriticalSectionLeave() 91 void nnosCriticalSectionFinalize(nnosCriticalSection* p) in nnosCriticalSectionFinalize()
|
| D | os_LightSemaphore.cpp | 56 void nnosLightSemaphoreInitialize(nnosLightSemaphore* p, s32 initialCount, s32 maxCount) in nnosLightSemaphoreInitialize() 63 s32 nnosLightSemaphoreGetMax(nnosLightSemaphore* p) in nnosLightSemaphoreGetMax() 69 s32 nnosLightSemaphoreGetCount(nnosLightSemaphore* p) in nnosLightSemaphoreGetCount() 75 s32 nnosLightSemaphoreRelease(nnosLightSemaphore* p, s32 releaseCount) in nnosLightSemaphoreRelease() 81 void nnosLightSemaphoreAcquire(nnosLightSemaphore* p) in nnosLightSemaphoreAcquire() 87 bool nnosLightSemaphoreTryAcquire(nnosLightSemaphore* p) in nnosLightSemaphoreTryAcquire() 93 void nnosLightSemaphoreFinalize(nnosLightSemaphore* p) in nnosLightSemaphoreFinalize()
|
| D | os_Event.cpp | 43 bool nnosEventTryInitialize(nnosEvent* p, bool manualReset) in nnosEventTryInitialize() 51 void nnosEventSignal(nnosEvent* p) in nnosEventSignal() 57 void nnosEventWaitSignal(nnosEvent* p) in nnosEventWaitSignal() 63 bool nnosEventTryWaitSignal(nnosEvent* p, s64 nanoSecondsTimeout) in nnosEventTryWaitSignal() 69 void nnosEventClearSignal(nnosEvent* p) in nnosEventClearSignal() 75 void nnosEventFinalize(nnosEvent* p) in nnosEventFinalize()
|
| D | os_MemoryBlock.cpp | 48 uptr AllocateFromMemoryBlockSpace(MemoryBlockBase* p, size_t s) in AllocateFromMemoryBlockSpace() 53 void FreeToMemoryBlockSpace(MemoryBlockBase* p) in FreeToMemoryBlockSpace() 124 void nnosMemoryBlockAllocate(nnosMemoryBlock* p, size_t size) in nnosMemoryBlockAllocate() 130 void nnosMemoryBlockSetReadOnly(nnosMemoryBlock* p, bool readOnly) in nnosMemoryBlockSetReadOnly() 136 void nnosMemoryBlockFree(nnosMemoryBlock* p) in nnosMemoryBlockFree() 142 uptr nnosMemoryBlockGetAddress(nnosMemoryBlock* p) in nnosMemoryBlockGetAddress() 148 size_t nnosMemoryBlockGetSize(nnosMemoryBlock* p) in nnosMemoryBlockGetSize() 154 bool nnosMemoryBlockIsReadOnly(nnosMemoryBlock* p) in nnosMemoryBlockIsReadOnly()
|
| D | os_StackMemoryBlock.cpp | 91 void nnosStackMemoryBlockInitialize(nnosStackMemoryBlock* p) in nnosStackMemoryBlockInitialize() 96 void nnosStackMemoryBlockAllocate(nnosStackMemoryBlock* p, size_t size) in nnosStackMemoryBlockAllocate() 102 void nnosStackMemoryBlockFree(nnosStackMemoryBlock* p) in nnosStackMemoryBlockFree() 108 uptr nnosStackMemoryBlockGetAddress(nnosStackMemoryBlock* p) in nnosStackMemoryBlockGetAddress() 114 size_t nnosStackMemoryBlockGetSize(nnosStackMemoryBlock* p) in nnosStackMemoryBlockGetSize() 120 uptr nnosStackMemoryBlockGetStackBottom(nnosStackMemoryBlock* p) in nnosStackMemoryBlockGetStackBottom()
|
| D | os_Mutex.cpp | 45 bool nnosMutexTryInitialize(nnosMutex* p, bool initialLocked) in nnosMutexTryInitialize() 53 void nnosMutexLock(nnosMutex* p) in nnosMutexLock() 59 bool nnosMutexTryLock(nnosMutex* p, s64 timeout) in nnosMutexTryLock() 65 void nnosMutexUnlock(nnosMutex* p) in nnosMutexUnlock() 71 void nnosMutexFinalize(nnosMutex* p) in nnosMutexFinalize()
|
| D | os_Semaphore.cpp | 46 bool nnosSemaphoreTryInitialize(nnosSemaphore* p, s32 initialCount, s32 maxCount) in nnosSemaphoreTryInitialize() 54 s32 nnosSemaphoreRelease(nnosSemaphore* p, s32 releaseCount) in nnosSemaphoreRelease() 60 void nnosSemaphoreAcquire(nnosSemaphore* p) in nnosSemaphoreAcquire() 66 bool nnosSemaphoreTryAcquire(nnosSemaphore* p, s64 nanoSeconds) in nnosSemaphoreTryAcquire() 72 void nnosSemaphoreFinalize(nnosSemaphore* p) in nnosSemaphoreFinalize()
|
| D | os_StackMemory.cpp | 141 void nnosStackMemoryProtect(nnosStackMemory* p, void* pMem, size_t size) in nnosStackMemoryProtect() 146 void nnosStackMemoryUnprotect(nnosStackMemory* p) in nnosStackMemoryUnprotect() 152 uptr nnosStackMemoryGetAddress(nnosStackMemory* p) in nnosStackMemoryGetAddress() 158 size_t nnosStackMemoryGetSize(nnosStackMemory* p) in nnosStackMemoryGetSize() 164 uptr nnosStackMemoryGetStackBottom(nnosStackMemory* p) in nnosStackMemoryGetStackBottom()
|
| D | os_Alarm.cpp | 94 void Alarm::SetOneShot(TimeSpan time, AlarmHandler handler, void* p) in SetOneShot() 105 void Alarm::SetPeriodic(TimeSpan initial, TimeSpan interval, AlarmHandler handler, void* p) in SetPeriodic() 214 void nnosAlarmInitialize(nnosAlarm* p) in nnosAlarmInitialize() 220 void nnosAlarmFinalize(nnosAlarm* p) in nnosAlarmFinalize() 226 void nnosAlarmSetOneShot(nnosAlarm* p, s64 time, nnosAlarmHandler handler, void* param) in nnosAlarmSetOneShot() 232 void nnosAlarmSetPeriodic(nnosAlarm* p, s64 initial, s64 interval, nnosAlarmHandler handler, void* … in nnosAlarmSetPeriodic() 238 void nnosAlarmCancel(nnosAlarm* p) in nnosAlarmCancel() 244 bool nnosAlarmCanSet(const nnosAlarm* p) in nnosAlarmCanSet()
|
| D | os_Thread.cpp | 94 void* p; //!< ハンドラに渡すパラメータ member 168 void Thread::ThreadStart(uptr p) in ThreadStart() 187 Result Thread::TryInitializeAndStartImpl(const TypeInfo& typeInfo, ThreadFunc f, const void* p, upt… in TryInitializeAndStartImpl() 243 …izeAndStartImplUsingAutoStack(const TypeInfo& typeInfo, ThreadFunc f, const void* p, size_t stackS… in TryInitializeAndStartImplUsingAutoStack() 289 void nnosThreadInitializeAndStart(nnosThread* p, void (*f)(uptr), uptr param, uptr stackBottom, s32… in nnosThreadInitializeAndStart() 296 bool nnosThreadTryInitializeAndStart(nnosThread* p, void (*f)(uptr), uptr param, uptr stackBottom, … in nnosThreadTryInitializeAndStart() 304 void nnosThreadFinalize(nnosThread* p) in nnosThreadFinalize() 310 void nnosThreadJoin(nnosThread* p) in nnosThreadJoin() 331 s32 nnosThreadGetPriority(const nnosThread* p) in nnosThreadGetPriority() 342 void nnosThreadChangePriority(nnosThread* p, s32 priority) in nnosThreadChangePriority() [all …]
|
| D | os_ThreadPool.cpp | 247 NN_EXTERN_C void nnosThreadPoolTaskInitialize(nnosThreadPoolTask* p, void (*f)(uptr), uptr param) in nnosThreadPoolTaskInitialize() 252 void nnosThreadPoolTaskFinalize(nnosThreadPoolTask* p) in nnosThreadPoolTaskFinalize() 258 NN_EXTERN_C void nnosThreadPoolWaitTaskInitialize(nnosThreadPoolWaitTask* p, nnosWaitObject* waitOb… in nnosThreadPoolWaitTaskInitialize() 263 void nnosThreadPoolWaitTaskFinalize(nnosThreadPoolWaitTask* p) in nnosThreadPoolWaitTaskFinalize() 269 void nnosThreadPoolInitialize(nnosThreadPool* p, void* workBuffer, size_t numMaxWaitObjects, size_t… in nnosThreadPoolInitialize() 276 void nnosThreadPoolInitializeWithStackMemoryBlock(nnosThreadPool* p, void* workBuffer, size_t numMa… in nnosThreadPoolInitializeWithStackMemoryBlock() 284 void nnosThreadPoolFinalize(nnosThreadPool* p) in nnosThreadPoolFinalize() 290 void nnosThreadPoolAddWaitTask(nnosThreadPool* p, nnosThreadPoolWaitTask* task) in nnosThreadPoolAddWaitTask() 297 void nnosThreadPoolAddTask(nnosThreadPool* p, nnosThreadPoolTask* task) in nnosThreadPoolAddTask()
|
| D | os_AddressSpaceManager.cpp | 189 void nnosAddressSpaceManagerInitialize(nnosAddressSpaceManager* p, uptr begin, size_t size) in nnosAddressSpaceManagerInitialize() 195 uptr nnosAddressSpaceManagerAllocate(nnosAddressSpaceManager* p, nnosMemoryBlockBase* p2, size_t si… in nnosAddressSpaceManagerAllocate() 202 void nnosAddressSpaceManagerFree(nnosAddressSpaceManager* p, nnosMemoryBlockBase* p2) in nnosAddressSpaceManagerFree() 209 void nnosAddressSpaceManagerSwitch(nnosAddressSpaceManager* p, nnosMemoryBlockBase* p2, nnosMemoryB… in nnosAddressSpaceManagerSwitch()
|
| /CTR-SDK-0.13.2/include/nn/fnd/ |
| D | fnd_LinkedList.h | 227 inline void IntrusiveLinkedList<T, Tag>::ClearLinks(Item* p) in ClearLinks() 233 inline void IntrusiveLinkedList<T, Tag>::InsertBefore(Item* p, Item* q) in InsertBefore() 242 inline void IntrusiveLinkedList<T, Tag>::PushBack(T* p) in PushBack() 262 inline void IntrusiveLinkedList<T, Tag>::PushFront(T* p) in PushFront() 329 inline T* IntrusiveLinkedList<T, Tag>::GetPrevious(T* p) const in GetPrevious() 345 inline T* IntrusiveLinkedList<T, Tag>::GetNext(T* p) const in GetNext() 388 inline void IntrusiveLinkedList<T, Tag>::Erase(T* p) in Erase() 417 Item* p = m_Head; in Clear() local
|
| D | fnd_Allocator.h | 88 …void deallocate(pointer p, size_type) { StdAllocatorAdapterHolder<Allocator, Tag>::GetAllocator()-… in deallocate() 90 void construct(pointer p, const T& val) { new (static_cast<void*>(p)) T(val); } in construct() 91 void destroy(pointer p) { p->~T(); } in destroy() 118 void deallocate(pointer p, size_type) { s_Allocator->Free(static_cast<void*>(p)); } in deallocate() 120 void construct(pointer p, const T& val) { new (static_cast<void*>(p)) T(val); } in construct() 121 void destroy(pointer p) { p->~T(); } in destroy()
|
| D | fnd_Queue.h | 97 inline void IntrusiveQueue<T, Tag>::Enqueue(T* p) in Enqueue() 142 Item* p = m_Head; in Clear() local
|
| D | fnd_WaitableUnitHeap.h | 109 void Free(void* p) in Free() 122 virtual void FreeV(void* p) { Free(p); } in FreeV() 177 virtual void Free(void* p) { m_Heap->Free(p); } in Free()
|
| D | fnd_UnitHeap.h | 147 inline void UnitHeapBase::Free(void* p) in Free() 158 inline void UnitHeapBase::FreeV(void* p) in FreeV() 311 void Free(void* p) in Free() 324 virtual void FreeV(void* p) { Free(p); } in FreeV() 456 inline void UnitHeapTemplate<LockPolicy>::Allocator::Free(void* p) in Free()
|
| D | fnd_BufferManager.h | 129 if (Entry* p = FindEmptyEntry()) in Register() local 147 if (Entry* p = FindEntry(handle)) in Unregister() local 163 if (Entry* p = m_CacheList.GetFront()) in UnregisterOldest() local 231 if (void* p = m_Buddy.AllocateByOrder(order)) in AllocateBuffer() local
|
| /CTR-SDK-0.13.2/sources/libraries/init/ |
| D | init_Alloc.cpp | 56 NN_WEAK_SYMBOL void free(void* p) in free() 77 NN_WEAK_SYMBOL void operator delete (void* p) throw() in operator delete() 82 NN_WEAK_SYMBOL void operator delete[] (void* p) throw() in operator delete[]()
|
| /CTR-SDK-0.13.2/sources/libraries/test/ |
| D | test_New.cpp | 47 void* p = malloc(requiredSize); in AllocateBuffer() local 63 extern void DeallocateSmall(void* p, size_t) in DeallocateSmall()
|
| /CTR-SDK-0.13.2/include/nn/math/ |
| D | math_Types.h | 160 MTX34Transpose(MTX43* pOut, const MTX34* p) in MTX34Transpose() 184 MTX43Transpose(MTX34* pOut, const MTX43* p) in MTX43Transpose()
|
| /CTR-SDK-0.13.2/sources/libraries/fnd/ |
| D | fnd_ExpHeap.cpp | 68 void ExpHeapBase::Free(void* p) in Free() 75 size_t ExpHeapBase::ResizeBlock(void *p, size_t newSize) in ResizeBlock() 88 void VisitFunc(void* p, detail::Heap, u32 param) in VisitFunc() 147 bool ExpHeapBase::CheckBlock(const void* p, bit32 option) const in CheckBlock() argument
|