Lines Matching refs:initCount
146 WRes Semaphore_Create(CSemaphore *p, UInt32 initCount, UInt32 maxCount) in Semaphore_Create() argument
149 *p = CreateSemaphore(NULL, (LONG)initCount, (LONG)maxCount, NULL); in Semaphore_Create()
153 WRes Semaphore_OptCreateInit(CSemaphore *p, UInt32 initCount, UInt32 maxCount) in Semaphore_OptCreateInit() argument
161 return Semaphore_Create(p, initCount, maxCount); in Semaphore_OptCreateInit()
418 WRes Semaphore_Create(CSemaphore *p, UInt32 initCount, UInt32 maxCount) in Semaphore_Create() argument
420 if (initCount > maxCount || maxCount < 1) in Semaphore_Create()
424 p->_count = initCount; in Semaphore_Create()
431 WRes Semaphore_OptCreateInit(CSemaphore *p, UInt32 initCount, UInt32 maxCount) in Semaphore_OptCreateInit() argument
440 if (initCount > maxCount || maxCount < 1) in Semaphore_OptCreateInit()
443 p->_count = initCount; in Semaphore_OptCreateInit()
447 return Semaphore_Create(p, initCount, maxCount); in Semaphore_OptCreateInit()