| /f-stack/dpdk/lib/librte_stack/ |
| H A D | rte_stack_lf_c11.h | 45 struct rte_stack_lf_head new_head; in __rte_stack_lf_push_elems() local 50 new_head.top = first; in __rte_stack_lf_push_elems() 51 new_head.cnt = old_head.cnt + 1; in __rte_stack_lf_push_elems() 61 (rte_int128_t *)&new_head, in __rte_stack_lf_push_elems() 105 struct rte_stack_lf_head new_head; in __rte_stack_lf_pop_elems() local 141 new_head.top = tmp; in __rte_stack_lf_pop_elems() 142 new_head.cnt = old_head.cnt + 1; in __rte_stack_lf_pop_elems() 161 (rte_int128_t *)&new_head, in __rte_stack_lf_pop_elems()
|
| H A D | rte_stack_lf_generic.h | 45 struct rte_stack_lf_head new_head; in __rte_stack_lf_push_elems() local 57 new_head.top = first; in __rte_stack_lf_push_elems() 58 new_head.cnt = old_head.cnt + 1; in __rte_stack_lf_push_elems() 66 (rte_int128_t *)&new_head, in __rte_stack_lf_push_elems() 100 struct rte_stack_lf_head new_head; in __rte_stack_lf_pop_elems() local 134 new_head.top = tmp; in __rte_stack_lf_pop_elems() 135 new_head.cnt = old_head.cnt + 1; in __rte_stack_lf_pop_elems() 141 (rte_int128_t *)&new_head, in __rte_stack_lf_pop_elems()
|
| /f-stack/dpdk/lib/librte_ring/ |
| H A D | rte_ring_generic.h | 58 uint32_t *old_head, uint32_t *new_head, in __rte_ring_move_prod_head() argument 92 *new_head = *old_head + n; in __rte_ring_move_prod_head() 94 r->prod.head = *new_head, success = 1; in __rte_ring_move_prod_head() 97 *old_head, *new_head); in __rte_ring_move_prod_head() 128 uint32_t *old_head, uint32_t *new_head, in __rte_ring_move_cons_head() argument 160 *new_head = *old_head + n; in __rte_ring_move_cons_head() 162 r->cons.head = *new_head; in __rte_ring_move_cons_head() 167 *new_head); in __rte_ring_move_cons_head()
|
| H A D | rte_ring_c11_mem.h | 56 uint32_t *old_head, uint32_t *new_head, in __rte_ring_move_prod_head() argument 93 *new_head = *old_head + n; in __rte_ring_move_prod_head() 95 r->prod.head = *new_head, success = 1; in __rte_ring_move_prod_head() 99 old_head, *new_head, in __rte_ring_move_prod_head() 132 uint32_t *old_head, uint32_t *new_head, in __rte_ring_move_cons_head() argument 168 *new_head = *old_head + n; in __rte_ring_move_cons_head() 170 r->cons.head = *new_head, success = 1; in __rte_ring_move_cons_head() 174 old_head, *new_head, in __rte_ring_move_cons_head()
|
| /f-stack/dpdk/drivers/event/sw/ |
| H A D | iq_chunk.h | 178 struct sw_queue_chunk *new_head; in iq_put_back() local 184 new_head = iq_alloc_chunk(sw); in iq_put_back() 185 new_head->next = iq->head; in iq_put_back() 186 iq->head = new_head; in iq_put_back()
|
| /f-stack/dpdk/drivers/common/qat/ |
| H A D | qat_qp.c | 554 uint32_t old_head, new_head; in rxq_free_desc() local 558 new_head = q->head; in rxq_free_desc() 564 if (new_head < old_head) { in rxq_free_desc() 566 memset(q->base_addr, ADF_RING_EMPTY_SIG_BYTE, new_head); in rxq_free_desc() 568 memset(cur_desc, ADF_RING_EMPTY_SIG_BYTE, new_head - old_head); in rxq_free_desc() 571 q->csr_head = new_head; in rxq_free_desc() 575 q->hw_queue_number, new_head); in rxq_free_desc()
|
| /f-stack/dpdk/drivers/crypto/qat/ |
| H A D | qat_sym_hw_dp.c | 859 uint32_t old_head, new_head; in qat_sym_dp_update_head() local 863 new_head = rx_queue->head; in qat_sym_dp_update_head() 869 if (new_head < old_head) { in qat_sym_dp_update_head() 873 new_head); in qat_sym_dp_update_head() 875 memset(cur_desc, ADF_RING_EMPTY_SIG_BYTE, new_head - in qat_sym_dp_update_head() 879 rx_queue->csr_head = new_head; in qat_sym_dp_update_head() 884 new_head); in qat_sym_dp_update_head()
|
| /f-stack/freebsd/netpfil/ipfw/ |
| H A D | ip_fw_table_algo.c | 1784 struct chashbhead *old_head, *new_head; in ta_modify_chash() local 1795 new_head = (struct chashbhead *)mi->main_ptr; in ta_modify_chash() 1809 ti->state = new_head; in ta_modify_chash() 1810 cfg->head4 = new_head; in ta_modify_chash() 1816 new_head = (struct chashbhead *)mi->main_ptr6; in ta_modify_chash() 1830 ti->xstate = new_head; in ta_modify_chash() 1831 cfg->head6 = new_head; in ta_modify_chash() 3699 struct fhashbhead *old_head, *new_head; in ta_modify_fhash() local 3711 new_head = (struct fhashbhead *)mi->main_ptr; in ta_modify_fhash() 3719 ti->state = new_head; in ta_modify_fhash() [all …]
|
| /f-stack/freebsd/net/ |
| H A D | iflib.c | 3357 struct mbuf *new_head; in iflib_ether_pad() local 3360 new_head = m_dup(*m_head, M_NOWAIT); in iflib_ether_pad() 3361 if (new_head == NULL) { in iflib_ether_pad() 3369 *m_head = new_head; in iflib_ether_pad()
|