| /dpdk/ |
| H A D | .gitattributes | 1 *.c diff=cpp 2 *.h diff=cpp 3 *.py diff=python
|
| /dpdk/drivers/net/bnx2x/ |
| H A D | bnx2x_stats.h | 452 DIFF_64(diff.hi, new->s##_hi, pstats->mac_stx[0].t##_hi, \ 453 diff.lo, new->s##_lo, pstats->mac_stx[0].t##_lo); \ 456 ADD_64(pstats->mac_stx[1].t##_hi, diff.hi, \ 457 pstats->mac_stx[1].t##_lo, diff.lo); \ 462 DIFF_64(diff.hi, new->s##_hi, old->s##_hi, \ 463 diff.lo, new->s##_lo, old->s##_lo); \ 464 ADD_64(estats->t##_hi, diff.hi, \ 465 estats->t##_lo, diff.lo); \ 475 #define ADD_STAT64(diff, t) \ argument 477 ADD_64(pstats->mac_stx[1].t##_hi, new->diff##_hi, \ [all …]
|
| /dpdk/lib/pdcp/ |
| H A D | pdcp_cnt.c | 77 uint32_t zeros, report_len, diff; in pdcp_cnt_report_fill() local 118 diff = (next_slab_id + nb_slabs - slab_id) % nb_slabs; in pdcp_cnt_report_fill() 121 diff += !(next_slab_id ^ slab_id) * nb_slabs; in pdcp_cnt_report_fill() 124 if (diff > report_len) { in pdcp_cnt_report_fill() 127 diff = report_len; in pdcp_cnt_report_fill() 130 report_len -= diff; in pdcp_cnt_report_fill()
|
| /dpdk/drivers/bus/dpaa/base/qbman/ |
| H A D | qman.h | 254 u8 diff, old_ci; in qm_eqcr_start_stash() local 262 diff = qm_cyc_diff(QM_EQCR_SIZE, old_ci, eqcr->ci); in qm_eqcr_start_stash() 263 eqcr->available += diff; in qm_eqcr_start_stash() 264 if (!diff) in qm_eqcr_start_stash() 380 u8 diff, old_ci = eqcr->ci; in qm_eqcr_cci_update() local 383 diff = qm_cyc_diff(QM_EQCR_SIZE, old_ci, eqcr->ci); in qm_eqcr_cci_update() 384 eqcr->available += diff; in qm_eqcr_cci_update() 385 return diff; in qm_eqcr_cci_update() 398 u8 diff, old_ci = eqcr->ci; in qm_eqcr_cce_update() local 402 diff = qm_cyc_diff(QM_EQCR_SIZE, old_ci, eqcr->ci); in qm_eqcr_cce_update() [all …]
|
| H A D | bman.h | 324 u8 diff, old_ci = rcr->ci; in bm_rcr_cci_update() local 330 diff = bm_cyc_diff(BM_RCR_SIZE, old_ci, rcr->ci); in bm_rcr_cci_update() 331 rcr->available += diff; in bm_rcr_cci_update() 332 return diff; in bm_rcr_cci_update() 348 u8 diff, old_ci = rcr->ci; in bm_rcr_cce_update() local 355 diff = bm_cyc_diff(BM_RCR_SIZE, old_ci, rcr->ci); in bm_rcr_cce_update() 356 rcr->available += diff; in bm_rcr_cce_update() 357 return diff; in bm_rcr_cce_update()
|
| /dpdk/lib/ipsec/ |
| H A D | ipsec_sqn.h | 153 uint32_t bit, bucket, last_bucket, new_bucket, diff, i; in esn_inb_update_sqn() local 169 diff = bucket - last_bucket; in esn_inb_update_sqn() 171 if (diff > sa->replay.nb_bucket) in esn_inb_update_sqn() 172 diff = sa->replay.nb_bucket; in esn_inb_update_sqn() 174 for (i = 0; i != diff; i++) { in esn_inb_update_sqn()
|
| /dpdk/app/test/ |
| H A D | test_timer_racecond.c | 120 int64_t diff = 0; in test_timer_racecond() local 150 while (diff >= 0) { in test_timer_racecond() 158 diff = end_time - cur_time; in test_timer_racecond()
|
| H A D | test_timer.c | 170 int64_t diff = 0; in timer_stress_main_loop() local 173 while (diff >= 0) { in timer_stress_main_loop() 194 diff = end_time - cur_time; in timer_stress_main_loop() 468 int64_t diff = 0; in timer_basic_main_loop() local 483 while (diff >= 0) { in timer_basic_main_loop() 493 diff = end_time - cur_time; in timer_basic_main_loop()
|
| H A D | test_pie.c | 207 static int check_drop_rate(double *diff, double drop_rate, double drop_prob, in check_drop_rate() argument 215 *diff = 0.0; in check_drop_rate() 217 *diff = (abs_diff / drop_prob) * 100.0; in check_drop_rate() 218 if (*diff > tolerance) in check_drop_rate() 410 double diff = 0.0; in func_test1() local 437 drop_prob * 100.0, drop_rate * 100.0, diff, in func_test1() 494 double diff = 0.0; in func_test2() local 528 if (!check_drop_rate(&diff, drop_rate, drop_prob, in func_test2() 536 drop_prob * 100.0, drop_rate * 100.0, diff, in func_test2() 633 double diff = 0.0; in func_test3() local [all …]
|
| /dpdk/examples/vm_power_manager/ |
| H A D | channel_monitor.c | 543 double rdtsc_curr, rdtsc_diff, diff; in get_pkt_diff() 571 diff = (vsi_pkt_total - vsi_pkt_count_prev_total) * in get_pkt_diff() 574 return diff; in get_pkt_diff() 582 uint64_t diff = 0; in apply_traffic_profile() 584 diff = get_pkt_diff(pol); in apply_traffic_profile() 586 if (diff >= (pol->pkt.traffic_policy.max_max_packet_thresh)) { in apply_traffic_profile() 592 } else if (diff >= (pol->pkt.traffic_policy.avg_max_packet_thresh)) { in apply_traffic_profile() 598 } else if (diff < (pol->pkt.traffic_policy.avg_max_packet_thresh)) { in apply_traffic_profile() 542 double rdtsc_curr, rdtsc_diff, diff; get_pkt_diff() local 581 uint64_t diff = 0; apply_traffic_profile() local
|
| /dpdk/examples/ipsec-secgw/test/ |
| H A D | data_rxtx.sh | 55 diff -u ${x} ${x}.copy1
|
| /dpdk/devtools/ |
| H A D | check-doc-vs-code.sh | 25 files=$(git diff-tree --name-only -r $trusted_commit..)
|
| /dpdk/app/test-acl/ |
| H A D | test-acl.sh | 71 diff -u ${OUTF}.chk ${OUTF}.out
|
| /dpdk/doc/guides/cryptodevs/ |
| H A D | qat.rst | 626 .. code-block:: diff 673 .. code-block:: diff 690 .. code-block:: diff
|
| /dpdk/doc/guides/rel_notes/ |
| H A D | release_18_08.rst | 179 .. code-block:: diff
|
| H A D | release_16_11.rst | 217 .. code-block:: diff
|
| H A D | release_17_08.rst | 296 .. code-block:: diff
|
| H A D | release_16_07.rst | 310 .. code-block:: diff
|
| H A D | release_19_02.rst | 215 .. code-block:: diff
|
| H A D | release_18_02.rst | 228 .. code-block:: diff
|
| H A D | release_19_08.rst | 290 .. code-block:: diff
|
| H A D | release_19_05.rst | 262 .. code-block:: diff
|
| H A D | release_17_05.rst | 415 .. code-block:: diff
|
| H A D | release_17_11.rst | 460 .. code-block:: diff
|
| H A D | release_2_2.rst | 596 .. code-block:: diff
|