Home
last modified time | relevance | path

Searched refs:p (Results 1 – 25 of 115) sorted by relevance

12345

/CTR-SDK-2.4.0/sources/libraries/os/
Dos_HandleManager.cpp23 void nnosHandleManagerAttachEventHandle(nnosEvent* p, nnHandle handle) in nnosHandleManagerAttachEventHandle() argument
25 Event* pEvent = reinterpret_cast<Event*>(p); in nnosHandleManagerAttachEventHandle()
29 void nnosHandleManagerDetachEventHandle(nnosEvent* p) in nnosHandleManagerDetachEventHandle() argument
31 Event* pEvent = reinterpret_cast<Event*>(p); in nnosHandleManagerDetachEventHandle()
35 void nnosHandleManagerAttachMutexHandle(nnosMutex* p, nnHandle handle) in nnosHandleManagerAttachMutexHandle() argument
37 Mutex* pMutex = reinterpret_cast<Mutex*>(p); in nnosHandleManagerAttachMutexHandle()
41 void nnosHandleManagerDetachMutexHandle(nnosMutex* p) in nnosHandleManagerDetachMutexHandle() argument
43 Mutex* pMutex = reinterpret_cast<Mutex*>(p); in nnosHandleManagerDetachMutexHandle()
47 void nnosHandleManagerAttachSemaphoreHandle(nnosSemaphore* p, nnHandle handle) in nnosHandleManagerAttachSemaphoreHandle() argument
49 Semaphore* pSemaphore = reinterpret_cast<Semaphore*>(p); in nnosHandleManagerAttachSemaphoreHandle()
[all …]
Dos_Timer.cpp39 void nnosTimerInitialize(nnosTimer* p, bool isManualReset) in nnosTimerInitialize() argument
41 new (p) Timer(isManualReset); in nnosTimerInitialize()
44 bool nnosTimerTryInitialize(nnosTimer* p, bool isManualReset) in nnosTimerTryInitialize() argument
46 new (p) Timer(); in nnosTimerTryInitialize()
47 Timer* pTimer = reinterpret_cast<Timer*>(p); in nnosTimerTryInitialize()
52 void nnosTimerStartPeriodic(nnosTimer* p, s64 first, s64 interval) in nnosTimerStartPeriodic() argument
54 Timer* pTimer = reinterpret_cast<Timer*>(p); in nnosTimerStartPeriodic()
58 void nnosTimerStartOneShot(nnosTimer* p, s64 time) in nnosTimerStartOneShot() argument
60 Timer* pTimer = reinterpret_cast<Timer*>(p); in nnosTimerStartOneShot()
64 void nnosTimerWait(nnosTimer* p) in nnosTimerWait() argument
[all …]
Dos_Event.cpp38 void nnosEventInitialize(nnosEvent* p, bool isManualReset) in NN_UTIL_DETAIL_CLIBIMPL_DEFINE_CONVERSION()
40 new (p) Event(isManualReset); in NN_UTIL_DETAIL_CLIBIMPL_DEFINE_CONVERSION()
43 bool nnosEventTryInitialize(nnosEvent* p, bool manualReset) in nnosEventTryInitialize() argument
45 new (p) Event(); in nnosEventTryInitialize()
46 Event* pEvent = reinterpret_cast<Event*>(p); in nnosEventTryInitialize()
51 void nnosEventSignal(nnosEvent* p) in nnosEventSignal() argument
53 Event* pEvent = reinterpret_cast<Event*>(p); in nnosEventSignal()
57 void nnosEventWaitSignal(nnosEvent* p) in nnosEventWaitSignal() argument
59 Event* pEvent = reinterpret_cast<Event*>(p); in nnosEventWaitSignal()
63 bool nnosEventTryWaitSignal(nnosEvent* p, s64 nanoSecondsTimeout) in nnosEventTryWaitSignal() argument
[all …]
Dos_InterCoreCriticalSection.cpp60 void nnosInterCoreCriticalSectionInitialize(nnosInterCoreCriticalSection* p) in nnosInterCoreCriticalSectionInitialize() argument
62 new (p) InterCoreCriticalSection(nn::WithInitialize()); in nnosInterCoreCriticalSectionInitialize()
65 bool nnosInterCoreCriticalSectionTryInitialize(nnosInterCoreCriticalSection* p) in nnosInterCoreCriticalSectionTryInitialize() argument
67 new (p) InterCoreCriticalSection(nn::WithInitialize()); in nnosInterCoreCriticalSectionTryInitialize()
68 …terCoreCriticalSection* pInterCoreCriticalSection = reinterpret_cast<InterCoreCriticalSection*>(p); in nnosInterCoreCriticalSectionTryInitialize()
73 void nnosInterCoreCriticalSectionEnter(nnosInterCoreCriticalSection* p) in nnosInterCoreCriticalSectionEnter() argument
75 …terCoreCriticalSection* pInterCoreCriticalSection = reinterpret_cast<InterCoreCriticalSection*>(p); in nnosInterCoreCriticalSectionEnter()
79 bool nnosInterCoreCriticalSectionTryEnter(nnosInterCoreCriticalSection* p) in nnosInterCoreCriticalSectionTryEnter() argument
81 …terCoreCriticalSection* pInterCoreCriticalSection = reinterpret_cast<InterCoreCriticalSection*>(p); in nnosInterCoreCriticalSectionTryEnter()
85 void nnosInterCoreCriticalSectionLeave(nnosInterCoreCriticalSection* p) in nnosInterCoreCriticalSectionLeave() argument
[all …]
Dos_CriticalSection.cpp60 void nnosCriticalSectionInitialize(nnosCriticalSection* p) in nnosCriticalSectionInitialize() argument
62 new (p) CriticalSection(nn::WithInitialize()); in nnosCriticalSectionInitialize()
65 bool nnosCriticalSectionTryInitialize(nnosCriticalSection* p) in nnosCriticalSectionTryInitialize() argument
67 new (p) CriticalSection(nn::WithInitialize()); in nnosCriticalSectionTryInitialize()
68 CriticalSection* pCriticalSection = reinterpret_cast<CriticalSection*>(p); in nnosCriticalSectionTryInitialize()
73 void nnosCriticalSectionEnter(nnosCriticalSection* p) in nnosCriticalSectionEnter() argument
75 CriticalSection* pCriticalSection = reinterpret_cast<CriticalSection*>(p); in nnosCriticalSectionEnter()
79 bool nnosCriticalSectionTryEnter(nnosCriticalSection* p) in nnosCriticalSectionTryEnter() argument
81 CriticalSection* pCriticalSection = reinterpret_cast<CriticalSection*>(p); in nnosCriticalSectionTryEnter()
85 void nnosCriticalSectionLeave(nnosCriticalSection* p) in nnosCriticalSectionLeave() argument
[all …]
Dos_LightEvent.cpp149 void nnosLightEventInitialize(nnosLightEvent* p, bool isManualReset) in nnosLightEventInitialize() argument
151 new (p) LightEvent(isManualReset); in nnosLightEventInitialize()
154 bool nnosLightEventIsSignaled(nnosLightEvent* p) in nnosLightEventIsSignaled() argument
156 LightEvent* pLightEvent = reinterpret_cast<LightEvent*>(p); in nnosLightEventIsSignaled()
160 bool nnosLightEventIsManualReset(nnosLightEvent* p) in nnosLightEventIsManualReset() argument
162 LightEvent* pLightEvent = reinterpret_cast<LightEvent*>(p); in nnosLightEventIsManualReset()
166 bool nnosLightEventTryWait(nnosLightEvent* p) in nnosLightEventTryWait() argument
168 LightEvent* pLightEvent = reinterpret_cast<LightEvent*>(p); in nnosLightEventTryWait()
172 void nnosLightEventWait(nnosLightEvent* p) in nnosLightEventWait() argument
174 LightEvent* pLightEvent = reinterpret_cast<LightEvent*>(p); in nnosLightEventWait()
[all …]
Dos_Mutex.cpp40 void nnosMutexInitialize(nnosMutex* p, bool initialLocked) in NN_UTIL_DETAIL_CLIBIMPL_DEFINE_CONVERSION()
42 new (p) Mutex(initialLocked); in NN_UTIL_DETAIL_CLIBIMPL_DEFINE_CONVERSION()
45 bool nnosMutexTryInitialize(nnosMutex* p, bool initialLocked) in nnosMutexTryInitialize() argument
47 new (p) Mutex(); in nnosMutexTryInitialize()
48 Mutex* pMutex = reinterpret_cast<Mutex*>(p); in nnosMutexTryInitialize()
53 void nnosMutexLock(nnosMutex* p) in nnosMutexLock() argument
55 Mutex* pMutex = reinterpret_cast<Mutex*>(p); in nnosMutexLock()
59 bool nnosMutexTryLock(nnosMutex* p, s64 timeout) in nnosMutexTryLock() argument
61 Mutex* pMutex = reinterpret_cast<Mutex*>(p); in nnosMutexTryLock()
65 void nnosMutexUnlock(nnosMutex* p) in nnosMutexUnlock() argument
[all …]
Dos_LightSemaphore.cpp61 void nnosLightSemaphoreInitialize(nnosLightSemaphore* p, s32 initialCount, s32 maxCount) in nnosLightSemaphoreInitialize() argument
63 new (p) LightSemaphore(); in nnosLightSemaphoreInitialize()
64 LightSemaphore* pLightSemaphore = reinterpret_cast<LightSemaphore*>(p); in nnosLightSemaphoreInitialize()
69 s32 nnosLightSemaphoreGetMax(nnosLightSemaphore* p) in nnosLightSemaphoreGetMax() argument
71 LightSemaphore* pLightSemaphore = reinterpret_cast<LightSemaphore*>(p); in nnosLightSemaphoreGetMax()
76 s32 nnosLightSemaphoreGetCount(nnosLightSemaphore* p) in nnosLightSemaphoreGetCount() argument
78 LightSemaphore* pLightSemaphore = reinterpret_cast<LightSemaphore*>(p); in nnosLightSemaphoreGetCount()
82 s32 nnosLightSemaphoreRelease(nnosLightSemaphore* p, s32 releaseCount) in nnosLightSemaphoreRelease() argument
84 LightSemaphore* pLightSemaphore = reinterpret_cast<LightSemaphore*>(p); in nnosLightSemaphoreRelease()
88 void nnosLightSemaphoreAcquire(nnosLightSemaphore* p) in nnosLightSemaphoreAcquire() argument
[all …]
Dos_InterCoreLightSemaphore.cpp62 void nnosInterCoreLightSemaphoreInitialize(nnosInterCoreLightSemaphore* p, s32 initialCount, s32 ma… in nnosInterCoreLightSemaphoreInitialize() argument
64 new (p) InterCoreLightSemaphore(); in nnosInterCoreLightSemaphoreInitialize()
65 … InterCoreLightSemaphore* pInterCoreLightSemaphore = reinterpret_cast<InterCoreLightSemaphore*>(p); in nnosInterCoreLightSemaphoreInitialize()
70 s32 nnosInterCoreLightSemaphoreGetMax(nnosInterCoreLightSemaphore* p) in nnosInterCoreLightSemaphoreGetMax() argument
72 … InterCoreLightSemaphore* pInterCoreLightSemaphore = reinterpret_cast<InterCoreLightSemaphore*>(p); in nnosInterCoreLightSemaphoreGetMax()
77 s32 nnosInterCoreLightSemaphoreGetCount(nnosInterCoreLightSemaphore* p) in nnosInterCoreLightSemaphoreGetCount() argument
79 … InterCoreLightSemaphore* pInterCoreLightSemaphore = reinterpret_cast<InterCoreLightSemaphore*>(p); in nnosInterCoreLightSemaphoreGetCount()
83 s32 nnosInterCoreLightSemaphoreRelease(nnosInterCoreLightSemaphore* p, s32 releaseCount) in nnosInterCoreLightSemaphoreRelease() argument
85 … InterCoreLightSemaphore* pInterCoreLightSemaphore = reinterpret_cast<InterCoreLightSemaphore*>(p); in nnosInterCoreLightSemaphoreRelease()
89 void nnosInterCoreLightSemaphoreAcquire(nnosInterCoreLightSemaphore* p) in nnosInterCoreLightSemaphoreAcquire() argument
[all …]
Dos_Semaphore.cpp41 void nnosSemaphoreInitialize(nnosSemaphore* p, s32 initialCount, s32 maxCount) in NN_UTIL_DETAIL_CLIBIMPL_DEFINE_CONVERSION()
43 new (p) Semaphore(initialCount, maxCount); in NN_UTIL_DETAIL_CLIBIMPL_DEFINE_CONVERSION()
46 bool nnosSemaphoreTryInitialize(nnosSemaphore* p, s32 initialCount, s32 maxCount) in nnosSemaphoreTryInitialize() argument
48 new (p) Semaphore(); in nnosSemaphoreTryInitialize()
49 Semaphore* pSemaphore = reinterpret_cast<Semaphore*>(p); in nnosSemaphoreTryInitialize()
54 s32 nnosSemaphoreRelease(nnosSemaphore* p, s32 releaseCount) in nnosSemaphoreRelease() argument
56 Semaphore* pSemaphore = reinterpret_cast<Semaphore*>(p); in nnosSemaphoreRelease()
60 void nnosSemaphoreAcquire(nnosSemaphore* p) in nnosSemaphoreAcquire() argument
62 Semaphore* pSemaphore = reinterpret_cast<Semaphore*>(p); in nnosSemaphoreAcquire()
66 bool nnosSemaphoreTryAcquire(nnosSemaphore* p, s64 nanoSeconds) in nnosSemaphoreTryAcquire() argument
[all …]
Dos_MemoryBlock.cpp49 uptr AllocateFromMemoryBlockSpace(MemoryBlockBase* p, size_t s) in AllocateFromMemoryBlockSpace() argument
52 return pManager->Allocate(p, s, 0); in AllocateFromMemoryBlockSpace()
54 void FreeToMemoryBlockSpace(MemoryBlockBase* p) in FreeToMemoryBlockSpace() argument
57 pManager->Free(p); in FreeToMemoryBlockSpace()
134 void nnosMemoryBlockAllocate(nnosMemoryBlock* p, size_t size) in nnosMemoryBlockAllocate() argument
137 new (p) MemoryBlock(size); in nnosMemoryBlockAllocate()
140 void nnosMemoryBlockSetReadOnly(nnosMemoryBlock* p, bool readOnly) in nnosMemoryBlockSetReadOnly() argument
142 MemoryBlock* pMemoryBlock = reinterpret_cast<MemoryBlock*>(p); in nnosMemoryBlockSetReadOnly()
146 void nnosMemoryBlockFree(nnosMemoryBlock* p) in nnosMemoryBlockFree() argument
148 MemoryBlock* pMemoryBlock = reinterpret_cast<MemoryBlock*>(p); in nnosMemoryBlockFree()
[all …]
Dos_StackMemoryBlock.cpp96 void nnosStackMemoryBlockInitialize(nnosStackMemoryBlock* p) in nnosStackMemoryBlockInitialize() argument
98 new (p) StackMemoryBlock(); in nnosStackMemoryBlockInitialize()
101 void nnosStackMemoryBlockAllocate(nnosStackMemoryBlock* p, size_t size) in nnosStackMemoryBlockAllocate() argument
104 new (p) StackMemoryBlock(size); in nnosStackMemoryBlockAllocate()
107 void nnosStackMemoryBlockFree(nnosStackMemoryBlock* p) in nnosStackMemoryBlockFree() argument
109 StackMemoryBlock* pStackMemoryBlock = reinterpret_cast<StackMemoryBlock*>(p); in nnosStackMemoryBlockFree()
113 uptr nnosStackMemoryBlockGetAddress(nnosStackMemoryBlock* p) in nnosStackMemoryBlockGetAddress() argument
115 StackMemoryBlock* pStackMemoryBlock = reinterpret_cast<StackMemoryBlock*>(p); in nnosStackMemoryBlockGetAddress()
119 size_t nnosStackMemoryBlockGetSize(nnosStackMemoryBlock* p) in nnosStackMemoryBlockGetSize() argument
121 StackMemoryBlock* pStackMemoryBlock = reinterpret_cast<StackMemoryBlock*>(p); in nnosStackMemoryBlockGetSize()
[all …]
Dos_Thread.cpp104 void (*destroy)(void* p); //
105 void (*invoke)(ThreadFunc f, const void* p); //
107 void* p; // member
115 invoke(f, p); in Invoke()
121 destroy(p); in Destroy()
177 void Thread::ThreadStart(uptr p) in ThreadStart() argument
179 FunctionInfo& info = *reinterpret_cast<FunctionInfo*>(p); in ThreadStart()
196 Result Thread::TryInitializeAndStartImpl(const TypeInfo& typeInfo, ThreadFunc f, const void* p, upt… in TryInitializeAndStartImpl() argument
208 typeInfo.copy(p, obj); in TryInitializeAndStartImpl()
217 info.p = obj; in TryInitializeAndStartImpl()
[all …]
Dos_DeliverArg.cpp58 s32 GetArgcCore(const char* p) in GetArgcCore() argument
61 for (; *p; p++, n++) in GetArgcCore()
63 while (*p) in GetArgcCore()
65 p++; in GetArgcCore()
71 const char* GetArgvCore(const char* p, int n) in GetArgvCore() argument
74 for (; *p && n > 0; p++, n--) in GetArgvCore()
76 while (*p) in GetArgvCore()
78 p++; in GetArgvCore()
81 return (*p) ? p : NULL; in GetArgvCore()
217 char *p = pBuffer; in ConvertToArguments() local
[all …]
Dos_Alarm.cpp112 void Alarm::SetOneShot(TimeSpan time, AlarmHandler handler, void* p) in SetOneShot() argument
118 m_Parameter = p; in SetOneShot()
126 void Alarm::SetPeriodic(TimeSpan initial, TimeSpan interval, AlarmHandler handler, void* p) in SetPeriodic() argument
132 m_Parameter = p; in SetPeriodic()
238 void nnosAlarmInitialize(nnosAlarm* p) in nnosAlarmInitialize() argument
240 Alarm* this_ = new (p) Alarm; in nnosAlarmInitialize()
244 void nnosAlarmFinalize(nnosAlarm* p) in nnosAlarmFinalize() argument
246 Alarm* pAlarm = reinterpret_cast<Alarm*>(p); in nnosAlarmFinalize()
250 void nnosAlarmSetOneShot(nnosAlarm* p, s64 time, nnosAlarmHandler handler, void* param) in nnosAlarmSetOneShot() argument
252 Alarm* pAlarm = reinterpret_cast<Alarm*>(p); in nnosAlarmSetOneShot()
[all …]
/CTR-SDK-2.4.0/include/nn/dbg/
Ddbg_Dump.h42 #define NN_DUMP_MEMORY( p, size, flags ) nn::dbg::detail::DumpMemory(p, size, flags) argument
44 #define NN_DUMP_MEMORY( p, size, flags ) nndbgDetailDumpMemory(p, size, flags) argument
47 #define NN_DUMP_MEMORY( p, size, flags ) ((void)0) argument
50 #define NN_DUMP( p, size ) NN_DUMP_MEMORY(p, size, 0) argument
51 #define NN_DUMP_POINTER( p, size ) NN_DUMP_MEMORY(p, size, NN_DBG_DUMP_FLAG_POINTER) argument
52 #define NN_DUMP_STRING( p, size ) NN_DUMP_MEMORY(p, size, NN_DBG_DUMP_FLAG_POINTER|NN_DBG… argument
60 void DumpMemory(const void* p, size_t size, bit32 flags);
73 NN_EXTERN_C void nndbgDetailDumpMemory(const void* p, size_t size, bit32 flags);
/CTR-SDK-2.4.0/include/nn/fnd/
Dfnd_LinkedList.h102 void PushBack(T* p);
109 void PushFront(T* p);
150 T* GetNext(T* p) const;
159 T* GetPrevious(T* p) const;
176 void Erase(T* p);
194 static void ClearLinks(Item* p);
201 static void InsertBefore(Item* p, Item* q);
227 inline void IntrusiveLinkedList<T, Tag>::ClearLinks(Item* p) in ClearLinks() argument
229 p->m_PreviousLink = p->m_NextLink = 0; in ClearLinks()
233 inline void IntrusiveLinkedList<T, Tag>::InsertBefore(Item* p, Item* q) in InsertBefore() argument
[all …]
Dfnd_Queue.h57 void Enqueue(T* p);
97 inline void IntrusiveQueue<T, Tag>::Enqueue(T* p) in Enqueue() argument
99 NN_TASSERT_(p); in Enqueue()
100 Item* pNode = static_cast<Item*>(p); in Enqueue()
109 m_Tail->m_NextLink = p; in Enqueue()
110 this->m_Tail = p; in Enqueue()
142 Item* p = m_Head; in Clear() local
145 Item* q = p; in Clear()
146 p = p->m_NextLink; in Clear()
148 } while (p != m_Tail); in Clear()
/CTR-SDK-2.4.0/sources/libraries/init/
Dinit_Alloc.cpp57 NN_WEAK_SYMBOL void free(void* p) in free() argument
59 if (p) in free()
61 s_pSystemHeap->Free(p); in free()
68 void* p = std::malloc(sum); in calloc() local
70 if( p != NULL ) in calloc()
72 std::memset(p, 0, sum); in calloc()
75 return p; in calloc()
78 NN_WEAK_SYMBOL void* realloc(void* p, size_t size) in realloc() argument
80 if( p != NULL ) in realloc()
85 std::free(p); in realloc()
[all …]
/CTR-SDK-2.4.0/include/nn/math/ARMv6/inline/
Dmath_Vector3.ipp39 VEC3NormalizeC(VEC3* pOut, const VEC3* p)
42 NN_NULL_ASSERT(p);
44 f32 mag = (p->x * p->x) + (p->y * p->y) + (p->z * p->z);
50 pOut->x = p->x * mag;
51 pOut->y = p->y * mag;
52 pOut->z = p->z * mag;
59 VEC3NormalizeC_FAST(VEC3* pOut, const VEC3* p)
62 NN_NULL_ASSERT(p);
66 x = p->x;
67 y = p->y;
[all …]
/CTR-SDK-2.4.0/include/nn/math/inline/
Dmath_Vector2.ipp36 VEC2IsZero(const VEC2* p)
38 return p->x == 0.f && p->y == 0.f;
88 VEC2Normalize(VEC2* pOut, const VEC2* p)
90 (void)VEC2Scale(pOut, p, FrSqrt(p->x * p->x + p->y * p->y));
106 VEC2SafeNormalize(VEC2* pOut, const VEC2* p, const VEC2& alt)
109 NN_NULL_ASSERT(p);
111 f32 mag = (p->x * p->x) + (p->y * p->y);
120 (void)VEC2Scale(pOut, p, FrSqrt(mag));
Dmath_Vector4.ipp35 VEC4IsZero(const VEC4* p)
37 return p->x == 0.f && p->y == 0.f && p->z == 0.f && p->w == 0.f;
48 VEC4IsZeroWOne(const VEC4* p)
50 return p->x == 0.f && p->y == 0.f && p->z == 0.f && p->w == 1.f;
122 VEC4Scale(VEC4* pOut, const VEC4* p, f32 scale)
124 pOut->x = scale * p->x;
125 pOut->y = scale * p->y;
126 pOut->z = scale * p->z;
127 pOut->w = scale * p->w;
177 VEC4LenSq(const VEC4* __restrict p)
[all …]
/CTR-SDK-2.4.0/include/nn/os/
Dos_MemoryBlock.h46 uptr AllocateFromMemoryBlockSpace(MemoryBlockBase* p, size_t s);
47 void FreeToMemoryBlockSpace(MemoryBlockBase* p);
175 NN_EXTERN_C void nnosMemoryBlockAllocate(nnosMemoryBlock* p, size_t size);
180 NN_EXTERN_C void nnosMemoryBlockSetReadOnly(nnosMemoryBlock* p, bool readOnly);
185 NN_EXTERN_C void nnosMemoryBlockFree(nnosMemoryBlock* p);
190 NN_EXTERN_C uptr nnosMemoryBlockGetAddress(nnosMemoryBlock* p);
195 NN_EXTERN_C size_t nnosMemoryBlockGetSize(nnosMemoryBlock* p);
200 NN_EXTERN_C bool nnosMemoryBlockIsReadOnly(nnosMemoryBlock* p);
/CTR-SDK-2.4.0/sources/libraries/fnd/
Dfnd_ExpHeap.cpp68 void ExpHeapBase::Free(void* p) in Free() argument
70 NN_TASSERT_(CheckBlock(p)); in Free()
71 detail::FreeToHeap(&m_ExpHeapImpl, p); in Free()
75 size_t ExpHeapBase::ResizeBlock(void *p, size_t newSize) in ResizeBlock() argument
77 return detail::ResizeForMBlockHeap(&m_ExpHeapImpl, p, newSize); in ResizeBlock()
88 void VisitFunc(void* p, detail::Heap, u32 param) in VisitFunc() argument
91 fap.f(p, fap.heap, fap.param); in VisitFunc()
116 size_t ExpHeapBase::GetSizeOf(const void* p) const in GetSizeOf()
118 return detail::GetSizeForMBlockHeap(p); in GetSizeOf()
121 bit8 ExpHeapBase::GetGroupIdOf(const void* p) const in GetGroupIdOf()
[all …]
/CTR-SDK-2.4.0/include/nn/fs/CTR/MPCore/
Dfs_UserFileSystem.h46 static void CloseDirect(void* p);
47 static Handle GetFileHandle(void* p);
48 static void DetachHandle(void *p);
50 static Result DuplicateHandleForFile(Handle* pOut, void* p, s64 offset, s64 length);
53 static void CloseFile(void* p);
55 static Result TryReadFile(s32* pOut, void* p, s64 offset, void* buffer, size_t size);
56 …static Result TryWriteFile(s32* pOut, void* p, s64 offset, const void* buffer, size_t size, bool f…
57 static Result TryGetFileSize(s64* pOut, const void* p);
58 static Result TrySetFileSize(void* p, s64 size);
59 static Result TryFlush(void* p);
[all …]

12345