Searched defs:tail_cons_indx (Results 1 - 3 of 3) sorted by relevance

/osnet-11/usr/src/lib/udapl/udapl_tavor/tavor/
H A Ddapl_arbel_hw.c1390 uint32_t cons_indx, tail_cons_indx, wrap_around_mask; local
1424 tail_cons_indx = cons_indx;
1430 tail_cons_indx = (tail_cons_indx + 1) & wrap_around_mask;
1433 cqe = &cq->cq_addr[tail_cons_indx];
1437 * Using the 'tail_cons_indx' that was just set, we now know how many
1439 * 'new_indx' to the last entry identified by 'tail_cons_indx'
1441 check_indx = new_indx = (tail_cons_indx - 1) & wrap_around_mask;
H A Ddapl_hermon_hw.c1445 uint32_t cons_indx, tail_cons_indx; local
1473 tail_cons_indx = cons_indx;
1479 tail_cons_indx = (tail_cons_indx + 1) & cq_wrap_around_mask;
1482 cqe = &cq->cq_addr[tail_cons_indx];
1486 * Using the 'tail_cons_indx' that was just set, we now know how many
1488 * 'new_indx' to the last entry identified by 'tail_cons_indx'
1490 check_indx = new_indx = (tail_cons_indx - 1) & cq_wrap_around_mask;
H A Ddapl_tavor_hw.c1723 uint32_t cons_indx, tail_cons_indx, wrap_around_mask; local
1758 tail_cons_indx = cons_indx;
1764 tail_cons_indx = (tail_cons_indx + 1) & wrap_around_mask;
1767 cqe = &cq->cq_addr[tail_cons_indx];
1771 * Using the 'tail_cons_indx' that was just set, we now know how many
1773 * 'new_indx' to the last entry identified by 'tail_cons_indx'
1775 check_indx = new_indx = (tail_cons_indx - 1) & wrap_around_mask;

Completed in 32 milliseconds