| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/ |
| H A D | integer.hpp | 42 // fast integers from least integers 61 template<> struct int_least_helper<1> { typedef boost::long_long_type least; }; typedef 63 template<> struct int_least_helper<1> { typedef __int64 least; }; typedef 65 template<> struct int_least_helper<2> { typedef long least; }; typedef 66 template<> struct int_least_helper<3> { typedef int least; }; typedef 67 template<> struct int_least_helper<4> { typedef short least; }; typedef 68 template<> struct int_least_helper<5> { typedef signed char least; }; typedef 70 template<> struct uint_least_helper<1> { typedef boost::ulong_long_type least; }; typedef 72 template<> struct uint_least_helper<1> { typedef unsigned __int64 least; }; typedef 74 template<> struct uint_least_helper<2> { typedef unsigned long least; }; typedef [all …]
|
| H A D | crc.hpp | 37 // arguments explicitly specified. At least one compiler that needs this 151 typedef typename masking_type::least value_type; 279 typedef typename base_type::least least; typedef 283 static const least high_bit = 1ul << ( Bits - 1u ); 286 BOOST_STATIC_CONSTANT( least, high_bit = (least( 1u ) << ( Bits 336 typedef typename base_type::least least; typedef 343 BOOST_STATIC_CONSTANT( least, high_bit = base_type::high_bit ); 348 static const least sig_bits = (~( ~( 0ul ) << Bits )) ; 350 BOOST_STATIC_CONSTANT( least, sig_bits = (~( ~(least( 0u )) << Bits )) ); 366 typedef base_type::least least; typedef [all …]
|
| /OK3568_Linux_fs/kernel/net/netfilter/ipvs/ |
| H A D | ip_vs_wlc.c | 3 * IPVS: Weighted Least-Connection Scheduling module 26 * Weighted Least Connection scheduling 32 struct ip_vs_dest *dest, *least; in ip_vs_wlc_schedule() local 53 least = dest; in ip_vs_wlc_schedule() 54 loh = ip_vs_dest_conn_overhead(least); in ip_vs_wlc_schedule() 62 * Find the destination with the least load. in ip_vs_wlc_schedule() 70 (__s64)doh * atomic_read(&least->weight)) { in ip_vs_wlc_schedule() 71 least = dest; in ip_vs_wlc_schedule() 78 IP_VS_DBG_ADDR(least->af, &least->addr), in ip_vs_wlc_schedule() 79 ntohs(least->port), in ip_vs_wlc_schedule() [all …]
|
| H A D | ip_vs_lc.c | 3 * IPVS: Least-Connection Scheduling module 21 * Least Connection scheduling 27 struct ip_vs_dest *dest, *least = NULL; in ip_vs_lc_schedule() local 33 * Simply select the server with the least number of in ip_vs_lc_schedule() 46 if (!least || doh < loh) { in ip_vs_lc_schedule() 47 least = dest; in ip_vs_lc_schedule() 52 if (!least) in ip_vs_lc_schedule() 57 IP_VS_DBG_ADDR(least->af, &least->addr), in ip_vs_lc_schedule() 58 ntohs(least->port), in ip_vs_lc_schedule() 59 atomic_read(&least->activeconns), in ip_vs_lc_schedule() [all …]
|
| H A D | ip_vs_nq.c | 50 * Weighted Least Connection scheduling 56 struct ip_vs_dest *dest, *least = NULL; in ip_vs_nq_schedule() local 84 least = dest; in ip_vs_nq_schedule() 89 if (!least || in ip_vs_nq_schedule() 91 (__s64)doh * atomic_read(&least->weight))) { in ip_vs_nq_schedule() 92 least = dest; in ip_vs_nq_schedule() 97 if (!least) { in ip_vs_nq_schedule() 105 IP_VS_DBG_ADDR(least->af, &least->addr), in ip_vs_nq_schedule() 106 ntohs(least->port), in ip_vs_nq_schedule() 107 atomic_read(&least->activeconns), in ip_vs_nq_schedule() [all …]
|
| H A D | ip_vs_sed.c | 54 * Weighted Least Connection scheduling 60 struct ip_vs_dest *dest, *least; in ip_vs_sed_schedule() local 81 least = dest; in ip_vs_sed_schedule() 82 loh = ip_vs_sed_dest_overhead(least); in ip_vs_sed_schedule() 90 * Find the destination with the least load. in ip_vs_sed_schedule() 98 (__s64)doh * atomic_read(&least->weight)) { in ip_vs_sed_schedule() 99 least = dest; in ip_vs_sed_schedule() 106 IP_VS_DBG_ADDR(least->af, &least->addr), in ip_vs_sed_schedule() 107 ntohs(least->port), in ip_vs_sed_schedule() 108 atomic_read(&least->activeconns), in ip_vs_sed_schedule() [all …]
|
| H A D | ip_vs_lblcr.c | 3 * IPVS: Locality-Based Least-Connection with Replication scheduler 16 * n, serverSet[dest_ip] <- {weighted least-conn node}; 18 * n <- {least-conn (alive) node in serverSet[dest_ip]}; 22 * n <- {weighted least-conn node}; 160 /* get weighted least-connection node in the destination set */ 164 struct ip_vs_dest *dest, *least; in ip_vs_dest_set_min() local 169 least = e->dest; in ip_vs_dest_set_min() 170 if (least->flags & IP_VS_DEST_F_OVERLOAD) in ip_vs_dest_set_min() 173 if ((atomic_read(&least->weight) > 0) in ip_vs_dest_set_min() 174 && (least->flags & IP_VS_DEST_F_AVAILABLE)) { in ip_vs_dest_set_min() [all …]
|
| H A D | Kconfig | 12 option must be enabled for at least one of the clustered computers 137 tristate "least-connection scheduling" 139 The least-connection scheduling algorithm directs network 140 connections to the server with the least number of active 147 tristate "weighted least-connection scheduling" 149 The weighted least-connection scheduling algorithm directs network 150 connections to the server with the least active connections 178 tristate "locality-based least-connection scheduling" 180 The locality-based least-connection scheduling algorithm is for 186 least-connection server to this IP address. [all …]
|
| H A D | ip_vs_lblc.c | 3 * IPVS: Locality-Based Least-Connection scheduling module 23 * n, cachenode[dest_ip] <- {weighted least-conn node}; 29 * n, cachenode[dest_ip] <- {weighted least-conn node}; 402 struct ip_vs_dest *dest, *least; in __ip_vs_lblc_schedule() local 421 least = dest; in __ip_vs_lblc_schedule() 422 loh = ip_vs_dest_conn_overhead(least); in __ip_vs_lblc_schedule() 429 * Find the destination with the least load. in __ip_vs_lblc_schedule() 438 (__s64)doh * atomic_read(&least->weight)) { in __ip_vs_lblc_schedule() 439 least = dest; in __ip_vs_lblc_schedule() 446 IP_VS_DBG_ADDR(least->af, &least->addr), in __ip_vs_lblc_schedule() [all …]
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/mbedtls/ |
| H A D | ccm.h | 131 * output buffer is at least \p length + \p tag_len wide. 137 * buffer of at least \p iv_len Bytes. 142 * zero, \p add must be a readable buffer of at least that 147 * than zero, \p input must be a readable buffer of at least 150 * than zero, \p output must be a writable buffer of at least 153 * readable buffer of at least \p tag_len Bytes. 173 * output buffer is at least \p length + \p tag_len wide. 183 * buffer of at least \p iv_len Bytes. 188 * at least \p add_len Bytes. 192 * than zero, \p input must be a readable buffer of at least [all …]
|
| H A D | gcm.h | 105 * least \p keybits bits. 125 * buffer must trail at least 8 Bytes behind the input buffer. 148 * at least \p iv_len Bytes. 151 * least that size in Bytes. 154 * than zero, this must be a readable buffer of at least that 157 * than zero, this must be a writable buffer of at least that 161 * buffer of at least \p tag_len Bytes. 188 * must trail at least 8 Bytes behind the input buffer. 194 * of at least \p iv_len Bytes. 197 * least that size in Bytes. [all …]
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/host_include/mbedtls/ |
| H A D | ccm.h | 131 * output buffer is at least \p length + \p tag_len wide. 137 * buffer of at least \p iv_len Bytes. 142 * zero, \p add must be a readable buffer of at least that 147 * than zero, \p input must be a readable buffer of at least 150 * than zero, \p output must be a writable buffer of at least 153 * readable buffer of at least \p tag_len Bytes. 173 * output buffer is at least \p length + \p tag_len wide. 183 * buffer of at least \p iv_len Bytes. 188 * at least \p add_len Bytes. 192 * than zero, \p input must be a readable buffer of at least [all …]
|
| H A D | gcm.h | 105 * least \p keybits bits. 125 * buffer must trail at least 8 Bytes behind the input buffer. 148 * at least \p iv_len Bytes. 151 * least that size in Bytes. 154 * than zero, this must be a readable buffer of at least that 157 * than zero, this must be a writable buffer of at least that 161 * buffer of at least \p tag_len Bytes. 188 * must trail at least 8 Bytes behind the input buffer. 194 * of at least \p iv_len Bytes. 197 * least that size in Bytes. [all …]
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/mbedtls/ |
| H A D | ccm.h | 131 * output buffer is at least \p length + \p tag_len wide. 137 * buffer of at least \p iv_len Bytes. 142 * zero, \p add must be a readable buffer of at least that 147 * than zero, \p input must be a readable buffer of at least 150 * than zero, \p output must be a writable buffer of at least 153 * readable buffer of at least \p tag_len Bytes. 173 * output buffer is at least \p length + \p tag_len wide. 183 * buffer of at least \p iv_len Bytes. 188 * at least \p add_len Bytes. 192 * than zero, \p input must be a readable buffer of at least [all …]
|
| H A D | gcm.h | 105 * least \p keybits bits. 125 * buffer must trail at least 8 Bytes behind the input buffer. 148 * at least \p iv_len Bytes. 151 * least that size in Bytes. 154 * than zero, this must be a readable buffer of at least that 157 * than zero, this must be a writable buffer of at least that 161 * buffer of at least \p tag_len Bytes. 188 * must trail at least 8 Bytes behind the input buffer. 194 * of at least \p iv_len Bytes. 197 * least that size in Bytes. [all …]
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/host_include/mbedtls/ |
| H A D | ccm.h | 131 * output buffer is at least \p length + \p tag_len wide. 137 * buffer of at least \p iv_len Bytes. 142 * zero, \p add must be a readable buffer of at least that 147 * than zero, \p input must be a readable buffer of at least 150 * than zero, \p output must be a writable buffer of at least 153 * readable buffer of at least \p tag_len Bytes. 173 * output buffer is at least \p length + \p tag_len wide. 183 * buffer of at least \p iv_len Bytes. 188 * at least \p add_len Bytes. 192 * than zero, \p input must be a readable buffer of at least [all …]
|
| H A D | gcm.h | 105 * least \p keybits bits. 125 * buffer must trail at least 8 Bytes behind the input buffer. 148 * at least \p iv_len Bytes. 151 * least that size in Bytes. 154 * than zero, this must be a readable buffer of at least that 157 * than zero, this must be a writable buffer of at least that 161 * buffer of at least \p tag_len Bytes. 188 * must trail at least 8 Bytes behind the input buffer. 194 * of at least \p iv_len Bytes. 197 * least that size in Bytes. [all …]
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/rcutorture/doc/ |
| H A D | TREE_RCU-kconfig.txt | 24 CONFIG_RCU_EQS_DEBUG -- Do at least one for CONFIG_NO_HZ_FULL and not. 32 nohz_full - do at least one. 33 maxcpu -- do at least one. 34 rcupdate.rcu_self_test_bh -- Do at least one each, offloaded and not. 35 rcupdate.rcu_self_test_sched -- Do at least one each, offloaded and not. 36 rcupdate.rcu_self_test -- Do at least one each, offloaded and not. 37 rcutree.rcu_fanout_exact -- Do at least one.
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/host_include/openssl/ |
| H A D | sha.h | 83 // |out|, which must have at least |SHA_DIGEST_LENGTH| bytes of space. It 88 // |out|. There must be at least |SHA_DIGEST_LENGTH| bytes of space in 137 // to |out|, which must have at least |SHA224_DIGEST_LENGTH| bytes of space. It 143 // |out|. There must be at least |SHA224_DIGEST_LENGTH| bytes of space in 164 // to |out|, which must have at least |SHA256_DIGEST_LENGTH| bytes of space. It 170 // |out|. There must be at least |SHA256_DIGEST_LENGTH| bytes of space in 212 // to |out|, which must have at least |SHA384_DIGEST_LENGTH| bytes of space. It 218 // |out|. There must be at least |SHA384_DIGEST_LENGTH| bytes of space in 239 // to |out|, which must have at least |SHA512_DIGEST_LENGTH| bytes of space. It 245 // |out|. There must be at least |SHA512_DIGEST_LENGTH| bytes of space in [all …]
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/openssl/ |
| H A D | sha.h | 83 // |out|, which must have at least |SHA_DIGEST_LENGTH| bytes of space. It 88 // |out|. There must be at least |SHA_DIGEST_LENGTH| bytes of space in 137 // to |out|, which must have at least |SHA224_DIGEST_LENGTH| bytes of space. It 143 // |out|. There must be at least |SHA224_DIGEST_LENGTH| bytes of space in 164 // to |out|, which must have at least |SHA256_DIGEST_LENGTH| bytes of space. It 170 // |out|. There must be at least |SHA256_DIGEST_LENGTH| bytes of space in 212 // to |out|, which must have at least |SHA384_DIGEST_LENGTH| bytes of space. It 218 // |out|. There must be at least |SHA384_DIGEST_LENGTH| bytes of space in 239 // to |out|, which must have at least |SHA512_DIGEST_LENGTH| bytes of space. It 245 // |out|. There must be at least |SHA512_DIGEST_LENGTH| bytes of space in [all …]
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/openssl/ |
| H A D | sha.h | 83 // |out|, which must have at least |SHA_DIGEST_LENGTH| bytes of space. It 88 // |out|. There must be at least |SHA_DIGEST_LENGTH| bytes of space in 137 // to |out|, which must have at least |SHA224_DIGEST_LENGTH| bytes of space. It 143 // |out|. There must be at least |SHA224_DIGEST_LENGTH| bytes of space in 164 // to |out|, which must have at least |SHA256_DIGEST_LENGTH| bytes of space. It 170 // |out|. There must be at least |SHA256_DIGEST_LENGTH| bytes of space in 212 // to |out|, which must have at least |SHA384_DIGEST_LENGTH| bytes of space. It 218 // |out|. There must be at least |SHA384_DIGEST_LENGTH| bytes of space in 239 // to |out|, which must have at least |SHA512_DIGEST_LENGTH| bytes of space. It 245 // |out|. There must be at least |SHA512_DIGEST_LENGTH| bytes of space in [all …]
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/host_include/openssl/ |
| H A D | sha.h | 83 // |out|, which must have at least |SHA_DIGEST_LENGTH| bytes of space. It 88 // |out|. There must be at least |SHA_DIGEST_LENGTH| bytes of space in 137 // to |out|, which must have at least |SHA224_DIGEST_LENGTH| bytes of space. It 143 // |out|. There must be at least |SHA224_DIGEST_LENGTH| bytes of space in 164 // to |out|, which must have at least |SHA256_DIGEST_LENGTH| bytes of space. It 170 // |out|. There must be at least |SHA256_DIGEST_LENGTH| bytes of space in 212 // to |out|, which must have at least |SHA384_DIGEST_LENGTH| bytes of space. It 218 // |out|. There must be at least |SHA384_DIGEST_LENGTH| bytes of space in 239 // to |out|, which must have at least |SHA512_DIGEST_LENGTH| bytes of space. It 245 // |out|. There must be at least |SHA512_DIGEST_LENGTH| bytes of space in [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/bits/ |
| H A D | valarray_array.tcc | 59 // at least n true elements. a must contain at least n elements and 84 // must contain at least n true elements. b must have at least as 87 // at least 15 elements. 110 // k must contain at least n true elements. a and b must have at 111 // least as many elements as the index of the nth true element of m. 189 // have at least n true elements and a must have at least as many 192 // at least 15 elements.
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/bits/ |
| H A D | valarray_array.tcc | 59 // at least n true elements. a must contain at least n elements and 84 // must contain at least n true elements. b must have at least as 87 // at least 15 elements. 110 // k must contain at least n true elements. a and b must have at 111 // least as many elements as the index of the nth true element of m. 189 // have at least n true elements and a must have at least as many 192 // at least 15 elements.
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v1/export-user_ta/include/openssl/ |
| H A D | sha.h | 83 // to |md|, which must have at least |SHA_DIGEST_LENGTH| bytes of space. It 88 // |out|. There must be at least |SHA_DIGEST_LENGTH| bytes of space in 135 // to |md|, which must have at least |SHA224_DIGEST_LENGTH| bytes of space. It 140 // |out|. There must be at least |SHA224_DIGEST_LENGTH| bytes of space in 160 // to |md|, which must have at least |SHA256_DIGEST_LENGTH| bytes of space. It 165 // |out|. There must be at least |SHA256_DIGEST_LENGTH| bytes of space in 197 // to |md|, which must have at least |SHA384_DIGEST_LENGTH| bytes of space. It 202 // |out|. There must be at least |SHA384_DIGEST_LENGTH| bytes of space in 227 // to |md|, which must have at least |SHA512_DIGEST_LENGTH| bytes of space. It 232 // |out|. There must be at least |SHA512_DIGEST_LENGTH| bytes of space in
|