Home
last modified time | relevance | path

Searched refs:tail (Results 1 – 12 of 12) sorted by relevance

/hal_nxp-3.5.0/mcux/mcux-sdk/components/lists/
Dfsl_component_generic_list.c83 list->tail = NULL; in LIST_Init()
138 list->tail->next = element; in LIST_AddTail()
142 element->prev = list->tail; in LIST_AddTail()
146 list->tail = element; in LIST_AddTail()
181 list->tail = element; in LIST_AddHead()
232 list->tail = NULL; in LIST_RemoveHead()
362 element->list->tail = element->prev; /*is null if solo*/ in LIST_RemoveElement()
Dfsl_component_generic_list.h71 struct list_element_tag *tail; /*!< list tail */ member
/hal_nxp-3.5.0/mcux/mcux-sdk/components/mem_manager/
Dfsl_component_mem_manager_light.c138 struct blockHeader_s *tail; member
254 UPDATE_PEAK(((uint32_t)FreeBlockHdrList.tail + BLOCK_HDR_SIZE), s_memStatis.peak_upper_addr); in MEM_BufferAllocates_memStatis()
324 assert(BlockHdr < FreeBlockHdrList.tail); in MEM_BufferFreeBlocksCleanUp()
336 FreeBlockHdrList.tail = BlockHdr; in MEM_BufferFreeBlocksCleanUp()
439 FreeBlockHdrList.tail = firstBlockHdr; in MEM_Init()
487 assert(FreeBlockHdr < FreeBlockHdrList.tail); in MEM_BufferAllocate()
543 assert(FreeBlockHdr == FreeBlockHdrList.tail); in MEM_BufferAllocate()
572 assert(FreeBlockHdrList.head == FreeBlockHdrList.tail); in MEM_BufferAllocate()
586 FreeBlockHdrList.tail = NextFreeBlockHdr; in MEM_BufferAllocate()
733 assert(BlockHdr < FreeBlockHdrList.tail); in MEM_BufferFree()
[all …]
/hal_nxp-3.5.0/mcux/mcux-sdk/components/log/
Dfsl_component_log_backend_ringbuffer.c41 __WEAK_FUNC void log_backend_ringbuffer_update(uint8_t *buffer, size_t head, size_t tail);
42 __WEAK_FUNC void log_backend_ringbuffer_update(uint8_t *buffer, size_t head, size_t tail) in log_backend_ringbuffer_update() argument
46 (void)tail; in log_backend_ringbuffer_update()
/hal_nxp-3.5.0/mcux/mcux-sdk/components/osa/
Dfsl_os_abstraction_bm.c132 uint16_t tail; /*!< Index of the next place to write to */ member
1117 pMsgQStruct->tail = 0; in OSA_MsgQCreate()
1153 pMsgArray = &pQueue->queueMem[pQueue->tail]; in OSA_MsgQPut()
1160 pQueue->tail += (uint16_t)pQueue->size; in OSA_MsgQPut()
1162 if (pQueue->tail >= (pQueue->max * pQueue->size)) in OSA_MsgQPut()
1164 pQueue->tail = 0; in OSA_MsgQPut()
/hal_nxp-3.5.0/mcux/mcux-sdk/drivers/spdif/
Dfsl_spdif_edma.c148 currentTcd = handle->tail; in SPDIF_SubmitTransfer()
157 handle->tail = nextTcd; in SPDIF_SubmitTransfer()
/hal_nxp-3.5.0/mcux/mcux-sdk/drivers/dma3/
Dfsl_edma.c867 handle->tail = 0; in EDMA_InstallTCDMemory()
1127 currentTcd = handle->tail; in EDMA_SubmitTransfer()
1136 handle->tail = nextTcd; in EDMA_SubmitTransfer()
1350 handle->tail = 0; in EDMA_AbortTransfer()
Dfsl_edma.h248 volatile int8_t tail; /*!< The last TCD index. */ member
/hal_nxp-3.5.0/mcux/middleware/mcux-sdk-middleware-usb/host/
Dusb_host_ohci.c1092 uint32_t tail = pipe->ed->TailP & USB_HOST_OHCI_ED_TAILP_MASK; in USB_HostOhciTdDoneHandle() local
1095 if (head != tail) in USB_HostOhciTdDoneHandle()
1966 uint32_t tail; in USB_HostOhciSof() local
2005 tail = pipe->ed->TailP & USB_HOST_OHCI_ED_TAILP_MASK; in USB_HostOhciSof()
2007 if ((0U != pipe->isBusy) && (head == tail)) in USB_HostOhciSof()
2754 uint32_t tail = pipe->ed->TailP & USB_HOST_OHCI_ED_TAILP_MASK; in USB_HostOhciIsrFunction() local
2756 if (head == tail) in USB_HostOhciIsrFunction()
/hal_nxp-3.5.0/mcux/mcux-sdk/drivers/edma/
Dfsl_edma.h251 …volatile int8_t tail; /*!< The last TCD index. Should point to the next TCD to be stored into th… member
Dfsl_edma.c1164 currentTcd = handle->tail; in EDMA_SubmitTransfer()
1173 handle->tail = nextTcd; in EDMA_SubmitTransfer()
1365 handle->tail = 0; in EDMA_AbortTransfer()
/hal_nxp-3.5.0/mcux/mcux-sdk/components/uart/
Dfsl_adapter_lpuart.c1718 uartDmaHandle->rxEdmaHandle.tail = 0U; in LPUART_StartRingBufferEDMA()