Searched refs:uxItemSize (Results 1 – 5 of 5) sorted by relevance
/Kernel-v10.6.2/ |
HD | queue.c | 116 UBaseType_t uxItemSize; /**< The size of each items that the queue will hold. */ member 220 const UBaseType_t uxItemSize, 307 ( ( SIZE_MAX / pxQueue->uxLength ) >= pxQueue->uxItemSize ) ) in xQueueGenericReset() 311 …pxQueue->u.xQueue.pcTail = pxQueue->pcHead + ( pxQueue->uxLength * pxQueue->uxItemSize ); /*lint !… in xQueueGenericReset() 314 …pcReadFrom = pxQueue->pcHead + ( ( pxQueue->uxLength - 1U ) * pxQueue->uxItemSize ); /*lint !e9016… in xQueueGenericReset() 366 const UBaseType_t uxItemSize, in xQueueGenericCreateStatic() argument 382 ( !( ( pucQueueStorage != NULL ) && ( uxItemSize == 0 ) ) ) && in xQueueGenericCreateStatic() 383 ( !( ( pucQueueStorage == NULL ) && ( uxItemSize != 0 ) ) ) ) in xQueueGenericCreateStatic() 412 … prvInitialiseNewQueue( uxQueueLength, uxItemSize, pucQueueStorage, ucQueueType, pxNewQueue ); in xQueueGenericCreateStatic() 478 const UBaseType_t uxItemSize, in xQueueGenericCreate() argument [all …]
|
/Kernel-v10.6.2/include/ |
HD | queue.h | 149 …#define xQueueCreate( uxQueueLength, uxItemSize ) xQueueGenericCreate( ( uxQueueLength ), ( uxI… argument 235 …Static( uxQueueLength, uxItemSize, pucQueueStorage, pxQueueBuffer ) xQueueGenericCreateStatic( … argument 1579 const UBaseType_t uxItemSize, 1590 const UBaseType_t uxItemSize,
|
HD | mpu_prototypes.h | 226 const UBaseType_t uxItemSize, 229 const UBaseType_t uxItemSize,
|
/Kernel-v10.6.2/portable/Common/ |
HD | mpu_wrappers.c | 1102 UBaseType_t uxItemSize, in MPU_xQueueGenericCreate() argument 1112 xReturn = xQueueGenericCreate( uxQueueLength, uxItemSize, ucQueueType ); in MPU_xQueueGenericCreate() 1120 xReturn = xQueueGenericCreate( uxQueueLength, uxItemSize, ucQueueType ); in MPU_xQueueGenericCreate() 1130 const UBaseType_t uxItemSize, 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()
|
HD | mpu_wrappers_v2.c | 2831 UBaseType_t uxItemSize, in MPU_xQueueGenericCreate() argument 2842 … xInternalQueueHandle = xQueueGenericCreate( uxQueueLength, uxItemSize, ucQueueType ); in MPU_xQueueGenericCreate() 2864 const UBaseType_t uxItemSize, in MPU_xQueueGenericCreateStatic() argument 2877 …xInternalQueueHandle = xQueueGenericCreateStatic( uxQueueLength, uxItemSize, pucQueueStorage, pxSt… in MPU_xQueueGenericCreateStatic()
|