| /OK3568_Linux_fs/kernel/include/net/ |
| H A D | dn_nsp.h | 139 static __inline__ int dn_before(__u16 seq1, __u16 seq2) in dn_before() argument 142 seq2 &= 0x0fff; in dn_before() 144 return (int)((seq1 - seq2) & 0x0fff) > 2048; in dn_before() 148 static __inline__ int dn_after(__u16 seq1, __u16 seq2) in dn_after() argument 151 seq2 &= 0x0fff; in dn_after() 153 return (int)((seq2 - seq1) & 0x0fff) > 2048; in dn_after() 156 static __inline__ int dn_equal(__u16 seq1, __u16 seq2) in dn_equal() argument 158 return ((seq1 ^ seq2) & 0x0fff) == 0; in dn_equal() 161 static __inline__ int dn_before_or_equal(__u16 seq1, __u16 seq2) in dn_before_or_equal() argument 163 return (dn_before(seq1, seq2) || dn_equal(seq1, seq2)); in dn_before_or_equal() [all …]
|
| H A D | tcp.h | 271 static inline bool before(__u32 seq1, __u32 seq2) in before() argument 273 return (__s32)(seq1-seq2) < 0; in before() 275 #define after(seq2, seq1) before(seq1, seq2) argument 278 static inline bool between(__u32 seq1, __u32 seq2, __u32 seq3) in between() argument 280 return seq3 - seq2 >= seq1 - seq2; in between()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/fusion/view/joint_view/ |
| H A D | joint_view.hpp | 62 , seq2(in_seq2) in joint_view() 68 concat_type concat() const { return fusion::begin(seq2); } in concat() 70 concat_last_type concat_last() const { return fusion::end(seq2); } in concat_last() 77 typename mpl::if_<traits::is_view<Sequence2>, Sequence2, Sequence2&>::type seq2; member
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-core/glibc/glibc/ |
| H A D | 0016-locale-prevent-maybe-uninitialized-errors-with-Os-BZ.patch | 10 | ../locale/weight.h:31:26: error: 'seq2.back_us' may be used uninitialized in this function [-Werr… 13 | strcoll_l.c:304:18: note: 'seq2.back_us' was declared here 14 | coll_seq seq1, seq2; 21 | coll_seq seq1, seq2; 44 + seq1.back_us and seq2.back_us might be used uninitialized.
|
| /OK3568_Linux_fs/kernel/net/dccp/ |
| H A D | dccp.h | 125 static inline int before48(const u64 seq1, const u64 seq2) in before48() argument 127 return (s64)((seq2 << 16) - (seq1 << 16)) > 0; in before48() 131 #define after48(seq1, seq2) before48(seq2, seq1) argument 134 static inline int between48(const u64 seq1, const u64 seq2, const u64 seq3) in between48() argument 136 return (seq3 << 16) - (seq2 << 16) >= (seq1 << 16) - (seq2 << 16); in between48() 139 static inline u64 max48(const u64 seq1, const u64 seq2) in max48() argument 141 return after48(seq1, seq2) ? seq1 : seq2; in max48()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/fusion/view/transform_view/ |
| H A D | transform_view.hpp | 63 , seq2(in_seq2) in transform_view() 69 first2_type first2() const { return fusion::begin(seq2); } in first2() 73 last2_type last2() const { return fusion::end(seq2); } in last2() 77 typename mpl::if_<traits::is_view<Sequence2>, Sequence2, Sequence2&>::type seq2; member
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/support/algorithm/ |
| H A D | any_if_ns.hpp | 64 any_if_ns(Sequence1 const& seq1, Sequence2& seq2, F f, Pred) in any_if_ns() argument 67 fusion::begin(seq1), fusion::begin(seq2) in any_if_ns() 68 , fusion::end(seq1), fusion::end(seq2) in any_if_ns()
|
| H A D | any_if.hpp | 199 any_if(Sequence1 const& seq1, Sequence2& seq2, F f, Pred) in any_if() argument 202 fusion::begin(seq1), fusion::begin(seq2) in any_if() 203 , fusion::end(seq1), fusion::end(seq2) in any_if()
|
| H A D | any_ns.hpp | 74 any_ns(Sequence1 const& seq1, Sequence2& seq2, F f) in any_ns() argument 78 , fusion::begin(seq2) in any_ns()
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/bpf/ |
| H A D | bpf_tcp_helpers.h | 95 static __always_inline bool before(__u32 seq1, __u32 seq2) in before() argument 97 return (__s32)(seq1-seq2) < 0; in before() 99 #define after(seq2, seq1) before(seq1, seq2) argument
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/fusion/algorithm/transformation/ |
| H A D | transform.hpp | 47 transform(Sequence1 const& seq1, Sequence2 const& seq2, F f) in transform() argument 49 return transform_view<Sequence1 const, Sequence2 const, F>(seq1, seq2, f); in transform()
|
| /OK3568_Linux_fs/kernel/net/rxrpc/ |
| H A D | ar-internal.h | 1088 static inline bool before(u32 seq1, u32 seq2) in before() argument 1090 return (s32)(seq1 - seq2) < 0; in before() 1092 static inline bool before_eq(u32 seq1, u32 seq2) in before_eq() argument 1094 return (s32)(seq1 - seq2) <= 0; in before_eq() 1096 static inline bool after(u32 seq1, u32 seq2) in after() argument 1098 return (s32)(seq1 - seq2) > 0; in after() 1100 static inline bool after_eq(u32 seq1, u32 seq2) in after_eq() argument 1102 return (s32)(seq1 - seq2) >= 0; in after_eq()
|
| /OK3568_Linux_fs/kernel/drivers/video/ |
| H A D | vgastate.c | 52 u8 misc, attr10, gr4, gr5, gr6, seq1, seq2, seq4; in save_vga_text() local 72 seq2 = vga_rseq(state->vgabase, VGA_SEQ_PLANE_WRITE); in save_vga_text() 123 vga_wseq(state->vgabase, VGA_SEQ_PLANE_WRITE, seq2); in save_vga_text() 143 u8 seq1, seq2, seq4; in restore_vga_text() local 152 seq2 = vga_rseq(state->vgabase, VGA_SEQ_PLANE_WRITE); in restore_vga_text() 222 vga_wseq(state->vgabase, VGA_SEQ_PLANE_WRITE, seq2); in restore_vga_text()
|
| /OK3568_Linux_fs/kernel/net/mptcp/ |
| H A D | protocol.h | 497 static inline bool before64(__u64 seq1, __u64 seq2) in before64() argument 499 return (__s64)(seq1 - seq2) < 0; in before64() 502 #define after64(seq2, seq1) before64(seq1, seq2) argument
|
| /OK3568_Linux_fs/kernel/net/ipv4/ |
| H A D | tcp_recovery.c | 5 static bool tcp_rack_sent_after(u64 t1, u64 t2, u32 seq1, u32 seq2) in tcp_rack_sent_after() argument 7 return t1 > t2 || (t1 == t2 && after(seq1, seq2)); in tcp_rack_sent_after()
|
| /OK3568_Linux_fs/kernel/include/net/bluetooth/ |
| H A D | l2cap.h | 907 static inline int __seq_offset(struct l2cap_chan *chan, __u16 seq1, __u16 seq2) in __seq_offset() argument 909 if (seq1 >= seq2) in __seq_offset() 910 return seq1 - seq2; in __seq_offset() 912 return chan->tx_win_max + 1 - seq2 + seq1; in __seq_offset()
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/i915/ |
| H A D | i915_request.h | 399 static inline bool i915_seqno_passed(u32 seq1, u32 seq2) in i915_seqno_passed() argument 401 return (s32)(seq1 - seq2) >= 0; in i915_seqno_passed()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/fusion/view/transform_view/detail/ |
| H A D | at_impl.hpp | 59 return seq.f(boost::fusion::at<N>(seq.seq1), boost::fusion::at<N>(seq.seq2)); in call()
|
| /OK3568_Linux_fs/kernel/fs/nfs/ |
| H A D | nfs4_fs.h | 608 u32 seq2 = be32_to_cpu(s2->seqid); in nfs4_stateid_is_next() local 610 return seq2 == seq1 + 1U || (seq2 == 1U && seq1 == 0xffffffffU); in nfs4_stateid_is_next()
|
| /OK3568_Linux_fs/external/xserver/hw/xfree86/vgahw/ |
| H A D | vgaHW.c | 737 unsigned char miscOut, attr10, gr1, gr3, gr4, gr5, gr6, gr8, seq2, seq4; in vgaHWRestoreFonts() local 762 seq2 = hwp->readSeq(hwp, 0x02); in vgaHWRestoreFonts() 834 hwp->writeSeq(hwp, 0x02, seq2); in vgaHWRestoreFonts() 919 unsigned char miscOut, attr10, gr4, gr5, gr6, seq2, seq4; in vgaHWSaveFonts() local 941 seq2 = hwp->readSeq(hwp, 0x02); in vgaHWSaveFonts() 999 hwp->writeSeq(hwp, 0x02, seq2); in vgaHWSaveFonts()
|
| /OK3568_Linux_fs/kernel/net/smc/ |
| H A D | smc_cdc.c | 261 static inline bool smc_cdc_before(u16 seq1, u16 seq2) in smc_cdc_before() argument 263 return (s16)(seq1 - seq2) < 0; in smc_cdc_before()
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/nouveau/dispnv04/ |
| H A D | hw.c | 312 uint8_t misc, gr4, gr5, gr6, seq2, seq4; in nouveau_hw_save_vga_fonts() local 343 seq2 = NVReadVgaSeq(dev, 0, NV_VIO_SR_PLANE_MASK_INDEX); in nouveau_hw_save_vga_fonts() 363 NVWriteVgaSeq(dev, 0, NV_VIO_SR_PLANE_MASK_INDEX, seq2); in nouveau_hw_save_vga_fonts()
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/infineon/ |
| H A D | dhd_wlfc.c | 117 uint16 seq, seq2; in _dhd_wlfc_prec_enque() local 139 seq2 = _dhd_wlfc_adjusted_seq(p2, current_seq); in _dhd_wlfc_prec_enque() 141 if ((qHead &&((seq+1) > seq2)) || (!qHead && ((seq2+1) > seq))) { in _dhd_wlfc_prec_enque() 145 seq2 = _dhd_wlfc_adjusted_seq(p2, current_seq); in _dhd_wlfc_prec_enque() 147 while (seq > seq2) { in _dhd_wlfc_prec_enque() 153 seq2 = _dhd_wlfc_adjusted_seq(p2, current_seq); in _dhd_wlfc_prec_enque()
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/infineon/bcmdhd/ |
| H A D | dhd_wlfc.c | 117 uint16 seq, seq2; in _dhd_wlfc_prec_enque() local 139 seq2 = _dhd_wlfc_adjusted_seq(p2, current_seq); in _dhd_wlfc_prec_enque() 141 if ((qHead &&((seq+1) > seq2)) || (!qHead && ((seq2+1) > seq))) { in _dhd_wlfc_prec_enque() 145 seq2 = _dhd_wlfc_adjusted_seq(p2, current_seq); in _dhd_wlfc_prec_enque() 147 while (seq > seq2) { in _dhd_wlfc_prec_enque() 153 seq2 = _dhd_wlfc_adjusted_seq(p2, current_seq); in _dhd_wlfc_prec_enque()
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/cywdhd/bcmdhd/ |
| H A D | dhd_wlfc.c | 117 uint16 seq, seq2; in _dhd_wlfc_prec_enque() local 139 seq2 = _dhd_wlfc_adjusted_seq(p2, current_seq); in _dhd_wlfc_prec_enque() 141 if ((qHead &&((seq+1) > seq2)) || (!qHead && ((seq2+1) > seq))) { in _dhd_wlfc_prec_enque() 145 seq2 = _dhd_wlfc_adjusted_seq(p2, current_seq); in _dhd_wlfc_prec_enque() 147 while (seq > seq2) { in _dhd_wlfc_prec_enque() 153 seq2 = _dhd_wlfc_adjusted_seq(p2, current_seq); in _dhd_wlfc_prec_enque()
|