/kernel/linux/linux-5.10/include/linux/ |
H A D | ktime.h | 87 * @cmp1: comparable1 91 * cmp1 < cmp2: return <0 92 * cmp1 == cmp2: return 0 93 * cmp1 > cmp2: return >0 95 static inline int ktime_compare(const ktime_t cmp1, const ktime_t cmp2) in ktime_compare() argument 97 if (cmp1 < cmp2) in ktime_compare() 99 if (cmp1 > cmp2) in ktime_compare() 106 * @cmp1: comparable1 109 * Return: true if cmp1 happened after cmp2. 111 static inline bool ktime_after(const ktime_t cmp1, cons argument 123 ktime_before(const ktime_t cmp1, const ktime_t cmp2) ktime_before() argument [all...] |
/kernel/linux/linux-6.6/include/linux/ |
H A D | ktime.h | 87 * @cmp1: comparable1 91 * cmp1 < cmp2: return <0 92 * cmp1 == cmp2: return 0 93 * cmp1 > cmp2: return >0 95 static inline int ktime_compare(const ktime_t cmp1, const ktime_t cmp2) in ktime_compare() argument 97 if (cmp1 < cmp2) in ktime_compare() 99 if (cmp1 > cmp2) in ktime_compare() 106 * @cmp1: comparable1 109 * Return: true if cmp1 happened after cmp2. 111 static inline bool ktime_after(const ktime_t cmp1, cons argument 123 ktime_before(const ktime_t cmp1, const ktime_t cmp2) ktime_before() argument [all...] |
/kernel/linux/linux-5.10/drivers/gpu/drm/msm/hdmi/ |
H A D | hdmi_phy_8996.c | 649 u32 cmp1, cmp2, cmp3, pll_cmp; in hdmi_8996_pll_recalc_rate() local 651 cmp1 = hdmi_pll_read(pll, REG_HDMI_PHY_QSERDES_COM_LOCK_CMP1_MODE0); in hdmi_8996_pll_recalc_rate() 655 pll_cmp = cmp1 | (cmp2 << 8) | (cmp3 << 16); in hdmi_8996_pll_recalc_rate()
|
/kernel/linux/linux-6.6/drivers/gpu/drm/msm/hdmi/ |
H A D | hdmi_phy_8996.c | 649 u32 cmp1, cmp2, cmp3, pll_cmp; in hdmi_8996_pll_recalc_rate() local 651 cmp1 = hdmi_pll_read(pll, REG_HDMI_PHY_QSERDES_COM_LOCK_CMP1_MODE0); in hdmi_8996_pll_recalc_rate() 655 pll_cmp = cmp1 | (cmp2 << 8) | (cmp3 << 16); in hdmi_8996_pll_recalc_rate()
|
/kernel/linux/linux-5.10/fs/btrfs/ |
H A D | tree-log.c | 630 struct btrfs_file_extent_item cmp1; in replay_one_extent() local 639 read_extent_buffer(eb, &cmp1, (unsigned long)item, in replay_one_extent() 640 sizeof(cmp1)); in replay_one_extent() 648 if (memcmp(&cmp1, &cmp2, sizeof(cmp1)) == 0) { in replay_one_extent()
|
/kernel/linux/linux-6.6/fs/btrfs/ |
H A D | tree-log.c | 682 struct btrfs_file_extent_item cmp1; in replay_one_extent() local 691 read_extent_buffer(eb, &cmp1, (unsigned long)item, in replay_one_extent() 692 sizeof(cmp1)); in replay_one_extent() 700 if (memcmp(&cmp1, &cmp2, sizeof(cmp1)) == 0) { in replay_one_extent()
|
/kernel/linux/linux-5.10/fs/ext4/ |
H A D | extents.c | 6008 ext4_fsblk_t cmp1, cmp2; in ext4_ext_replay_set_iblocks() local 6082 cmp1 = cmp2 = 0; in ext4_ext_replay_set_iblocks() 6084 cmp1 = path[i].p_bh ? in ext4_ext_replay_set_iblocks() 6089 if (cmp1 != cmp2 && cmp2 != 0) in ext4_ext_replay_set_iblocks()
|
/kernel/linux/linux-6.6/fs/ext4/ |
H A D | extents.c | 5990 ext4_fsblk_t cmp1, cmp2; in ext4_ext_replay_set_iblocks() local 6057 cmp1 = cmp2 = 0; in ext4_ext_replay_set_iblocks() 6059 cmp1 = path[i].p_bh ? in ext4_ext_replay_set_iblocks() 6064 if (cmp1 != cmp2 && cmp2 != 0) in ext4_ext_replay_set_iblocks()
|
/kernel/linux/linux-6.6/lib/zstd/compress/ |
H A D | zstd_lazy.c | 1046 const uint8x16_t cmp1 = vceqq_u8(chunk.val[1], dup); in ZSTD_row_getMatchMask() 1050 const uint8x16_t t0 = vsriq_n_u8(cmp1, cmp0, 1); in ZSTD_row_getMatchMask()
|