Home
last modified time | relevance | path

Searched full:algorithm (Results 1 – 25 of 3097) sorted by relevance

12345678910>>...124

/OK3568_Linux_fs/yocto/meta-openembedded/meta-webserver/recipes-webadmin/netdata/netdata/
H A Dnetdata.conf319 # dim jitter algorithm = absolute
338 # dim 0 algorithm = incremental
342 # dim 1 algorithm = incremental
346 # dim 6 algorithm = incremental
350 # dim 8 algorithm = incremental
354 # dim 9 algorithm = incremental
358 # dim 12 algorithm = incremental
362 # dim 14 algorithm = incremental
366 # dim 15 algorithm = incremental
370 # dim NMI algorithm = incremental
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/algorithm/string/
H A Derase.hpp14 #include <boost/algorithm/string/config.hpp>
22 #include <boost/algorithm/string/find_format.hpp>
23 #include <boost/algorithm/string/finder.hpp>
24 #include <boost/algorithm/string/formatter.hpp>
27 Defines various erase algorithms. Each algorithm removes
32 namespace algorithm { namespace
36 //! Erase range algorithm
57 return ::boost::algorithm::find_format_copy( in erase_range_copy()
60 ::boost::algorithm::range_finder(SearchRange), in erase_range_copy()
61 ::boost::algorithm::empty_formatter(Input) ); in erase_range_copy()
[all …]
H A Dreplace.hpp14 #include <boost/algorithm/string/config.hpp>
22 #include <boost/algorithm/string/find_format.hpp>
23 #include <boost/algorithm/string/finder.hpp>
24 #include <boost/algorithm/string/formatter.hpp>
25 #include <boost/algorithm/string/compare.hpp>
28 Defines various replace algorithms. Each algorithm replaces
33 namespace algorithm { namespace
37 //! Replace range algorithm
64 return ::boost::algorithm::find_format_copy( in replace_range_copy()
67 ::boost::algorithm::range_finder(SearchRange), in replace_range_copy()
[all …]
H A Dfind.hpp14 #include <boost/algorithm/string/config.hpp>
22 #include <boost/algorithm/string/finder.hpp>
23 #include <boost/algorithm/string/compare.hpp>
24 #include <boost/algorithm/string/constants.hpp>
33 namespace algorithm { namespace
37 //! Generic find algorithm
63 //! Find first algorithm
84 return ::boost::algorithm::find(Input, ::boost::algorithm::first_finder(Search)); in find_first()
87 //! Find first algorithm ( case insensitive )
111 … return ::boost::algorithm::find(Input, ::boost::algorithm::first_finder(Search,is_iequal(Loc))); in ifind_first()
[all …]
H A Dtrim.hpp14 #include <boost/algorithm/string/config.hpp>
22 #include <boost/algorithm/string/detail/trim.hpp>
23 #include <boost/algorithm/string/classification.hpp>
39 namespace algorithm { namespace
69 ::boost::algorithm::detail::trim_begin( in trim_left_copy_if()
87 ::boost::algorithm::detail::trim_begin( in trim_left_copy_if()
109 ::boost::algorithm::trim_left_copy_if( in trim_left_copy()
128 ::boost::algorithm::detail::trim_begin( in trim_left_if()
145 ::boost::algorithm::trim_left_if( in trim_left()
178 ::boost::algorithm::detail::trim_end( in trim_right_copy_if()
[all …]
H A Dcase_conv.hpp14 #include <boost/algorithm/string/config.hpp>
15 #include <algorithm>
24 #include <boost/algorithm/string/detail/case_conv.hpp>
33 namespace algorithm { namespace
60 return ::boost::algorithm::detail::transform_range_copy( in to_lower_copy()
63 ::boost::algorithm::detail::to_lowerF< in to_lower_copy()
76 return ::boost::algorithm::detail::transform_range_copy<SequenceT>( in to_lower_copy()
78 ::boost::algorithm::detail::to_lowerF< in to_lower_copy()
95 ::boost::algorithm::detail::transform_range( in to_lower()
97 ::boost::algorithm::detail::to_lowerF< in to_lower()
[all …]
H A Dsplit.hpp14 #include <boost/algorithm/string/config.hpp>
16 #include <boost/algorithm/string/iter_find.hpp>
17 #include <boost/algorithm/string/finder.hpp>
18 #include <boost/algorithm/string/compare.hpp>
35 namespace algorithm { namespace
39 //! Find all algorithm
41 This algorithm finds all occurrences of the search string
67 return ::boost::algorithm::iter_find( in find_all()
70 ::boost::algorithm::first_finder(Search) ); in find_all()
73 //! Find all algorithm ( case insensitive )
[all …]
H A Dpredicate.hpp14 #include <boost/algorithm/string/config.hpp>
22 #include <boost/algorithm/string/compare.hpp>
23 #include <boost/algorithm/string/find.hpp>
24 #include <boost/algorithm/string/detail/predicate.hpp>
26 /*! \file boost/algorithm/string/predicate.hpp
31 Additionaly the algorithm \c all() checks all elements of a container to satisfy a
38 namespace algorithm { namespace
95 return ::boost::algorithm::starts_with(Input, Test, is_equal()); in starts_with()
117 return ::boost::algorithm::starts_with(Input, Test, is_iequal(Loc)); in istarts_with()
172 return ::boost::algorithm::ends_with(Input, Test, is_equal()); in ends_with()
[all …]
H A Dclassification.hpp14 #include <algorithm>
18 #include <boost/algorithm/string/detail/classification.hpp>
19 #include <boost/algorithm/string/predicate_facade.hpp>
30 namespace algorithm { namespace
292 } // namespace algorithm
295 using algorithm::is_classified;
296 using algorithm::is_space;
297 using algorithm::is_alnum;
298 using algorithm::is_alpha;
299 using algorithm::is_cntrl;
[all …]
H A Dfind_format.hpp22 #include <boost/algorithm/string/concept.hpp>
23 #include <boost/algorithm/string/detail/find_format.hpp>
24 #include <boost/algorithm/string/detail/find_format_all.hpp>
27 Defines generic replace algorithms. Each algorithm replaces
33 namespace algorithm { namespace
37 //! Generic replace algorithm
85 //! Generic replace algorithm
116 //! Generic replace algorithm
155 //! Generic replace all algorithm
205 //! Generic replace all algorithm
[all …]
H A Djoin.hpp14 #include <boost/algorithm/string/config.hpp>
15 #include <boost/algorithm/string/detail/sequence.hpp>
20 Defines join algorithm.
22 Join algorithm is a counterpart to split algorithms.
29 namespace algorithm { namespace
33 //! Join algorithm
35 This algorithm joins all strings in a 'list' into one long string.
81 //! Conditional join algorithm
83 This algorithm joins all strings in a 'list' into one long string.
135 } // namespace algorithm
[all …]
H A Diter_find.hpp14 #include <boost/algorithm/string/config.hpp>
15 #include <algorithm>
26 #include <boost/algorithm/string/concept.hpp>
27 #include <boost/algorithm/string/find_iterator.hpp>
28 #include <boost/algorithm/string/detail/util.hpp>
42 namespace algorithm { namespace
46 //! Iter find algorithm
48 This algorithm executes a given finder in iteration on the input,
116 //! Split find algorithm
118 This algorithm executes a given finder in iteration on the input,
[all …]
/OK3568_Linux_fs/kernel/crypto/
H A DKconfig147 tristate "Cryptographic algorithm manager"
163 tristate "Userspace cryptographic algorithm configuration"
175 algorithm registration.
209 This converts an arbitrary crypto algorithm into a parallel
210 algorithm that executes in kernel threads.
219 converts an arbitrary synchronous software crypto algorithm
220 into an asynchronous algorithm that executes in a kernel thread.
255 tristate "RSA algorithm"
261 Generic implementation of the RSA public key algorithm.
264 tristate "Diffie-Hellman algorithm"
[all …]
/OK3568_Linux_fs/u-boot/include/
H A Dhash.h21 const char *name; /* Name of algorithm */
31 * @output: Checksum result (length depends on algorithm)
77 * hash_command: Process a hash command for a particular algorithm
81 * @algo_name: Hash algorithm being used (lower case!)
92 * hash_block() - Hash a block according to the requested algorithm
94 * The caller probably knows the hash length for the chosen algorithm, but
98 * @algo_name: Hash algorithm to use
106 * since the caller is selecting the algorithm.
107 * @return 0 if ok, -ve on error: -EPROTONOSUPPORT for an unknown algorithm,
116 * hash_lookup_algo() - Look up the hash_algo struct for an algorithm
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/algorithm/
H A Dstring.hpp18 #include <boost/algorithm/string/std_containers_traits.hpp>
19 #include <boost/algorithm/string/trim.hpp>
20 #include <boost/algorithm/string/case_conv.hpp>
21 #include <boost/algorithm/string/predicate.hpp>
22 #include <boost/algorithm/string/find.hpp>
23 #include <boost/algorithm/string/split.hpp>
24 #include <boost/algorithm/string/join.hpp>
25 #include <boost/algorithm/string/replace.hpp>
26 #include <boost/algorithm/string/erase.hpp>
27 #include <boost/algorithm/string/classification.hpp>
[all …]
/OK3568_Linux_fs/kernel/include/linux/
H A Dcrypto.h37 * Algorithm masks and types.
63 * Set if the algorithm (or an algorithm which it uses) requires another
64 * algorithm of the same type to handle corner cases.
69 * Set if the algorithm has passed automated run-time testing. Note that
70 * if there is no run-time testing for a given algorithm it is considered
77 * Set if the algorithm is an instance that is built from templates.
81 /* Set this bit if the algorithm provided is hardware accelerated but
93 * Set if the algorithm has a ->setkey() method but can be used without
104 * The algorithm may allocate memory during request processing, i.e. during
105 * encryption, decryption, or hashing. Users can request an algorithm with this
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/algorithm/string/detail/
H A Dfind_format_all.hpp14 #include <boost/algorithm/string/config.hpp>
18 #include <boost/algorithm/string/detail/find_format_store.hpp>
19 #include <boost/algorithm/string/detail/replace_storage.hpp>
22 namespace algorithm { namespace
88 if( ::boost::algorithm::detail::check_find_result(Input, FindResult) ) { in find_format_all_copy_impl()
89 return ::boost::algorithm::detail::find_format_all_copy_impl2( in find_format_all_copy_impl()
137 … boost::algorithm::detail::insert( Output, ::boost::end(Output), LastMatch, M.begin() ); in find_format_all_copy_impl2()
139 … boost::algorithm::detail::insert( Output, ::boost::end(Output), M.format_result() ); in find_format_all_copy_impl2()
147 …::boost::algorithm::detail::insert( Output, ::boost::end(Output), LastMatch, ::boost::end(Input) ); in find_format_all_copy_impl2()
163 if( ::boost::algorithm::detail::check_find_result(Input, FindResult) ) { in find_format_all_copy_impl()
[all …]
H A Dfind_format.hpp14 #include <boost/algorithm/string/config.hpp>
18 #include <boost/algorithm/string/detail/find_format_store.hpp>
19 #include <boost/algorithm/string/detail/replace_storage.hpp>
22 namespace algorithm { namespace
78 if( ::boost::algorithm::detail::check_find_result(Input, FindResult) ) { in find_format_copy_impl()
79 return ::boost::algorithm::detail::find_format_copy_impl2( in find_format_copy_impl()
121 …boost::algorithm::detail::insert( Output, ::boost::end(Output), ::boost::begin(Input), M.begin() ); in find_format_copy_impl2()
123 boost::algorithm::detail::insert( Output, ::boost::end(Output), M.format_result() ); in find_format_copy_impl2()
125 … boost::algorithm::detail::insert( Output, ::boost::end(Output), M.end(), ::boost::end(Input) ); in find_format_copy_impl2()
139 if( ::boost::algorithm::detail::check_find_result(Input, FindResult) ) { in find_format_copy_impl()
[all …]
/OK3568_Linux_fs/u-boot/drivers/crypto/rockchip/
H A DKconfig6 This enable RSA512/RSA1024/RSA2048 algorithm support for
14 This enable RSA512/RSA1024/RSA2048 algorithm support for
22 This enable DES/AES/SM4 algorithm support for
30 This enable DES/AES/SM4 algorithm support for
38 This enable HMAC algorithm support for
46 This enable HMAC algorithm support for
53 This enable MD5/SHA1/SHA256/RSA512/RSA1024/RSA2048 algorithm support for
60 This enable MD5/SHA1/SHA256/RSA512/RSA1024/RSA2048 algorithm support for
67 This enable MD5/SHA1/SHA256/RSA512/RSA1024/RSA2048 algorithm support for
74 This enable MD5/SHA1/SHA256/RSA512/RSA1024/RSA2048 algorithm support for
/OK3568_Linux_fs/u-boot/common/
H A Dattestation_key.c31 * ATTESTATION_KEY_PREFIX.%algorithm,
33 * where algorithm is either "EC" or "RSA"
39 * ATTESTATION_KEY_PREFIX.%algorithm,
40 * where algorithm is either "EC" or "RSA"
46 * ATTESTATION_CERT_PREFIX.%algorithm.%index,
316 /* read algorithm from buf */ in load_attestation_key()
318 uint32_t algorithm; in load_attestation_key() local
320 copy_uint32_from_buf(&key_buf, &algorithm); in load_attestation_key()
321 debug("\n algorithm:%d\n", algorithm); in load_attestation_key()
355 /* read ec algorithm */ in load_attestation_key()
[all …]
/OK3568_Linux_fs/kernel/Documentation/crypto/
H A Dapi-intro.rst35 [algorithm api] (for registering algorithms)
37 The idea is to make the user interface and algorithm registration API
103 When submitting a new algorithm for inclusion, a mandatory requirement
204 SHA1 algorithm contributors:
207 DES algorithm contributors:
212 Blowfish algorithm contributors:
216 Twofish algorithm contributors:
220 SHA256/384/512 algorithm contributors:
225 AES algorithm contributors:
233 CAST5 algorithm contributors:
[all …]
/OK3568_Linux_fs/kernel/arch/arm/crypto/
H A DKconfig13 tristate "SHA1 digest algorithm (ARM-asm)"
21 tristate "SHA1 digest algorithm (ARM NEON)"
32 tristate "SHA1 digest algorithm (ARM v8 Crypto Extensions)"
41 tristate "SHA-224/256 digest algorithm (ARM v8 Crypto Extensions)"
50 tristate "SHA-224/256 digest algorithm (ARM-asm and NEON)"
58 tristate "SHA-384/512 digest algorithm (ARM-asm and NEON)"
66 tristate "BLAKE2s digest algorithm (ARM)"
69 BLAKE2s digest algorithm optimized with ARM scalar instructions. This
75 tristate "BLAKE2b digest algorithm (ARM NEON)"
79 BLAKE2b digest algorithm optimized with ARM NEON instructions.
[all …]
/OK3568_Linux_fs/u-boot/lib/
H A DKconfig6 Enables software based BCH ECC algorithm present in lib/bch.c
120 bool "Support the AES algorithm"
123 (Advanced Encryption Standard). This algorithm uses a symetric key
125 supported by the algorithm but only a 128-bit key is supported at
162 This option enables support of hashing using SHA1 algorithm.
164 The SHA1 algorithm produces a 160-bit (20-byte) hash value
170 This option enables support of hashing using SHA256 algorithm.
172 The SHA256 algorithm produces a 256-bit (32-byte) hash value
178 This option enables support of hashing using SHA512 algorithm.
180 The SHA512 algorithm produces a 512-bit (64-byte) hash value
[all …]
/OK3568_Linux_fs/kernel/arch/arm64/crypto/
H A DKconfig13 tristate "SHA-224/SHA-256 digest algorithm for arm64"
17 tristate "SHA-384/SHA-512 digest algorithm for arm64"
21 tristate "SHA-1 digest algorithm (ARMv8 Crypto Extensions)"
27 tristate "SHA-224/SHA-256 digest algorithm (ARMv8 Crypto Extensions)"
33 tristate "SHA-384/SHA-512 digest algorithm (ARMv8 Crypto Extensions)"
39 tristate "SHA3 digest algorithm (ARMv8.2 Crypto Extensions)"
45 tristate "SM3 digest algorithm (ARMv8.2 Crypto Extensions)"
65 tristate "CRCT10DIF digest algorithm using PMULL instructions"
118 tristate "AES in ECB/CBC/CTR/XTS modes using bit-sliced NEON algorithm"
/OK3568_Linux_fs/kernel/Documentation/networking/
H A Dnet_dim.rst21 processing. The mechanism includes an algorithm which decides if and how to
24 iteration of the algorithm, it analyses a given sample of the data, compares it
30 the algorithm might decide not to change anything. The configuration fields are
32 number of wanted packets per event. The Net DIM algorithm ascribes importance to
36 Net DIM Algorithm
39 Each iteration of the Net DIM algorithm follows these steps:
54 compared. Here the algorithm tries to optimize for lower interrupt rate so an
62 and the internal state of the algorithm. The states reflect the "direction" of
63 the algorithm: is it going left (reducing moderation), right (increasing
66 algorithm would increase in order to reduce calculation overhead. Also, after
[all …]

12345678910>>...124