HomeSort by: relevance | last modified time | path
    Searched defs:head_masked (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/external/bsd/ena-com/
ena_eth_com.c 40 u16 expected_phase, head_masked; local in function:ena_com_get_next_rx_cdesc
43 head_masked = io_cq->head & (io_cq->q_depth - 1);
47 + (head_masked * io_cq->cdesc_entry_size_in_bytes));
238 u16 count = 0, head_masked; local in function:ena_com_cdesc_rx_pkt_get
256 head_masked = io_cq->head & (io_cq->q_depth - 1);
259 io_cq->cur_rx_pkt_cdesc_start_idx = head_masked;
ena_com.c 494 u16 head_masked; local in function:ena_com_handle_admin_completion
497 head_masked = admin_queue->cq.head & (admin_queue->q_depth - 1);
500 cqe = &admin_queue->cq.entries[head_masked];
511 head_masked++;
513 if (unlikely(head_masked == admin_queue->q_depth)) {
514 head_masked = 0;
518 cqe = &admin_queue->cq.entries[head_masked];

Completed in 14 milliseconds