Searched refs:tmpRead (Results 1 – 2 of 2) sorted by relevance
36 uint16_t tmpRead = pRead; in IsCycQueueEmpty() local38 return (tmpRead == tmpWrite); in IsCycQueueEmpty()50 uint16_t tmpRead = pRead; in IsCycQueueFull() local52 return ((tmpWrite + 1) & (MAX_BUFFER_SIZE - 1)) == tmpRead; in IsCycQueueFull()64 uint16_t tmpRead = pRead; in CycQueueSize() local66 return (tmpWrite - tmpRead + MAX_BUFFER_SIZE) & (MAX_BUFFER_SIZE - 1); in CycQueueSize()78 uint16_t tmpRead = pRead; in CycQueueRemainSize() local80 return (MAX_BUFFER_SIZE - tmpWrite + tmpRead - 1) & (MAX_BUFFER_SIZE - 1); in CycQueueRemainSize()
119 uint16_t tmpRead = hci_uart_obj->rx_read_idx; in hci_rx_empty() local121 return (tmpRead == tmpWrite); in hci_rx_empty()
Completed in 8 milliseconds