Home
last modified time | relevance | path

Searched refs:tmpRead (Results 1 – 2 of 2) sorted by relevance

/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/common/bluetooth/realtek/sdk/board/common/src/
A Dcycle_queue.c36 uint16_t tmpRead = pRead; in IsCycQueueEmpty() local
38 return (tmpRead == tmpWrite); in IsCycQueueEmpty()
50 uint16_t tmpRead = pRead; in IsCycQueueFull() local
52 return ((tmpWrite + 1) & (MAX_BUFFER_SIZE - 1)) == tmpRead; in IsCycQueueFull()
64 uint16_t tmpRead = pRead; in CycQueueSize() local
66 return (tmpWrite - tmpRead + MAX_BUFFER_SIZE) & (MAX_BUFFER_SIZE - 1); in CycQueueSize()
78 uint16_t tmpRead = pRead; in CycQueueRemainSize() local
80 return (MAX_BUFFER_SIZE - tmpWrite + tmpRead - 1) & (MAX_BUFFER_SIZE - 1); in CycQueueRemainSize()
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/common/bluetooth/realtek/sdk/board/amebad/src/hci/
A Dhci_uart.c119 uint16_t tmpRead = hci_uart_obj->rx_read_idx; in hci_rx_empty() local
121 return (tmpRead == tmpWrite); in hci_rx_empty()

Completed in 8 milliseconds