Searched refs:prev (Results 1 – 5 of 5) sorted by relevance
/trusted-firmware-m-3.6.0/platform/ext/target/nxp/common/Native_Driver/components/lists/ |
D | fsl_component_generic_list.c | 142 element->prev = list->tail; in LIST_AddTail() 187 list->head->prev = element; in LIST_AddHead() 189 element->prev = NULL; in LIST_AddHead() 238 element->next->prev = NULL; in LIST_RemoveHead() 309 return element->prev; in LIST_GetPrev() 356 if (element->prev == NULL) /*Element is head or solo*/ in LIST_RemoveElement() 362 element->list->tail = element->prev; /*is null if solo*/ in LIST_RemoveElement() 364 if (element->prev != NULL) /*Element is not head*/ in LIST_RemoveElement() 366 element->prev->next = element->next; in LIST_RemoveElement() 370 element->next->prev = element->prev; in LIST_RemoveElement() [all …]
|
D | fsl_component_generic_list.h | 87 struct list_element_tag *prev; /*!< previous list element */ member
|
/trusted-firmware-m-3.6.0/secure_fw/spm/include/ |
D | lists.h | 77 #define UNI_LIST_REMOVE_NODE(prev, node, link) do { \ argument 78 (prev)->link = (node)->link; \ 87 #define UNI_LIST_MOVE_AFTER(posi, prev, node, link) do {\ argument 88 if (prev != NULL) { \ 89 (prev)->link = (node)->link; \ 100 #define UNI_LIST_FOREACH_NODE_PREV(prev, node, head, link) \ argument 101 for (prev = NULL, node = (head)->link; \ 102 node != NULL; prev = node, node = (prev)->link)
|
/trusted-firmware-m-3.6.0/secure_fw/spm/core/ |
D | psa_api.c | 147 struct connection_t **pr_handle_iter, **prev = NULL; in tfm_spm_partition_psa_get() local 157 prev = pr_handle_iter; in tfm_spm_partition_psa_get() 159 handle = *prev; in tfm_spm_partition_psa_get() 160 UNI_LIST_REMOVE_NODE_BY_PNODE(prev, p_handles); in tfm_spm_partition_psa_get()
|
/trusted-firmware-m-3.6.0/platform/ext/target/nxp/common/Native_Driver/components/uart/ |
D | fsl_adapter_usart.c | 854 hal_uart_dma_state_t *prev; in HAL_UartDMADeinit() local 889 prev = NULL; in HAL_UartDMADeinit() 896 if (prev == NULL) in HAL_UartDMADeinit() 903 prev->next = NULL; in HAL_UartDMADeinit() 908 prev->next = curr->next; in HAL_UartDMADeinit() 913 prev = curr; in HAL_UartDMADeinit()
|