Home
last modified time | relevance | path

Searched refs:uxNumberOfItems (Results 1 – 4 of 4) sorted by relevance

/Kernel-v11.1.0/
Dlist.c78 pxList->uxNumberOfItems = ( UBaseType_t ) 0U; in vListInitialise()
133 ( pxList->uxNumberOfItems ) = ( UBaseType_t ) ( pxList->uxNumberOfItems + 1U ); in vListInsertEnd()
208 ( pxList->uxNumberOfItems ) = ( UBaseType_t ) ( pxList->uxNumberOfItems + 1U ); in vListInsert()
240 ( pxList->uxNumberOfItems ) = ( UBaseType_t ) ( pxList->uxNumberOfItems - 1U ); in uxListRemove()
242 traceRETURN_uxListRemove( pxList->uxNumberOfItems ); in uxListRemove()
244 return pxList->uxNumberOfItems; in uxListRemove()
DHistory.txt844 + The uxNumberOfItems member of List_t is now volatile - solving an issue
/Kernel-v11.1.0/include/
Dlist.h175 configLIST_VOLATILE UBaseType_t uxNumberOfItems; member
258 #define listLIST_IS_EMPTY( pxList ) ( ( ( pxList )->uxNumberOfItems == ( UBas…
263 #define listCURRENT_LIST_LENGTH( pxList ) ( ( pxList )->uxNumberOfItems )
337 … ( ( pxList )->uxNumberOfItems ) = ( UBaseType_t ) ( ( ( pxList )->uxNumberOfItems ) - 1U ); \
384 … ( ( pxList )->uxNumberOfItems ) = ( UBaseType_t ) ( ( ( pxList )->uxNumberOfItems ) + 1U ); \
DFreeRTOS.h2625 #define traceRETURN_uxListRemove( uxNumberOfItems ) argument