/openbmc/linux/include/linux/ |
H A D | crc32.h | 16 * sequences of bytes, seq1 and seq2 with lengths len1 24 * Return: The crc32_le() check value of seq1 and seq2 concatenated, 26 * the concatenated memory area of seq1 with seq2, and crc_full 43 * sequences of bytes, seq1 and seq2 with lengths len1 51 * Return: The __crc32c_le() check value of seq1 and seq2 concatenated, 53 * the concatenated memory area of seq1 with seq2, and crc_full
|
/openbmc/linux/drivers/video/ |
H A D | vgastate.c | 52 u8 misc, attr10, gr4, gr5, gr6, seq1, seq2, seq4; in save_vga_text() local 76 seq1 = vga_rseq(state->vgabase, VGA_SEQ_CLOCK_MODE); in save_vga_text() 78 vga_wseq(state->vgabase, VGA_SEQ_CLOCK_MODE, seq1 | 1 << 5); in save_vga_text() 132 vga_wseq(state->vgabase, VGA_SEQ_CLOCK_MODE, seq1 & ~(1 << 5)); in save_vga_text() 135 vga_wseq(state->vgabase, VGA_SEQ_CLOCK_MODE, seq1); in save_vga_text() 143 u8 seq1, seq2, seq4; in restore_vga_text() local 156 seq1 = vga_rseq(state->vgabase, VGA_SEQ_CLOCK_MODE); in restore_vga_text() 158 vga_wseq(state->vgabase, VGA_SEQ_CLOCK_MODE, seq1 | 1 << 5); in restore_vga_text() 210 vga_wseq(state->vgabase, VGA_SEQ_CLOCK_MODE, seq1 & ~(1 << 5)); in restore_vga_text() 221 vga_wseq(state->vgabase, VGA_SEQ_CLOCK_MODE, seq1); in restore_vga_text()
|
/openbmc/linux/net/dccp/ |
H A D | dccp.h | 124 /* is seq1 < seq2 ? */ 125 static inline int before48(const u64 seq1, const u64 seq2) in before48() argument 127 return (s64)((seq2 << 16) - (seq1 << 16)) > 0; in before48() 130 /* is seq1 > seq2 ? */ 131 #define after48(seq1, seq2) before48(seq2, seq1) argument 133 /* is seq2 <= seq1 <= seq3 ? */ 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()
|
/openbmc/linux/tools/testing/selftests/bpf/ |
H A D | bpf_tcp_helpers.h | 106 static __always_inline bool before(__u32 seq1, __u32 seq2) in before() argument 108 return (__s32)(seq1-seq2) < 0; in before() 110 #define after(seq2, seq1) before(seq1, seq2) argument
|
/openbmc/linux/drivers/gpu/drm/mgag200/ |
H A D | mgag200_mode.c | 520 u8 seq1; in mgag200_primary_plane_helper_atomic_enable() local 522 RREG_SEQ(0x01, seq1); in mgag200_primary_plane_helper_atomic_enable() 523 seq1 &= ~MGAREG_SEQ1_SCROFF; in mgag200_primary_plane_helper_atomic_enable() 524 WREG_SEQ(0x01, seq1); in mgag200_primary_plane_helper_atomic_enable() 533 u8 seq1; in mgag200_primary_plane_helper_atomic_disable() local 535 RREG_SEQ(0x01, seq1); in mgag200_primary_plane_helper_atomic_disable() 536 seq1 |= MGAREG_SEQ1_SCROFF; in mgag200_primary_plane_helper_atomic_disable() 537 WREG_SEQ(0x01, seq1); in mgag200_primary_plane_helper_atomic_disable()
|
/openbmc/linux/Documentation/devicetree/bindings/display/bridge/ |
H A D | renesas,dsi.yaml | 44 - const: seq1 148 interrupt-names = "seq0", "seq1", "vin1", "rcv",
|
/openbmc/linux/include/net/bluetooth/ |
H A D | l2cap.h | 865 static inline int __seq_offset(struct l2cap_chan *chan, __u16 seq1, __u16 seq2) in __seq_offset() argument 867 if (seq1 >= seq2) in __seq_offset() 868 return seq1 - seq2; in __seq_offset() 870 return chan->tx_win_max + 1 - seq2 + seq1; in __seq_offset()
|
/openbmc/linux/drivers/gpu/drm/nouveau/dispnv04/ |
H A D | hw.h | 245 uint8_t seq1 = NVReadVgaSeq(dev, head, NV_VIO_SR_CLOCK_INDEX); in NVVgaProtect() local 249 NVWriteVgaSeq(dev, head, NV_VIO_SR_CLOCK_INDEX, seq1 | 0x20); in NVVgaProtect() 252 NVWriteVgaSeq(dev, head, NV_VIO_SR_CLOCK_INDEX, seq1 & ~0x20); /* reenable display */ in NVVgaProtect()
|
H A D | crtc.c | 180 unsigned char seq1 = 0, crtc17 = 0; in nv_crtc_dpms() local 200 seq1 = 0x20; in nv_crtc_dpms() 206 seq1 = 0x20; in nv_crtc_dpms() 212 seq1 = 0x20; in nv_crtc_dpms() 219 seq1 = 0x00; in nv_crtc_dpms() 226 seq1 |= (NVReadVgaSeq(dev, nv_crtc->index, NV_VIO_SR_CLOCK_INDEX) & ~0x20); in nv_crtc_dpms() 227 NVWriteVgaSeq(dev, nv_crtc->index, NV_VIO_SR_CLOCK_INDEX, seq1); in nv_crtc_dpms()
|
H A D | hw.c | 112 unsigned char seq1; in NVBlankScreen() local 117 seq1 = NVReadVgaSeq(dev, head, NV_VIO_SR_CLOCK_INDEX); in NVBlankScreen() 121 NVWriteVgaSeq(dev, head, NV_VIO_SR_CLOCK_INDEX, seq1 | 0x20); in NVBlankScreen() 123 NVWriteVgaSeq(dev, head, NV_VIO_SR_CLOCK_INDEX, seq1 & ~0x20); in NVBlankScreen()
|
/openbmc/linux/net/rxrpc/ |
H A D | ar-internal.h | 1305 static inline bool before(u32 seq1, u32 seq2) in before() argument 1307 return (s32)(seq1 - seq2) < 0; in before() 1309 static inline bool before_eq(u32 seq1, u32 seq2) in before_eq() argument 1311 return (s32)(seq1 - seq2) <= 0; in before_eq() 1313 static inline bool after(u32 seq1, u32 seq2) in after() argument 1315 return (s32)(seq1 - seq2) > 0; in after() 1317 static inline bool after_eq(u32 seq1, u32 seq2) in after_eq() argument 1319 return (s32)(seq1 - seq2) >= 0; in after_eq()
|
/openbmc/linux/fs/nfs/ |
H A D | nfs4_fs.h | 611 u32 seq1 = be32_to_cpu(s1->seqid); in nfs4_stateid_is_next() local 614 return seq2 == seq1 + 1U || (seq2 == 1U && seq1 == 0xffffffffU); in nfs4_stateid_is_next()
|
/openbmc/linux/drivers/gpu/drm/i915/ |
H A D | i915_request.h | 477 * Returns true if seq1 is later than seq2. 479 static inline bool i915_seqno_passed(u32 seq1, u32 seq2) in i915_seqno_passed() argument 481 return (s32)(seq1 - seq2) >= 0; in i915_seqno_passed()
|
/openbmc/qemu/tests/qemu-iotests/ |
H A D | testrunner.py | 53 seq1 = [line.rstrip() for line in f1] 56 for line in difflib.unified_diff(seq1, seq2, file1, file2)]
|
/openbmc/linux/net/mptcp/ |
H A D | protocol.h | 137 static inline bool before64(__u64 seq1, __u64 seq2) in before64() argument 139 return (__s64)(seq1 - seq2) < 0; in before64() 142 #define after64(seq2, seq1) before64(seq1, seq2) argument
|
/openbmc/linux/net/smc/ |
H A D | smc_cdc.c | 274 static inline bool smc_cdc_before(u16 seq1, u16 seq2) in smc_cdc_before() argument 276 return (s16)(seq1 - seq2) < 0; in smc_cdc_before()
|
/openbmc/linux/include/net/ |
H A D | tcp.h | 277 static inline bool before(__u32 seq1, __u32 seq2) in before() argument 279 return (__s32)(seq1-seq2) < 0; in before() 281 #define after(seq2, seq1) before(seq1, seq2) argument 284 static inline bool between(__u32 seq1, __u32 seq2, __u32 seq3) in between() argument 286 return seq3 - seq2 >= seq1 - seq2; in between() 1196 static inline bool tcp_skb_sent_after(u64 t1, u64 t2, u32 seq1, u32 seq2) in tcp_skb_sent_after() argument 1198 return t1 > t2 || (t1 == t2 && after(seq1, seq2)); in tcp_skb_sent_after()
|
/openbmc/linux/lib/lz4/ |
H A D | lz4hc_compress.c | 481 /* can write Seq1 immediately in LZ4HC_compress_generic() 483 * so Seq3 becomes Seq1 in LZ4HC_compress_generic()
|
/openbmc/u-boot/include/u-boot/ |
H A D | zlib.h | 691 Combine two Adler-32 checksums into one. For two sequences of bytes, seq1 694 seq1 and seq2 concatenated, requiring only adler1, adler2, and len2.
|
/openbmc/linux/drivers/net/ethernet/sfc/siena/ |
H A D | ptp.c | 178 * @seq1: Second part of (PTP) UUID and sequence number 185 u32 seq1; member 1204 (evt->seq1 == match->words[1])) { in efx_ptp_match_rx() 1865 evt->seq1 = (EFX_QWORD_FIELD(ptp->evt_frags[2], in ptp_event_rx()
|
/openbmc/linux/sound/core/seq/oss/ |
H A D | seq_oss_event.c | 150 case CTRL_PITCH_BENDER: /* SEQ1 V2 control */ in extended_event()
|
/openbmc/qemu/net/ |
H A D | colo-compare.c | 295 static inline bool after(uint32_t seq1, uint32_t seq2) in after() argument 297 return (int32_t)(seq1 - seq2) > 0; in after()
|
/openbmc/linux/drivers/net/wireless/realtek/rtw89/ |
H A D | pci.h | 830 __le16 seq1; member
|
/openbmc/linux/drivers/net/ethernet/sfc/ |
H A D | ptp.c | 169 * @seq1: Second part of (PTP) UUID and sequence number 176 u32 seq1; member
|
/openbmc/linux/arch/arm64/boot/dts/renesas/ |
H A D | r9a07g054.dtsi | 786 interrupt-names = "seq0", "seq1", "vin1", "rcv",
|