| /dpdk/lib/cmdline/ |
| H A D | cmdline_rdline.c | 145 cirbuf_align_left(&rdl->left); in rdline_get_buffer() 221 cirbuf_del_tail(&rdl->left); in rdline_char_in() 244 cirbuf_del_tail(&rdl->left); in rdline_char_in() 251 cirbuf_del_tail(&rdl->left); in rdline_char_in() 280 CIRBUF_GET_LEN(&rdl->left)); in rdline_char_in() 283 cirbuf_del_tail(&rdl->left); in rdline_char_in() 326 while (! CIRBUF_IS_EMPTY(&rdl->left) && isblank2(cirbuf_get_tail(&rdl->left))) { in rdline_char_in() 328 cirbuf_del_tail(&rdl->left); in rdline_char_in() 330 while (! CIRBUF_IS_EMPTY(&rdl->left) && !isblank2(cirbuf_get_tail(&rdl->left))) { in rdline_char_in() 332 cirbuf_del_tail(&rdl->left); in rdline_char_in() [all …]
|
| H A D | cmdline_private.h | 35 struct cirbuf left; member
|
| /dpdk/lib/rib/ |
| H A D | rte_rib.c | 31 struct rte_rib_node *left; member 199 tmp = (tmp->left) ? tmp->left : tmp->right; in rte_rib_get_nxt() 216 if ((cur->left != NULL) && (cur->right != NULL)) in rte_rib_remove() 218 child = (cur->left == NULL) ? cur->right : cur->left; in rte_rib_remove() 226 if (cur->parent->left == cur) in rte_rib_remove() 227 cur->parent->left = child; in rte_rib_remove() 265 new_node->left = NULL; in rte_rib_insert() 297 tmp = (ip & (1 << (31 - d))) ? &(*tmp)->right : &(*tmp)->left; in rte_rib_insert() 311 new_node->left = *tmp; in rte_rib_insert() 330 common_node->left = new_node; in rte_rib_insert() [all …]
|
| H A D | rte_rib6.c | 30 struct rte_rib6_node *left; member 245 tmp = (tmp->left != NULL) ? tmp->left : tmp->right; in rte_rib6_get_nxt() 263 if ((cur->left != NULL) && (cur->right != NULL)) in rte_rib6_remove() 265 child = (cur->left == NULL) ? cur->right : cur->left; in rte_rib6_remove() 273 if (cur->parent->left == cur) in rte_rib6_remove() 274 cur->parent->left = child; in rte_rib6_remove() 318 new_node->left = NULL; in rte_rib6_insert() 355 &(*tmp)->left; in rte_rib6_insert() 381 new_node->left = *tmp; in rte_rib6_insert() 400 common_node->left = new_node; in rte_rib6_insert() [all …]
|
| /dpdk/lib/cryptodev/ |
| H A D | rte_crypto_sym.h | 959 uint32_t left; in rte_crypto_mbuf_to_vec() local 981 left = len - seglen; in rte_crypto_mbuf_to_vec() 989 if (left <= seglen) { in rte_crypto_mbuf_to_vec() 991 vec[i].len = left; in rte_crypto_mbuf_to_vec() 992 left = 0; in rte_crypto_mbuf_to_vec() 999 left -= seglen; in rte_crypto_mbuf_to_vec() 1002 RTE_ASSERT(left == 0); in rte_crypto_mbuf_to_vec()
|
| /dpdk/drivers/net/ionic/ |
| H A D | ionic_rxtx.c | 352 uint32_t left; in ionic_tx_tso() local 382 left = txm->data_len; in ionic_tx_tso() 390 while (left > 0) { in ionic_tx_tso() 396 left -= len; in ionic_tx_tso() 418 left = txm_seg->data_len; in ionic_tx_tso() 420 while (left > 0) { in ionic_tx_tso() 436 left -= len; in ionic_tx_tso() 782 uint32_t left; in ionic_rx_clean() local 827 left = cq_desc->len; in ionic_rx_clean() 830 left -= rxm->data_len; in ionic_rx_clean() [all …]
|
| /dpdk/drivers/common/sfc_efx/base/ |
| H A D | ef10_filter.c | 435 __in const efx_filter_spec_t *left, in ef10_filter_equal() argument 449 if (left->efs_rem_port != right->efs_rem_port) in ef10_filter_equal() 451 if (left->efs_loc_port != right->efs_loc_port) in ef10_filter_equal() 453 if (left->efs_inner_vid != right->efs_inner_vid) in ef10_filter_equal() 455 if (left->efs_outer_vid != right->efs_outer_vid) in ef10_filter_equal() 457 if (left->efs_ether_type != right->efs_ether_type) in ef10_filter_equal() 459 if (left->efs_ip_proto != right->efs_ip_proto) in ef10_filter_equal() 461 if (left->efs_encap_type != right->efs_encap_type) in ef10_filter_equal() 476 __in const efx_filter_spec_t *left, in ef10_filter_same_dest() argument 479 if ((left->efs_flags & EFX_FILTER_FLAG_RX_RSS) && in ef10_filter_same_dest() [all …]
|
| H A D | efx_filter.c | 1179 __in const siena_filter_spec_t *left, in siena_filter_equal() argument 1184 tbl_id = siena_filter_tbl_id(left->sfs_type); in siena_filter_equal() 1187 if (left->sfs_type != right->sfs_type) in siena_filter_equal() 1190 if (memcmp(left->sfs_dword, right->sfs_dword, in siena_filter_equal() 1191 sizeof (left->sfs_dword))) in siena_filter_equal() 1196 left->sfs_dmaq_id != right->sfs_dmaq_id) in siena_filter_equal()
|
| H A D | efx_mae.c | 1173 __in const efx_mae_match_spec_t *left, in efx_mae_match_specs_equal() argument 1176 return ((memcmp(left, right, sizeof (*left)) == 0) ? B_TRUE : B_FALSE); in efx_mae_match_specs_equal() 1969 __in const efx_mae_actions_t *left, in efx_mae_action_set_specs_equal() argument 1987 return ((memcmp(left, right, cmp_size) == 0) ? B_TRUE : B_FALSE); in efx_mae_action_set_specs_equal() 1993 __in const efx_mae_match_spec_t *left, in efx_mae_match_specs_class_cmp() argument 2010 switch (left->emms_type) { in efx_mae_match_specs_class_cmp() 2019 mvpl = left->emms_mask_value_pairs.outer; in efx_mae_match_specs_class_cmp() 2030 mvpl = left->emms_mask_value_pairs.action; in efx_mae_match_specs_class_cmp() 2043 if (left->emms_type != right->emms_type || in efx_mae_match_specs_class_cmp() 2044 left->emms_prio != right->emms_prio) { in efx_mae_match_specs_class_cmp()
|
| /dpdk/lib/eal/common/ |
| H A D | eal_common_fbarray.c | 142 unsigned int run_start, clz, left; in find_next_n() local 168 left = n; in find_next_n() 214 left -= clz; in find_next_n() 226 need = RTE_MIN(left, MASK_ALIGN); in find_next_n() 243 left -= need; in find_next_n() 246 if (left == 0) { in find_next_n() 431 left = n; in find_prev_n() 481 left -= ctz; in find_prev_n() 501 need = RTE_MIN(left, MASK_ALIGN); in find_prev_n() 518 left -= need; in find_prev_n() [all …]
|
| /dpdk/lib/vhost/ |
| H A D | vhost_crypto.c | 531 int left = size - desc->len; in move_desc() local 537 left -= desc->len; in move_desc() 540 if (unlikely(left > 0)) in move_desc() 579 int left = size; in copy_data() local 611 left -= to_copy; in copy_data() 647 left -= to_copy; in copy_data() 650 if (unlikely(left > 0)) { in copy_data() 1709 uint16_t count = 0, left = nb_ops; in rte_vhost_crypto_finalize_requests() local 1713 while (left) { in rte_vhost_crypto_finalize_requests() 1720 left -= count; in rte_vhost_crypto_finalize_requests() [all …]
|
| /dpdk/lib/eal/linux/ |
| H A D | eal_vfio.c | 188 struct user_mem_map *left = &user_mem_maps->maps[i]; in delete_maps() local 191 if (user_mem_map_cmp(left, right) == 0) { in delete_maps() 192 memset(left, 0, sizeof(*left)); in delete_maps() 207 struct user_mem_map *left = &user_mem_maps->maps[i]; in copy_maps() local 211 if (is_null_map(left)) { in copy_maps() 212 memcpy(left, right, sizeof(*left)); in copy_maps() 224 if (memcmp(left, right, sizeof(struct user_mem_map)) == 0) in merge_map() 227 if (left->addr + left->len != right->addr) in merge_map() 229 if (left->iova + left->len != right->iova) in merge_map() 231 if (left->chunk != right->chunk) in merge_map() [all …]
|
| /dpdk/drivers/net/mlx5/ |
| H A D | mlx5_rxtx_vec_altivec.h | 148 __vector unsigned short left, right; in rxq_cq_decompress_v() local 244 left = vec_perm((__vector unsigned short)byte_cnt, in rxq_cq_decompress_v() 248 byte_cnt = (__vector unsigned char)vec_add(left, right); in rxq_cq_decompress_v() 249 left = vec_perm((__vector unsigned short)byte_cnt, in rxq_cq_decompress_v() 253 byte_cnt = (__vector unsigned char)vec_add(left, right); in rxq_cq_decompress_v() 880 __vector unsigned short left, right; in rxq_cq_process_v() local 1261 left = vec_perm((__vector unsigned short)byte_cnt, in rxq_cq_process_v() 1265 byte_cnt = (__vector unsigned char)vec_add(left, right); in rxq_cq_process_v() 1266 left = vec_perm((__vector unsigned short)byte_cnt, in rxq_cq_process_v() 1270 byte_cnt = (__vector unsigned char)vec_add(left, right); in rxq_cq_process_v()
|
| /dpdk/drivers/net/bnxt/tf_core/ |
| H A D | dpool.c | 188 adj_list->entry[adj_list->size].left = count; in dpool_defrag() 220 adj_list->entry[i].left + in dpool_defrag() 223 adj_list->entry[i].left + in dpool_defrag()
|
| H A D | dpool.h | 88 uint32_t left; member
|
| /dpdk/lib/net/ |
| H A D | rte_ip.h | 167 uint16_t left = 0; in __rte_raw_cksum() local 168 *(unsigned char *)&left = *(const unsigned char *)end; in __rte_raw_cksum() 169 sum += left; in __rte_raw_cksum()
|
| /dpdk/drivers/net/cnxk/ |
| H A D | cn10k_tx.h | 982 left = pkts; in cn10k_nix_xmit_pkts() 984 burst = left > 32 ? 32 : left; in cn10k_nix_xmit_pkts() 1022 left -= burst; in cn10k_nix_xmit_pkts() 1065 if (left) in cn10k_nix_xmit_pkts() 1118 left = pkts; in cn10k_nix_xmit_pkts_mseg() 1120 burst = left > 32 ? 32 : left; in cn10k_nix_xmit_pkts_mseg() 1166 left -= burst; in cn10k_nix_xmit_pkts_mseg() 1215 if (left) in cn10k_nix_xmit_pkts_mseg() 1684 left = pkts; in cn10k_nix_xmit_pkts_vector() 1689 left; in cn10k_nix_xmit_pkts_vector() [all …]
|
| /dpdk/drivers/net/hinic/base/ |
| H A D | hinic_pmd_mbox.c | 668 u16 left = msg_len; in send_mbox_to_func() local 690 if (left <= HINIC_MSG_SEG_LEN) { in send_mbox_to_func() 694 header |= HINIC_MBOX_HEADER_SET(left, SEG_LEN); in send_mbox_to_func() 697 seg_len = left; in send_mbox_to_func() 707 left -= HINIC_MSG_SEG_LEN; in send_mbox_to_func()
|
| /dpdk/lib/timer/ |
| H A D | rte_timer.c | 1019 int64_t left = -ENOENT; in rte_timer_next_ticks() local 1029 left = tm->expire - cur_time; in rte_timer_next_ticks() 1030 if (left < 0) in rte_timer_next_ticks() 1031 left = 0; in rte_timer_next_ticks() 1035 return left; in rte_timer_next_ticks()
|
| /dpdk/doc/guides/eventdevs/ |
| H A D | dsw.rst | 54 Ports left unmaintained for long periods of time will prevent load
|
| /dpdk/doc/guides/nics/ |
| H A D | vdev_netvsc.rst | 31 handling of physical devices is left to their original PMDs; this virtual
|
| /dpdk/drivers/net/cxgbe/ |
| H A D | sge.c | 1290 int left = RTE_PTR_DIFF(q->stat, *to); in inline_tx_mbuf() local 1296 rte_memcpy(*to, from, left); in inline_tx_mbuf() 1297 from = RTE_PTR_ADD(from, left); in inline_tx_mbuf() 1298 left = len - left; in inline_tx_mbuf() 1299 rte_memcpy((void *)q->desc, from, left); in inline_tx_mbuf() 1300 *to = RTE_PTR_ADD((void *)q->desc, left); in inline_tx_mbuf()
|
| /dpdk/doc/guides/rawdevs/ |
| H A D | ifpga.rst | 46 handling of AFU devices is left to different PMDs; all the design as
|
| /dpdk/drivers/net/sfc/ |
| H A D | sfc.c | 1444 sfc_hw_switch_ids_equal(const struct sfc_hw_switch_id *left, in sfc_hw_switch_ids_equal() argument 1447 return strncmp(left->board_sn, right->board_sn, in sfc_hw_switch_ids_equal() 1448 sizeof(left->board_sn)) == 0; in sfc_hw_switch_ids_equal()
|
| /dpdk/doc/guides/prog_guide/ |
| H A D | traffic_management.rst | 148 DEI bit is left as is (either set or not). 152 the current color, otherwise the ECN field is left as is. 158 color is left as is.
|