Home
last modified time | relevance | path

Searched refs:output (Results 1 – 25 of 148) sorted by relevance

123456

/dpdk/usertools/
H A Dcpu_layout.py46 output = " ".ljust(max_core_id_len + len('Core ')) variable
48 output += " Socket %s" % str(s).ljust(max_core_map_len - len('Socket '))
49 print(output)
51 output = " ".ljust(max_core_id_len + len('Core ')) variable
53 output += " --------".ljust(max_core_map_len)
54 output += " "
55 print(output)
58 output = "Core %s" % str(c).ljust(max_core_id_len) variable
61 output += " " + str(core_map[(s, c)]).ljust(max_core_map_len)
63 output += " " * (max_core_map_len + 1)
[all …]
/dpdk/doc/guides/prog_guide/
H A Dgeneric_segmentation_offload_lib.rst88 considerably), the second part of each output segment is an indirect mbuf,
94 in :numref:`figure_gso-output-segment-format`.
96 .. _figure_gso-output-segment-format:
98 .. figure:: img/gso-output-segment-format.*
101 Two-part GSO output segment
113 numerous output segments; for optimal performance, the number of output
115 amount of data contained within each output segment; i.e. each output segment
125 all of the data 'contained' in the output segment reaches ``segsz``. This
130 output segment. In this example, the output segment needs to include data from
141 Three-part GSO output segment
[all …]
H A Dbbdev.rst417 "Turbo Encode", "input", "output"
419 " ", " ", "soft output (optional)"
420 "LDPC Encode", "input", "output"
423 " ", "", "soft output (optional)"
537 "output","rate matched CB or TB output buffer"
578 with enough room for the output data.
638 "hard output","hard decisions buffer, decoded output, size K for each CB"
639 "soft output","soft LLR output buffer (optional)"
782 |output |rate matched CB or TB output buffer |
822 The mbuf output ``output`` is mandatory and is the encoded CB(s). In
[all …]
H A Dpcapng_lib.rst26 The output stream is created with ``rte_pcapng_fdopen``,
37 and ``rte_pcapng_write_packets`` writes a burst of packets to the output file.
40 to write statistics information into the output file.
H A Dtraffic_metering_and_policing.rst21 * Policer actions (per meter output color): recolor, drop
22 * Statistics (per policer output color)
52 * Traffic metering: The packet is assigned a color (the meter output color)
67 the number of packets and bytes dropped or passed for each output color.
/dpdk/lib/distributor/
H A Drte_distributor_match_sse.c22 __m128i output; in find_match_vec() local
37 output = _mm_set1_epi16(0); in find_match_vec()
75 output = _mm_or_si128(mask1, output); in find_match_vec()
83 _mm_store_si128((__m128i *)output_ptr, output); in find_match_vec()
/dpdk/doc/guides/sample_app_ug/
H A Dtest_pipeline.rst83 …| | | of software queues to its output set of software queues. | …
98 … | "Sendto output port", with the output port i…
99 … | uniformly distributed for the range of output ports. |
121 … | "Send to output port", with the output port i…
122 … | uniformly distributed for the range of output ports. |
144 … | "Send to output port", with the output port i…
145 … | uniformly distributed for the range of output ports. |
164 … | [0.0.0.0/9 => send to output port 0] …
166 … | [0.128.0.0/9 => send to output port 1] …
171 … | [0.0.0.0/10 => send to output port 0] …
[all …]
H A Dvmdq_forwarding.rst20 All traffic is read from a single incoming port and output on another port, without any processing …
120 which simply prints to standard output the packet counts in grid form.
121 Each row of the output is a single pool with the columns being the queue number within that pool.
123 To generate the statistics output, use the following command:
129 Please note that the statistics output will appear on the terminal where the vmdq_app is running,
/dpdk/drivers/net/failsafe/
H A Dfailsafe_args.c91 char output[DEVARGS_MAXLEN + 1]; in fs_execute_cmd() local
119 if (fgets(output, sizeof(output) - 1, fp) == NULL) { in fs_execute_cmd()
124 fs_sanitize_cmdline(output); in fs_execute_cmd()
125 if (output[0] == '\0') { in fs_execute_cmd()
129 ret = fs_parse_device(sdev, output); in fs_execute_cmd()
131 ERROR("Parsing device '%s' failed", output); in fs_execute_cmd()
144 char output[DEVARGS_MAXLEN + 1]; in fs_read_fd() local
178 while (fgets(output, sizeof(output), fp)) in fs_read_fd()
185 fs_sanitize_cmdline(output); in fs_read_fd()
186 if (output[0] == '\0') in fs_read_fd()
[all …]
/dpdk/examples/fips_validation/
H A Dfips_dev_self_test.c60 } output; member
406 .output = {
454 .output = {
497 .output = {
542 .output = {
584 .output = {
626 .output = {
680 .output = {
739 .output = {
796 .output = {
[all …]
/dpdk/doc/guides/linux_gsg/
H A Deal_args.include.rst70 --vdev 'net_pcap0,rx_pcap=input.pcap,tx_pcap=output.pcap'
157 Specify trace directory for trace output. For example:
159 Configuring ``/tmp/`` as a trace output directory::
163 By default, trace output will created at ``home`` directory and parameter
168 Specify maximum size of allocated memory for trace output for each thread.
172 Configuring ``2MB`` as a maximum size for trace output file::
176 By default, size of trace output file is ``1MB`` and parameter
181 Specify the mode of update of trace output file. Either update on a file
185 To ``discard`` update on trace output file::
/dpdk/drivers/baseband/fpga_lte_fec/
H A Dfpga_lte_fec.c1360 if (turbo_enc->output.data == NULL) { in validate_enc_op()
1501 struct rte_mbuf *output; in enqueue_enc_one_op_cb() local
1515 output = op->turbo_enc.output.data; in enqueue_enc_one_op_cb()
1517 out_offset = op->turbo_enc.output.offset; in enqueue_enc_one_op_cb()
1533 mbuf_append(output, output, out_length); in enqueue_enc_one_op_cb()
1581 output_head = output = op->turbo_enc.output.data; in enqueue_enc_one_op_tb()
1634 output = output->next; in enqueue_enc_one_op_tb()
1785 struct rte_mbuf *output; in enqueue_dec_one_op_cb() local
1799 output = op->turbo_dec.hard_output.data; in enqueue_dec_one_op_cb()
1809 mbuf_append(output, output, out_length); in enqueue_dec_one_op_cb()
[all …]
/dpdk/buildtools/
H A Dpmdinfogen.py252 def write_header(output): argument
253 output.write(
265 output = open_output(args.output)
266 write_header(output)
270 dump_drivers(drivers, output)
H A Dgen-pmdinfo-cfile.py10 _, tmp_root, ar, archive, output, *pmdinfogen = sys.argv
21 subprocess.run(pmdinfogen + paths + [output], check=True)
/dpdk/examples/pipeline/examples/
H A Dlearner.spec15 ; output port as argument, with the output port of each connection generated by a counter that is
81 // Limit the output port values to 0 .. 3.
89 // Send the current packet to the same output port.
/dpdk/doc/api/
H A Dmeson.build26 output: 'examples.dox',
46 output: 'doxy-api.conf',
53 output: 'html',
/dpdk/lib/eal/windows/
H A Drte_thread.c135 void *output; in rte_thread_value_get() local
142 output = TlsGetValue(key->thread_index); in rte_thread_value_get()
148 return output; in rte_thread_value_get()
/dpdk/kernel/linux/kni/
H A Dmeson.build16 output: 'Makefile',
27 output: 'rte_kni.ko',
/dpdk/doc/guides/nics/
H A Dbnx2x.rst114 Example output:
132 Example output:
149 Example output:
168 Example output:
179 Example output:
198 Example output:
/dpdk/drivers/
H A Dmeson.build101 # too, so that it can be reflected in the pkgconfig output for
173 output: out_filename,
192 output: '@0@_exports.def'.format(lib_name))
197 output: '@0@_mingw.map'.format(lib_name))
212 # on unix systems check the output of the
219 output: lib_name + '.sym_chk')
/dpdk/doc/guides/cryptodevs/
H A Doverview.rst18 being the operation in-place (input address = output address).
22 which means PMD supports different scatter-gather styled input and output buffers
38 with linear input and output buffers.
/dpdk/.github/workflows/
H A Dbuild.yml84 echo -n '::set-output name=ccache::'
86 echo -n '::set-output name=libabigail::'
88 echo -n '::set-output name=abi::'
174 echo -n '::set-output name=image::'
236 echo -n '::set-output name=ccache::'
238 echo -n '::set-output name=image::'
240 echo -n '::set-output name=logs::'
/dpdk/doc/guides/howto/
H A Drte_flow.rst85 Terminal 1: output log::
104 Terminal 1: output log::
185 Terminal 1: output log::
207 Terminal 1: output log::
279 Terminal 1: output log::
301 Terminal 1: output log::
/dpdk/doc/guides/compressdevs/
H A Doverview.rst17 to let input buffers pass-through it, copying the input to the output,
22 which means PMD supports different scatter-gather styled input and output buffers
/dpdk/lib/pci/
H A Drte_pci.c96 char *output, size_t size) in rte_pci_device_name() argument
99 RTE_VERIFY(snprintf(output, size, PCI_PRI_FMT, in rte_pci_device_name()

123456