| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/ |
| H A D | integer.hpp | 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 75 template<> struct uint_least_helper<3> { typedef unsigned int least; }; typedef [all …]
|
| H A D | crc.hpp | 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 373 BOOST_STATIC_CONSTANT( least, high_bit = base_type::high_bit ); [all …]
|
| /OK3568_Linux_fs/kernel/net/netfilter/ipvs/ |
| H A D | ip_vs_nq.c | 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() 108 refcount_read(&least->refcnt), in ip_vs_nq_schedule() [all …]
|
| H A D | ip_vs_sed.c | 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() 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() 109 refcount_read(&least->refcnt), in ip_vs_sed_schedule() 110 atomic_read(&least->weight), loh); in ip_vs_sed_schedule() [all …]
|
| H A D | ip_vs_wlc.c | 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() 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() 80 atomic_read(&least->activeconns), in ip_vs_wlc_schedule() 81 refcount_read(&least->refcnt), in ip_vs_wlc_schedule() 82 atomic_read(&least->weight), loh); in ip_vs_wlc_schedule() [all …]
|
| H A D | ip_vs_lc.c | 27 struct ip_vs_dest *dest, *least = NULL; in ip_vs_lc_schedule() local 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() 60 atomic_read(&least->inactconns)); in ip_vs_lc_schedule() 62 return least; in ip_vs_lc_schedule()
|
| H A D | ip_vs_lblcr.c | 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() 175 loh = ip_vs_dest_conn_overhead(least); in ip_vs_dest_set_min() 190 (__s64)doh * atomic_read(&least->weight)) in ip_vs_dest_set_min() 192 least = dest; in ip_vs_dest_set_min() 200 IP_VS_DBG_ADDR(least->af, &least->addr), in ip_vs_dest_set_min() 201 ntohs(least->port), in ip_vs_dest_set_min() [all …]
|
| H A D | ip_vs_lblc.c | 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() 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() 447 ntohs(least->port), in __ip_vs_lblc_schedule() 448 atomic_read(&least->activeconns), in __ip_vs_lblc_schedule() 449 refcount_read(&least->refcnt), in __ip_vs_lblc_schedule() 450 atomic_read(&least->weight), loh); in __ip_vs_lblc_schedule() [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 …]
|
| /OK3568_Linux_fs/kernel/drivers/media/dvb-frontends/drx39xyj/ |
| H A D | drx_dap_fasi.h | 98 #error At least one of short- or long-addressing format must be allowed. 201 #error DRXDAP_MAX_WCHUNKSIZE must be at least 3 in single master mode 204 #error DRXDAP_MAX_WCHUNKSIZE must be at least 5 in multi master mode 209 #error DRXDAP_MAX_WCHUNKSIZE must be at least 5 in single master mode 212 #error DRXDAP_MAX_WCHUNKSIZE must be at least 7 in multi master mode 225 #error DRXDAP_MAX_RCHUNKSIZE must be at least 2
|
| /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/kernel/Documentation/ABI/stable/ |
| H A D | sysfs-bus-mhi | 6 using a BHI (Boot Host Interface) register read after at least 8 without having the device power on at least once, the file will 18 at least one attempt to power up the device has been done. If 19 read without having the device power on at least once, the file
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-support/ipvsadm/ |
| H A D | ipvsadm_1.31.bb | 10 (round robin, weighted round robin, least-connec-tion, weighted least-connection, \ 11 locality-based least-connection, locality-based least-connection with replication, \
|
| /OK3568_Linux_fs/kernel/arch/arc/lib/ |
| H A D | strcmp.S | 33 bic_s r0,r0,r1 ; mask for least significant difference bit 35 xor r0,r5,r1 ; mask for least significant difference byte 50 bic_s r0,r0,r1 ; mask for least significant difference bit 52 xor r0,r5,r1 ; mask for least significant difference byte
|
| /OK3568_Linux_fs/external/xserver/doc/ |
| H A D | c-extensions | 41 Non-OS-dependent code can assume facilities at least as good as 45 Unix-like systems are assumed to be at least as good as UNIX03. 58 Linux systems must be at least 2.4 or later. As a practical matter 65 Windows-dependent code assumes at least NT 5.1.
|
| /OK3568_Linux_fs/yocto/meta-qt5/recipes-qt/qt5/qtbase/ |
| H A D | 0006-Pretend-Qt5-wasn-t-found-if-OE_QMAKE_PATH_EXTERNAL_H.patch | 37 … message(FATAL_ERROR \"Qt 5 $${CMAKE_MODULE_NAME} module requires at least CMake version 3.1.0\") 53 message(FATAL_ERROR \"Qt5 requires at least CMake version 3.1.0\") 62 set(Qt5_NOT_FOUND_MESSAGE \"The Qt5 package requires at least one component\")
|
| /OK3568_Linux_fs/buildroot/package/dhrystone/ |
| H A D | 0005-prototypes.patch | 26 /* Measurements should last at least about 2 seconds */ 34 /* Measurements should last at least 2 seconds */
|
| /OK3568_Linux_fs/buildroot/package/strace/ |
| H A D | Config.in | 3 # needs at least kernel headers 4.0 on nios2 5 # needs at least kernel headers 5.0 on xtensa
|
| /OK3568_Linux_fs/kernel/arch/alpha/lib/ |
| H A D | ev6-memcpy.S | 108 subq $18, 192, $2 # E : At least two more trips to go? 130 cmple $18, 63, $1 # E : At least one more trip? 140 subq $18, 8, $18 # E : At least a quad left? 200 subq $18, 8, $18 # E : At least a quad left?
|
| H A D | memchr.S | 114 # At least one byte left to process. 127 # At least two quads remain to be accessed. 133 # At least three quads remain to be accessed
|
| /OK3568_Linux_fs/kernel/Documentation/userspace-api/media/mediactl/ |
| H A D | media-types.rst | 143 composing must have at least two sink pads and one source 151 must have at least one sink pad and one source pad. Read 160 encoding conversion must have at least one sink pad and one 178 at least one sink pad and one source pad, and scale the 196 compressing video frames. Must have one sink pad and at least 202 frames. Must have one sink pad and at least one source pad. 206 least two sink pads and one source pad, and must pass the video 211 least one sink pad and at least one source pad. It receives video 372 at least one of those links must be enabled for the entity to be
|
| /OK3568_Linux_fs/kernel/Documentation/userspace-api/media/rc/ |
| H A D | lirc-set-transmitter-mask.rst | 29 Mask with channels to enable tx. Channel 0 is the least significant bit. 40 encoded by the least significant bit and so on.
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-support/numactl/numactl/ |
| H A D | Fix-the-test-output-format.patch | 22 echo "need at least two nodes with at least $NEEDPAGES each of"
|
| /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/sound/ |
| H A D | amlogic,axg-sound-card.txt | 17 sub-nodes. There should be at least one (and probably more) 32 least one these mask should be provided with 42 - codec: dai-link representing backend links should have at least one subnode.
|
| /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/mux/ |
| H A D | gpio-mux.txt | 8 - mux-gpios : list of gpios used to control the multiplexer, least 18 multiplexer GPIO pins, where the first pin is the least significant
|