Home
last modified time | relevance | path

Searched refs:implementation (Results 1 – 25 of 210) sorted by relevance

123456789

/f-stack/freebsd/contrib/libsodium/src/libsodium/randombytes/
H A Drandombytes.c30 static const randombytes_implementation *implementation; variable
47 if (implementation == NULL) { in randombytes_init_if_needed()
56 implementation = impl; in randombytes_set_implementation()
66 return implementation->implementation_name(); in randombytes_implementation_name()
77 return implementation->random(); in randombytes_random()
90 if (implementation->stir != NULL) { in randombytes_stir()
91 implementation->stir(); in randombytes_stir()
132 if (implementation->uniform != NULL) { in randombytes_uniform()
155 implementation->buf(buf, size); in randombytes_buf()
195 if (implementation != NULL && implementation->close != NULL) { in randombytes_close()
[all …]
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_stream/salsa20/
H A Dstream_salsa20.c22 static const crypto_stream_salsa20_implementation *implementation = variable
25 static const crypto_stream_salsa20_implementation *implementation = variable
51 return implementation->stream(c, clen, n, k); in crypto_stream_salsa20()
60 return implementation->stream_xor_ic(c, m, mlen, n, ic, k); in crypto_stream_salsa20_xor_ic()
68 return implementation->stream_xor_ic(c, m, mlen, n, 0U, k); in crypto_stream_salsa20_xor()
81 implementation = &crypto_stream_salsa20_xmm6_implementation; in _crypto_stream_salsa20_pick_best_implementation()
83 implementation = &crypto_stream_salsa20_ref_implementation; in _crypto_stream_salsa20_pick_best_implementation()
89 implementation = &crypto_stream_salsa20_xmm6int_avx2_implementation; in _crypto_stream_salsa20_pick_best_implementation()
95 implementation = &crypto_stream_salsa20_xmm6int_sse2_implementation; in _crypto_stream_salsa20_pick_best_implementation()
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_stream/chacha20/
H A Dstream_chacha20.c17 static const crypto_stream_chacha20_implementation *implementation = variable
56 return implementation->stream(c, clen, n, k); in crypto_stream_chacha20()
63 return implementation->stream_ietf(c, clen, n, k); in crypto_stream_chacha20_ietf()
72 return implementation->stream_xor_ic(c, m, mlen, n, ic, k); in crypto_stream_chacha20_xor_ic()
81 return implementation->stream_ietf_xor_ic(c, m, mlen, n, ic, k); in crypto_stream_chacha20_ietf_xor_ic()
89 return implementation->stream_xor_ic(c, m, mlen, n, 0U, k); in crypto_stream_chacha20_xor()
97 return implementation->stream_ietf_xor_ic(c, m, mlen, n, 0U, k); in crypto_stream_chacha20_ietf_xor()
115 implementation = &crypto_stream_chacha20_ref_implementation; in _crypto_stream_chacha20_pick_best_implementation()
119 implementation = &crypto_stream_chacha20_dolbeau_avx2_implementation; in _crypto_stream_chacha20_pick_best_implementation()
125 implementation = &crypto_stream_chacha20_dolbeau_ssse3_implementation; in _crypto_stream_chacha20_pick_best_implementation()
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_onetimeauth/poly1305/
H A Donetimeauth_poly1305.c14 static const crypto_onetimeauth_poly1305_implementation *implementation = variable
21 return implementation->onetimeauth(out, in, inlen, k); in crypto_onetimeauth_poly1305()
30 return implementation->onetimeauth_verify(h, in, inlen, k); in crypto_onetimeauth_poly1305_verify()
37 return implementation->onetimeauth_init(state, key); in crypto_onetimeauth_poly1305_init()
45 return implementation->onetimeauth_update(state, in, inlen); in crypto_onetimeauth_poly1305_update()
52 return implementation->onetimeauth_final(state, out); in crypto_onetimeauth_poly1305_final()
83 implementation = &crypto_onetimeauth_poly1305_donna_implementation; in _crypto_onetimeauth_poly1305_pick_best_implementation()
86 implementation = &crypto_onetimeauth_poly1305_sse2_implementation; in _crypto_onetimeauth_poly1305_pick_best_implementation()
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_scalarmult/curve25519/
H A Dscalarmult_curve25519.c11 static const crypto_scalarmult_curve25519_implementation *implementation = variable
21 if (implementation->mult(q, n, p) != 0) { in crypto_scalarmult_curve25519()
33 return implementation->mult_base(q, n); in crypto_scalarmult_curve25519_base()
51 implementation = &crypto_scalarmult_curve25519_ref10_implementation; in _crypto_scalarmult_curve25519_pick_best_implementation()
55 implementation = &crypto_scalarmult_curve25519_sandy2x_implementation; in _crypto_scalarmult_curve25519_pick_best_implementation()
/f-stack/app/redis-5.0.5/utils/hashtable/
H A DREADME1 Hash table implementation related utilities.
7 test getRandomKeys() implementation, that may actually disappear from
/f-stack/app/redis-5.0.5/deps/jemalloc/include/jemalloc/internal/
H A Dbit_util.h39 #error No implementation for size_t ffs() in ffs_zu()
50 #error No implementation for 64-bit ffs() in ffs_u64()
59 #error No implementation for 32-bit ffs() in ffs_u32()
/f-stack/freebsd/contrib/octeon-sdk/cvmx-malloc/
H A DREADME-malloc4 implementation of glibc. Source code and more information
11 In this implementation, memory regions must be explicitly
/f-stack/freebsd/contrib/zstd/doc/educational_decoder/
H A DREADME.md4 `zstd_decompress.c` is a self-contained implementation in C99 of a decoder,
30 a Zstandard decoder implementation.
31 Note that to use the tool to verify this decoder implementation,
/f-stack/freebsd/contrib/libsodium/
H A DChangeLog69 application-defined implementation. This can be useful to disable
100 - An AVX2 optimized implementation of the Argon2 round function was
163 - The Sandy2x Curve25519 implementation was not as fast as expected
216 - Sandy2x, the fastest Curve25519 implementation ever, has been
219 - An SSE2 optimized implementation of Poly1305 was added, and is
221 - An SSSE3 optimized implementation of ChaCha20 was added, and is
241 `sodium_runtime_get_cpu_features()`, the implementation-specific
409 implementation from Supercop.
447 non-canonical points like the ref implementation
454 - poly1305-ref has been replaced by a faster implementation,
[all …]
/f-stack/freebsd/contrib/device-tree/Bindings/nios2/
H A Dnios2.txt35 - altr,implementation: Nios II core implementation, this should be "fast";
50 altr,implementation = "fast";
/f-stack/dpdk/doc/guides/prog_guide/
H A Dtraffic_management.rst14 is agnostic of the underlying HW, SW or mixed HW-SW implementation.
33 parameter values) that the TM implementation (HW/SW) is able to support for the
37 whether a specific implementation does meet the needs to the user application.
43 supported by the implementation.
70 assimilated to WFQ, although an associated implementation-dependent accuracy,
78 limiters) for the hierarchy nodes, subject to the specific implementation
107 hierarchy, subject to the specific implementation supporting them.
191 there is typically no real action performed by the underlying implementation.
203 * Assuming successful validation, it performs all the necessary implementation
222 to the specific implementation supporting them. The set of dynamic updates
[all …]
H A Devent_timer_adapter.rst21 to determine which implementation should be used. The default software
22 implementation manages timers using the DPDK
81 Memory to store user specific metadata. The event timer adapter implementation
143 The event timer adapter implementation may have constraints on tick resolution
145 system. In this case, the implementation may adjust the tick resolution or
171 indicates that the adapter should use a software implementation.
179 component into the running state in the software implementation.
239 ``rte_event_timer_arm_tmo_tick_burst()``, which allows the implementation to
H A Dpacket_classif_access_ctrl.rst30 The current implementation allows the user for each AC context to specify its own rule (set of fiel…
318 With current implementation it is a set of multi-bit tries (with stride == 8).
370 * **RTE_ACL_CLASSIFY_SCALAR**: generic implementation, doesn't require any specific HW support.
373 * **RTE_ACL_CLASSIFY_SSE**: vector implementation, can process up to 8 flows in parallel. Require…
376 * **RTE_ACL_CLASSIFY_AVX2**: vector implementation, can process up to 16 flows in parallel. Requi…
379 * **RTE_ACL_CLASSIFY_NEON**: vector implementation, can process up to 8 flows
382 * **RTE_ACL_CLASSIFY_ALTIVEC**: vector implementation, can process up to 8
385 * **RTE_ACL_CLASSIFY_AVX512X16**: vector implementation, can process up to 16
389 * **RTE_ACL_CLASSIFY_AVX512X32**: vector implementation, can process up to 32
395 … is user responsibility to make sure that given platform supports selected classify implementation.
/f-stack/freebsd/contrib/zstd/doc/
H A DREADME.md18 __`educational_decoder`__ : This directory contains an implementation of a Zstandard decoder,
21 or as the basis for a separate implementation of Zstandard decoder.
/f-stack/freebsd/contrib/device-tree/Bindings/interrupt-controller/
H A Dsifive,plic-1.0.0.txt4 SiFive SOCs include an implementation of the Platform-Level Interrupt Controller
26 "sifive,plic-1.0.0" device is a concrete implementation of the PLIC that
32 detailed implementation in case that specific bugs need to be worked around.
/f-stack/dpdk/lib/librte_fib/
H A Dmeson.build33 # TRIE AVX512 implementation uses avx512bw intrinsics along with
46 # TRIE AVX512 implementation uses avx512bw intrinsics along with
/f-stack/app/redis-5.0.5/deps/jemalloc/
H A Djemalloc.pc.in8 Description: A general purpose malloc(3) implementation that emphasizes fragmentation avoidance and…
/f-stack/freebsd/contrib/openzfs/config/
H A Dkernel-usleep_range.m44 dnl # usleep_range is a finer precision implementation of msleep
/f-stack/dpdk/doc/guides/eventdevs/
H A Dopdl.rst8 implementation of the eventdev API. It is particularly suited to packet\
85 The opdl implementation has a number of limitations. These limitations are
87 that the implementation can achieve such high throughput and low latency
/f-stack/freebsd/contrib/device-tree/Bindings/timer/
H A Drenesas,tpu.txt5 This implementation support only cascade mode.
/f-stack/freebsd/contrib/device-tree/Bindings/rng/
H A Domap3_rom_rng.txt4 implementation can depend on the SoC secure ROM used.
/f-stack/freebsd/contrib/device-tree/Bindings/phy/
H A Dst-spear-miphy.txt15 present on a implementation.
/f-stack/freebsd/contrib/device-tree/Bindings/mmc/
H A Dmmc-card.txt14 implementation, and that hpi should not be used
/f-stack/dpdk/doc/guides/nics/
H A Daf_packet.rst11 In order to improve Rx and Tx performance this implementation makes use of
33 Because this implementation is based on PACKET_MMAP, and PACKET_MMAP has its

123456789