Home
last modified time | relevance | path

Searched refs:uxQueueLength (Results 1 – 5 of 5) sorted by relevance

/Kernel-v10.6.2/include/
HDqueue.h149 …#define xQueueCreate( uxQueueLength, uxItemSize ) xQueueGenericCreate( ( uxQueueLength ), ( uxI… argument
235 …ine xQueueCreateStatic( uxQueueLength, uxItemSize, pucQueueStorage, pxQueueBuffer ) xQueueGener… argument
1578 QueueHandle_t xQueueGenericCreate( const UBaseType_t uxQueueLength,
1589 QueueHandle_t xQueueGenericCreateStatic( const UBaseType_t uxQueueLength,
HDmpu_prototypes.h225 QueueHandle_t MPU_xQueueGenericCreate( const UBaseType_t uxQueueLength,
228 QueueHandle_t MPU_xQueueGenericCreateStatic( const UBaseType_t uxQueueLength,
/Kernel-v10.6.2/
HDqueue.c219 static void prvInitialiseNewQueue( const UBaseType_t uxQueueLength,
365 QueueHandle_t xQueueGenericCreateStatic( const UBaseType_t uxQueueLength, in xQueueGenericCreateStatic() argument
377 if( ( uxQueueLength > ( UBaseType_t ) 0 ) && in xQueueGenericCreateStatic()
412 … prvInitialiseNewQueue( uxQueueLength, uxItemSize, pucQueueStorage, ucQueueType, pxNewQueue ); in xQueueGenericCreateStatic()
477 QueueHandle_t xQueueGenericCreate( const UBaseType_t uxQueueLength, in xQueueGenericCreate() argument
485 if( ( uxQueueLength > ( UBaseType_t ) 0 ) && in xQueueGenericCreate()
487 ( ( SIZE_MAX / uxQueueLength ) >= uxItemSize ) && in xQueueGenericCreate()
489 ( ( SIZE_MAX - sizeof( Queue_t ) ) >= ( uxQueueLength * uxItemSize ) ) ) in xQueueGenericCreate()
494 …xQueueSizeInBytes = ( size_t ) ( uxQueueLength * uxItemSize ); /*lint !e961 MISRA exception as the… in xQueueGenericCreate()
523 … prvInitialiseNewQueue( uxQueueLength, uxItemSize, pucQueueStorage, ucQueueType, pxNewQueue ); in xQueueGenericCreate()
[all …]
/Kernel-v10.6.2/portable/Common/
HDmpu_wrappers.c1101 QueueHandle_t MPU_xQueueGenericCreate( UBaseType_t uxQueueLength, in MPU_xQueueGenericCreate() argument
1112 xReturn = xQueueGenericCreate( uxQueueLength, uxItemSize, ucQueueType ); in MPU_xQueueGenericCreate()
1120 xReturn = xQueueGenericCreate( uxQueueLength, uxItemSize, ucQueueType ); in MPU_xQueueGenericCreate()
1129 QueueHandle_t MPU_xQueueGenericCreateStatic( const UBaseType_t uxQueueLength, in MPU_xQueueGenericCreateStatic() argument
1142 …xReturn = xQueueGenericCreateStatic( uxQueueLength, uxItemSize, pucQueueStorage, pxStaticQueue, uc… in MPU_xQueueGenericCreateStatic()
1150 …xReturn = xQueueGenericCreateStatic( uxQueueLength, uxItemSize, pucQueueStorage, pxStaticQueue, uc… in MPU_xQueueGenericCreateStatic()
HDmpu_wrappers_v2.c2116 UBaseType_t uxQueueItemSize, uxQueueLength; in MPU_xQueueGenericSendImpl() local
2131 uxQueueLength = uxQueueGetQueueLength( xInternalQueueHandle ); in MPU_xQueueGenericSendImpl()
2134 … ( !( ( xCopyPosition == queueOVERWRITE ) && ( uxQueueLength != ( UBaseType_t ) 1U ) ) ) in MPU_xQueueGenericSendImpl()
2830 QueueHandle_t MPU_xQueueGenericCreate( UBaseType_t uxQueueLength, in MPU_xQueueGenericCreate() argument
2842 … xInternalQueueHandle = xQueueGenericCreate( uxQueueLength, uxItemSize, ucQueueType ); in MPU_xQueueGenericCreate()
2863 QueueHandle_t MPU_xQueueGenericCreateStatic( const UBaseType_t uxQueueLength, in MPU_xQueueGenericCreateStatic() argument
2877 …xInternalQueueHandle = xQueueGenericCreateStatic( uxQueueLength, uxItemSize, pucQueueStorage, pxSt… in MPU_xQueueGenericCreateStatic()