| /dpdk/doc/guides/sample_app_ug/ |
| H A D | link_status_intr.rst | 40 .. code-block:: console 55 .. code-block:: console 65 The following sections provide some explanation of the code. 85 The main part of the code in the main() function relates to the initialization of the driver. 86 To fully understand this code, it is recommended to study the chapters that related to the Poll Mod… 198 .. code-block:: c 213 This is done using the following code: 229 In the following code, the two lines for calculating the output port require some explanation.
|
| H A D | cmd_line.rst | 20 The rte_cmdline library should not be used in production code since 22 …See also the "rte_cmdline library should not be used in production code due to limited testing" it… 53 .. code-block:: console 63 The following sections provide some explanation of the code.
|
| H A D | l2_forward_event.rst | 53 .. code-block:: console 87 .. code-block:: console 94 .. code-block:: console 100 .. code-block:: console 117 .. code-block:: console 124 The following sections provide some explanation of the code. 170 but it is possible to extend this code to allocate one mbuf pool per socket. 182 The main part of the code in the main() function relates to the initialization 183 of the driver. To fully understand this code, it is recommended to study the 347 the RX queues. This is done using the following code: [all …]
|
| H A D | fips_validation.rst | 77 .. code-block:: console 92 .. code-block:: console 123 .. code-block:: console 132 .. code-block:: console
|
| H A D | vhost.rst | 39 .. code-block:: console 53 .. code-block:: console 78 .. code-block:: console 85 .. code-block:: console 189 .. code-block:: console
|
| H A D | vmdq_forwarding.rst | 31 .. code-block:: console 57 .. code-block:: console 67 The following sections provide some explanation of the code. 125 .. code-block:: console
|
| H A D | bbdev_app.rst | 46 .. code-block:: console 67 .. code-block:: console 99 .. code-block:: console
|
| /dpdk/doc/guides/tools/ |
| H A D | pdump.rst | 19 framework initialization code. Refer ``app/test-pmd/testpmd.c`` 20 code to see how this is done. 35 .. code-block:: console 118 .. code-block:: console
|
| H A D | cryptoperf.rst | 52 .. code-block:: console 483 .. code-block:: console 500 .. code-block:: c 538 .. code-block:: console 545 .. code-block:: console 560 .. code-block:: console 571 .. code-block:: console 577 .. code-block:: console 586 .. code-block:: console 594 .. code-block:: console
|
| /dpdk/doc/guides/cryptodevs/ |
| H A D | chacha20_poly1305.rst | 32 .. code-block:: console 45 .. code-block:: console 97 .. code-block:: console
|
| H A D | zuc.rst | 44 .. code-block:: console 57 .. code-block:: console 110 .. code-block:: console
|
| H A D | snow3g.rst | 44 .. code-block:: console 57 .. code-block:: console 110 .. code-block:: console
|
| H A D | aesni_gcm.rst | 46 .. code-block:: console 59 .. code-block:: console 117 .. code-block:: console
|
| H A D | openssl.rst | 7 This code provides the initial implementation of the openssl poll mode 80 .. code-block:: console
|
| /dpdk/config/x86/ |
| H A D | meson.build | 17 code = '''#include <immintrin.h> variable 20 result = cc.compiles(code, args : '-mavx512f', name : 'AVX512 checking')
|
| /dpdk/doc/guides/prog_guide/ |
| H A D | writing_efficient_code.rst | 7 This chapter provides some tips for developing efficient code using the DPDK. 10 which is a valuable reference to writing efficient code. 89 .. code-block:: c 107 The code algorithm that dequeues messages may be something similar to the following: 109 .. code-block:: c 126 allowing the factorization of some code for each call in the send or receive function. 131 In the PMD code, actions have been taken to avoid partial writes as much as possible. 251 allow the developer to indicate if a code branch is likely to be taken or not. 254 .. code-block:: c
|
| H A D | source_org.rst | 15 By convention a library refers to any code that provides an API to an application. 30 sub-directory. The ``base`` directory generally contains code the shouldn't
|
| H A D | profile_app.rst | 43 .. code-block:: console 90 .. code-block:: console 104 .. code-block:: console
|
| H A D | event_ethernet_rx_adapter.rst | 17 The Event Ethernet Rx Adapter library is intended for the application code to 43 .. code-block:: c 88 .. code-block:: c 114 .. code-block:: c 131 .. code-block:: c 243 .. code-block:: c 276 .. code-block:: console
|
| H A D | trace_lib.rst | 14 code generate events that are saved on a giant tape: a trace file. 60 .. code-block:: c 80 .. code-block:: c 97 .. code-block:: c 105 The above code snippet registers the ``app_trace_string`` tracepoint to 133 In order to avoid performance impact in fast path code, the library introduced 134 ``RTE_TRACE_POINT_FP``. When adding the tracepoint in fast path code,
|
| /dpdk/doc/guides/rawdevs/ |
| H A D | ioat.rst | 159 example, the following code snippet can be used to identify an IOAT 162 .. code-block:: C 192 The following code shows how the device is configured in 195 .. code-block:: C 237 The following code from ``test_ioat_rawdev.c`` demonstrates how to enqueue 240 .. code-block:: C 275 The following code from ``test_ioat_rawdev.c`` shows the test code 279 .. code-block:: C
|
| /dpdk/drivers/common/sfc_efx/base/ |
| H A D | efx_ev.c | 1008 uint32_t code; in siena_ev_driver() local 1012 code = EFX_QWORD_FIELD(*eqp, FSF_AZ_DRIVER_EV_SUBDATA); in siena_ev_driver() 1015 should_abort = eecp->eec_sram(arg, code); in siena_ev_driver() 1108 unsigned int code; in siena_ev_mcdi() local 1124 code = EFX_QWORD_FIELD(*eqp, MCDI_EVENT_CODE); in siena_ev_mcdi() 1125 switch (code) { in siena_ev_mcdi() 1195 EFSYS_PROBE1(mc_pcol_error, int, code); in siena_ev_mcdi() 1550 uint32_t code; in siena_ef10_ev_qpoll() local 1565 code = EFX_QWORD_FIELD(ev[index], FSF_AZ_EV_CODE); in siena_ef10_ev_qpoll() 1566 switch (code) { in siena_ef10_ev_qpoll() [all …]
|
| /dpdk/doc/guides/nics/ |
| H A D | ipn3ke.rst | 78 .. code-block:: console 89 .. code-block:: console 99 Ipn3ke code released in 19.05 is for evaluation only.
|
| /dpdk/doc/guides/eventdevs/ |
| H A D | dpaa.rst | 49 probed and then vdev device can be created from the application code by 58 .. code-block:: console
|
| /dpdk/doc/guides/linux_gsg/ |
| H A D | nic_perf_intel_platform.rst | 133 .. code-block:: console 152 .. code-block:: console 162 .. code-block:: console 176 .. code-block:: console
|