Home
last modified time | relevance | path

Searched refs:compare (Results 1 – 19 of 19) sorted by relevance

/dpdk/app/test/
H A Dtest_common.c219 uint32_t i, base, compare; in test_log2() local
223 compare = rte_log2_u32(0); in test_log2()
224 if (compare != 0) { in test_log2()
229 compare = rte_log2_u64(0); in test_log2()
230 if (compare != 0) { in test_log2()
242 if (base != compare) { in test_log2()
244 i64, compare, base); in test_log2()
250 if (base != compare) { in test_log2()
252 i, compare, base); in test_log2()
256 if (base != compare) { in test_log2()
[all …]
/dpdk/drivers/common/cnxk/
H A Droc_io.h70 roc_atomic64_cas(uint64_t compare, uint64_t swap, int64_t *ptr) in roc_atomic64_cas() argument
74 : [compare] "+r"(compare) in roc_atomic64_cas()
78 return compare; in roc_atomic64_cas()
82 roc_atomic64_casl(uint64_t compare, uint64_t swap, int64_t *ptr) in roc_atomic64_casl() argument
86 : [compare] "+r"(compare) in roc_atomic64_casl()
90 return compare; in roc_atomic64_casl()
H A Droc_io_generic.h36 roc_atomic64_cas(uint64_t compare, uint64_t swap, int64_t *ptr) in roc_atomic64_cas() argument
41 return compare; in roc_atomic64_cas()
45 roc_atomic64_casl(uint64_t compare, uint64_t swap, int64_t *ptr) in roc_atomic64_casl() argument
50 return compare; in roc_atomic64_casl()
/dpdk/doc/guides/prog_guide/
H A Dstack_lib.rst74 compare-and-swap instruction to atomically update both the stack top pointer
81 3. Thread A changes the head pointer with a compare-and-swap and succeeds.
86 compare-and-swap, the algorithm can detect when the list changes even if the
H A Dtimer_lib.rst60 a check on the value cannot be done on 32-bit platforms without using either a compare-and-swap (CA…
H A Dmempool_lib.rst78 since each access requires a compare-and-set (CAS) operation.
H A Dhash_lib.rst73 a custom compare function, which is assigned to a function pointer (therefore, it is not supported …
150 If signature was stored there, we compare its key against the one provided and return the position
H A Dwriting_efficient_code.rst216 in the compare-and-swap operation can be replaced with ACQUIRE memory order.
H A Denv_abstraction_layer.rst782 an instruction (16-byte compare-and-swap) that is not yet available on other
H A Dpacket_framework.rst280 The matching criterion used to compare the input key against the keys in the associative array is *…
H A Dqos_framework.rst857 … | | | byte. This way, it is still meaningful to compare the |
/dpdk/drivers/net/i40e/base/
H A Dmeson.build14 error_cflags = ['-Wno-sign-compare', '-Wno-unused-value',
/dpdk/drivers/net/qede/base/
H A Dmeson.build24 '-Wno-sign-compare',
/dpdk/drivers/common/sfc_efx/base/
H A Dmeson.build69 '-Wno-sign-compare',
/dpdk/doc/guides/sample_app_ug/
H A Dfips_validation.rst39 The ``.rsp`` files from the site can be used to validate and compare with
H A Ddma.rst22 This application can be used to compare performance of using software packet
/dpdk/doc/guides/rel_notes/
H A Drelease_16_04.rst395 instead of storing a function pointer to the key compare function.
396 Multi-process mode only works with the built-in compare functions,
397 however a custom compare function (not in the jump table) can only
/dpdk/config/
H A Dmeson.build264 '-Wsign-compare',
/dpdk/doc/guides/contributing/
H A Dcoding_style.rst667 if (p == NULL) /* Good, compare pointer to NULL */