Home
last modified time | relevance | path

Searched refs:calls (Results 1 – 25 of 141) sorted by relevance

123456

/f-stack/dpdk/lib/librte_graph/
H A Dgraph_stats.c64 const uint64_t calls = stat->calls; in print_node() local
68 call_delta = calls - prev_calls; in print_node()
81 stat->name, calls, objs, stat->realloc_count, objs_per_call, in print_node()
331 uint64_t calls = 0, cycles = 0, objs = 0, realloc_count = 0; in cluster_node_arregate_stats() local
339 calls += node->total_calls; in cluster_node_arregate_stats()
345 stat->calls = calls; in cluster_node_arregate_stats()
358 stat->prev_calls = stat->calls; in cluster_node_store_prev_stats()
396 node->calls = 0; in rte_graph_cluster_stats_reset()
/f-stack/dpdk/lib/librte_eal/common/
H A Drte_service.c59 uint64_t calls; member
374 s->calls++; in service_runner_do_callback()
806 *attr_value = s->calls; in rte_service_attr_get()
842 s->calls = 0; in rte_service_attr_reset_all()
867 int calls = 1; in service_dump_one() local
869 if (s->calls != 0) in service_dump_one()
870 calls = s->calls; in service_dump_one()
873 s->spec.name, service_stats_enabled(s), s->calls, in service_dump_one()
874 s->cycles_spent, s->cycles_spent / calls); in service_dump_one()
/f-stack/app/redis-5.0.5/deps/lua/test/
H A DREADME23 trace-calls.lua trace calls
/f-stack/tools/libxo/
H A DREADME.md7 and HTML output using a common set of function calls. The application
9 application calls a function "xo_emit" to product output that is
/f-stack/dpdk/doc/guides/sample_app_ug/
H A Dl2_forward_cat.rst26 specific and COS bitmasks need to be contiguous. Sample code calls this bitmask
169 The ``main()`` function performs the initialization and calls the execution
199 calls. When all capability and topology information is collected, the requested
203 relevant CPUs via ``pqos_l3ca_assoc_set(...)`` calls.
207 COS 0 to all involved CPUs via ``pqos_l3ca_assoc_set(...)`` calls.
H A Dflow_classify.rst146 The ``main()`` function performs the initialization and calls the execution
355 The ``add_rules`` function reads the ``ipv4_rules_file.txt`` file and calls the
356 ``add_classify_rule`` function which calls the
409 As we saw above the ``main()`` function calls an application function on the
411 The ``lcore_main`` function calls the ``rte_flow_classifier_query`` API.
/f-stack/dpdk/drivers/event/sw/
H A Dsw_evdev_xstats.c15 calls, enumerator
57 case calls: return sw->sched_called; in get_dev_stat()
76 case calls: return p->total_polls; in get_port_stat()
182 calls, no_iq_enq, no_cq_enq, in sw_xstats_init() enumerator
195 calls, poll_return, in sw_xstats_init() enumerator
/f-stack/freebsd/contrib/device-tree/Bindings/interrupt-controller/
H A Driscv,cpu-intc.txt14 controlled via Supervisor Binary Interface (SBI) calls and CSR reads. External
34 SBI calls and implements a one-shot timer.
/f-stack/freebsd/contrib/device-tree/Bindings/rng/
H A Domap3_rom_rng.txt3 Secure SoCs may provide RNG via secure ROM calls like Nokia N900 does. The
/f-stack/freebsd/contrib/octeon-sdk/cvmx-malloc/
H A DREADME-malloc10 uses the brk or memmap sytem calls to request more memory.
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/channel_program/lua_core/
H A Dtst.stack_gsub.err18 (...tail calls...)
/f-stack/freebsd/contrib/device-tree/Bindings/rtc/
H A Dfaraday,ftrtc010.txt13 PCLK and EXTCLK clocks. Faraday calls the later CLK1HZ and
/f-stack/tools/libxo/doc/
H A Dintro.rst6 and HTML output using a common set of function calls. The application
8 application calls a function "xo_emit" to product output that is
H A Dhowto.rst88 - Converting printf calls
128 The second task is inspecting code for :manpage:`printf(3)` calls and
129 replacing them with xo_emit() calls. The format strings are similar
131 following two calls produce identical text output::
208 where to put these calls.
364 libxo calls :manpage:`gettext(3)` with that string to get a localized
/f-stack/dpdk/doc/guides/prog_guide/
H A Dpacket_distrib_lib.rst57 which should only be called on the lcore which also calls the process API.
80 The flush and clear_returns API calls, mentioned previously,
88 Each worker calls "rte_distributor_get_pkt()" API to request a new packet when it has finished proc…
H A Dpdump_lib.rst58 For the calls to these APIs from secondary process, the library creates the "pdump enable" request …
65 For the calls to these APIs from secondary process, the library creates the "pdump disable" request…
H A Dflow_classify_lib.rst356 It then calls the ``table.ops.f_add`` API to add the rule to the ACL
362 The ``rte_flow_classify_table_entry_delete`` API calls the
370 This API calls the flow_classify_run internal function which calls the
/f-stack/dpdk/doc/guides/rawdevs/
H A Docteontx2_dma.rst99 index for further rawdev function calls.
102 application one can directly calls
/f-stack/freebsd/mips/conf/
H A Dstd.BERI51 options INVARIANTS #Enable calls of extra sanity checking
/f-stack/dpdk/doc/guides/compressdevs/
H A Disal.rst102 The above table only shows mapping when API calls for dynamic compression.
142 The following parameter (optional) can be provided in the previous two calls:
H A Dzlib.rst62 The following parameter (optional) can be provided in the previous two calls:
/f-stack/freebsd/contrib/zstd/examples/
H A DREADME.md17 minimizes malloc()/free() calls by re-using existing resources.
/f-stack/freebsd/contrib/ngatm/netnatm/sig/
H A Dsig_uni.c162 while ((c = TAILQ_FIRST(&uni->calls)) != NULL) { in uni_stop()
163 TAILQ_REMOVE(&uni->calls, c, link); in uni_stop()
192 TAILQ_INIT(&uni->calls); in uni_create()
664 idle = TAILQ_EMPTY(&uni->calls) && in uni_set_config()
/f-stack/app/redis-5.0.5/tests/unit/moduleapi/
H A Dcommandfilter.tcl40 test {Command Filter applies on Lua redis.call() that calls a module} {
/f-stack/app/nginx-1.16.1/auto/cc/
H A Dowc18 # disable stack checking calls

123456