Home | History | Annotate | Download | only in lib_src

Lines Matching full:queuesize

90 EAS_INLINE EAS_U8 JET_IncQueueIndex (EAS_U8 index, EAS_U8 queueSize)
92 if (++index == queueSize)
103 EAS_INLINE void JET_WriteQueue (EAS_U32 *pEventQueue, EAS_U8 *pWriteIndex, EAS_U8 readIndex, EAS_U8 queueSize, EAS_U32 event)
108 temp = JET_IncQueueIndex(*pWriteIndex, queueSize);
126 EAS_INLINE EAS_BOOL JET_ReadQueue (EAS_U32 *pEventQueue, EAS_U8 *pReadIndex, EAS_U8 writeIndex, EAS_U8 queueSize, EAS_U32 *pEvent)
135 *pReadIndex = JET_IncQueueIndex(*pReadIndex, queueSize);