Searched refs:xQueueSizeInBytes (Results 1 – 1 of 1) sorted by relevance
433 size_t xQueueSizeInBytes; in xQueueGenericCreate() local441 xQueueSizeInBytes = ( size_t ) 0; in xQueueGenericCreate()447 …xQueueSizeInBytes = ( size_t ) ( uxQueueLength * uxItemSize ); /*lint !e961 MISRA exception as the… in xQueueGenericCreate()451 configASSERT( ( uxItemSize == 0 ) || ( uxQueueLength == ( xQueueSizeInBytes / uxItemSize ) ) ); in xQueueGenericCreate()454 configASSERT( ( sizeof( Queue_t ) + xQueueSizeInBytes ) > xQueueSizeInBytes ); in xQueueGenericCreate()465 …pxNewQueue = ( Queue_t * ) pvPortMalloc( sizeof( Queue_t ) + xQueueSizeInBytes ); /*lint !e9087 !e… in xQueueGenericCreate()