Home
last modified time | relevance | path

Searched refs:cmp1 (Results 1 – 9 of 9) sorted by relevance

/openbmc/linux/include/linux/
H A Dktime.h95 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 Dhdmi_phy_8996.c649 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 Dtcg-target.c.inc1010 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 Dtranslate.c743 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 Dsve_helper.c7167 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 Dvec_helper.c3120 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 Dtree-log.c701 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 Dextents.c6012 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 Dzstd_lazy.c1046 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()