Lines Matching refs:p

56 void nnosLightSemaphoreInitialize(nnosLightSemaphore* p, s32 initialCount, s32 maxCount)  in nnosLightSemaphoreInitialize()  argument
58 new (p) LightSemaphore(); in nnosLightSemaphoreInitialize()
59 LightSemaphore* pLightSemaphore = reinterpret_cast<LightSemaphore*>(p); in nnosLightSemaphoreInitialize()
63 s32 nnosLightSemaphoreGetMax(nnosLightSemaphore* p) in nnosLightSemaphoreGetMax() argument
65 LightSemaphore* pLightSemaphore = reinterpret_cast<LightSemaphore*>(p); in nnosLightSemaphoreGetMax()
69 s32 nnosLightSemaphoreGetCount(nnosLightSemaphore* p) in nnosLightSemaphoreGetCount() argument
71 LightSemaphore* pLightSemaphore = reinterpret_cast<LightSemaphore*>(p); in nnosLightSemaphoreGetCount()
75 s32 nnosLightSemaphoreRelease(nnosLightSemaphore* p, s32 releaseCount) in nnosLightSemaphoreRelease() argument
77 LightSemaphore* pLightSemaphore = reinterpret_cast<LightSemaphore*>(p); in nnosLightSemaphoreRelease()
81 void nnosLightSemaphoreAcquire(nnosLightSemaphore* p) in nnosLightSemaphoreAcquire() argument
83 LightSemaphore* pLightSemaphore = reinterpret_cast<LightSemaphore*>(p); in nnosLightSemaphoreAcquire()
87 bool nnosLightSemaphoreTryAcquire(nnosLightSemaphore* p) in nnosLightSemaphoreTryAcquire() argument
89 LightSemaphore* pLightSemaphore = reinterpret_cast<LightSemaphore*>(p); in nnosLightSemaphoreTryAcquire()
93 void nnosLightSemaphoreFinalize(nnosLightSemaphore* p) in nnosLightSemaphoreFinalize() argument
95 LightSemaphore* pLightSemaphore = reinterpret_cast<LightSemaphore*>(p); in nnosLightSemaphoreFinalize()