/openbmc/linux/include/linux/ |
H A D | ktime.h | 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() 111 static inline bool ktime_after(const ktime_t cmp1, const ktime_t cmp2) in ktime_after() argument 113 return ktime_compare(cmp1, cmp2) > 0; in ktime_after() 123 static inline bool ktime_before(const ktime_t cmp1, const ktime_t cmp2) in ktime_before() argument 125 return ktime_compare(cmp1, cmp2) < 0; in ktime_before()
|
/openbmc/linux/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()
|
/openbmc/qemu/tcg/riscv/ |
H A D | tcg-target.c.inc | 1010 TCGReg cmp1, TCGReg cmp2, 1021 tcg_out_opc_branch(s, op, cmp2, cmp1, disp); 1023 tcg_out_opc_branch(s, op, cmp1, cmp2, disp); 1033 TCGReg cmp1, TCGReg cmp2, 1042 tcg_out_movcond_br1(s, cond, ret, cmp1, cmp2, val1, c_val1); 1047 tcg_out_movcond_br1(s, cond, ret, cmp1, cmp2, val2, c_val2); 1051 tmp = (ret == cmp1 || ret == cmp2 ? TCG_REG_TMP1 : ret); 1057 tcg_out_movcond_br1(s, cond, tmp, cmp1, cmp2, val2, c_val2); 1062 TCGReg cmp1, int cmp2, bool c_cmp2, 1070 tcg_out_movcond_br2(s, cond, ret, cmp1, cmp2, [all …]
|
/openbmc/qemu/target/sh4/ |
H A D | translate.c | 743 TCGv cmp1 = tcg_temp_new(); in _decode_opc() local 746 tcg_gen_subi_i32(cmp1, cmp2, 0x01010101); in _decode_opc() 747 tcg_gen_andc_i32(cmp1, cmp1, cmp2); in _decode_opc() 748 tcg_gen_andi_i32(cmp1, cmp1, 0x80808080); in _decode_opc() 749 tcg_gen_setcondi_i32(TCG_COND_NE, cpu_sr_t, cmp1, 0); in _decode_opc()
|
/openbmc/qemu/target/arm/tcg/ |
H A D | sve_helper.c | 7167 uint64_t cmp0, cmp1; in do_match2() local 7169 cmp1 = dup_const(esz, n); in do_match2() 7170 cmp0 = cmp1 ^ m0; in do_match2() 7171 cmp1 = cmp1 ^ m1; in do_match2() 7173 cmp1 = (cmp1 - ones) & ~cmp1; in do_match2() 7174 return (cmp0 | cmp1) & signs; in do_match2() 7298 uint64_t cmp0, cmp1; in do_histseg_cnt() local 7300 cmp1 = dup_const(MO_8, n); in do_histseg_cnt() 7301 cmp0 = cmp1 ^ m0; in do_histseg_cnt() 7302 cmp1 = cmp1 ^ m1; in do_histseg_cnt() [all …]
|
/openbmc/qemu/target/loongarch/tcg/ |
H A D | vec_helper.c | 3120 uint64_t cmp0, cmp1; in do_match2() local 3122 cmp1 = dup_const(esz, n); in do_match2() 3123 cmp0 = cmp1 ^ m0; in do_match2() 3124 cmp1 = cmp1 ^ m1; in do_match2() 3126 cmp1 = (cmp1 - ones) & ~cmp1; in do_match2() 3127 return (cmp0 | cmp1) & signs; in do_match2()
|
/openbmc/linux/fs/btrfs/ |
H A D | tree-log.c | 701 struct btrfs_file_extent_item cmp1; in replay_one_extent() local 710 read_extent_buffer(eb, &cmp1, (unsigned long)item, in replay_one_extent() 711 sizeof(cmp1)); in replay_one_extent() 719 if (memcmp(&cmp1, &cmp2, sizeof(cmp1)) == 0) { in replay_one_extent()
|
/openbmc/linux/fs/ext4/ |
H A D | extents.c | 6012 ext4_fsblk_t cmp1, cmp2; in ext4_ext_replay_set_iblocks() local 6079 cmp1 = cmp2 = 0; in ext4_ext_replay_set_iblocks() 6081 cmp1 = path[i].p_bh ? in ext4_ext_replay_set_iblocks() 6086 if (cmp1 != cmp2 && cmp2 != 0) in ext4_ext_replay_set_iblocks()
|
/openbmc/linux/lib/zstd/compress/ |
H A D | zstd_lazy.c | 1046 const uint8x16_t cmp1 = vceqq_u8(chunk.val[1], dup); in ZSTD_row_getMatchMask() local 1050 const uint8x16_t t0 = vsriq_n_u8(cmp1, cmp0, 1); in ZSTD_row_getMatchMask()
|