/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/arch/m68k/ifpsp060/ |
H A D | ilsp.doc | 35 and the "cmp2" instruction. These instructions are not 115 An example of using the "cmp2" instruction is as follows: 117 # cmp2.l <ea>,Rn 118 # cmp2.l _bounds,%d0 122 bsr.l _060LSP_TOP_+0x48 # branch to "cmp2" routine
|
H A D | isp.doc | 44 cmp2
|
/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 652 cmp2 = hdmi_pll_read(pll, REG_HDMI_PHY_QSERDES_COM_LOCK_CMP2_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 | 1425 TCGReg cmp1, TCGReg cmp2, 1436 tcg_out_opc_branch(s, op, cmp2, cmp1, disp); 1438 tcg_out_opc_branch(s, op, cmp1, cmp2, disp); 1448 TCGReg cmp1, TCGReg cmp2, 1457 tcg_out_movcond_br1(s, cond, ret, cmp1, cmp2, val1, c_val1); 1462 tcg_out_movcond_br1(s, cond, ret, cmp1, cmp2, val2, c_val2); 1466 tmp = (ret == cmp1 || ret == cmp2 ? TCG_REG_TMP1 : ret); 1472 tcg_out_movcond_br1(s, cond, tmp, cmp1, cmp2, val2, c_val2); 1477 TCGReg cmp1, int cmp2, bool c_cmp2, 1484 if (!(cpuinfo & CPUINFO_ZICOND) && (!c_cmp2 || cmp2 [all...] |
/openbmc/linux/arch/m68k/ifpsp060/src/ |
H A D | itest.S | 100 ### cmp2 1983 cmp2.b %d1,DATA(%a6) 2004 cmp2.b %a1,DATA(%a6) 2046 cmp2.b %a1,DATA(%a6) 2067 cmp2.b %d1,DATA(%a6) 2088 cmp2.b %a1,DATA(%a6) 2110 cmp2.w %d1,DATA(%a6) 2131 cmp2.w %a1,DATA(%a6) 2173 cmp2.w %a1,DATA(%a6) 2194 cmp2.w %d1,DATA(%a6) [all …]
|
/openbmc/qemu/target/sh4/ |
H A D | translate.c | 744 TCGv cmp2 = tcg_temp_new(); in _decode_opc() local 745 tcg_gen_xor_i32(cmp2, REG(B7_4), REG(B11_8)); in _decode_opc() 746 tcg_gen_subi_i32(cmp1, cmp2, 0x01010101); in _decode_opc() 747 tcg_gen_andc_i32(cmp1, cmp1, cmp2); in _decode_opc()
|
/openbmc/linux/fs/ext4/ |
H A D | extents.c | 6018 ext4_fsblk_t cmp1, cmp2; in ext4_ext_replay_set_iblocks() local 6085 cmp1 = cmp2 = 0; in ext4_ext_replay_set_iblocks() 6090 cmp2 = path2[i].p_bh ? in ext4_ext_replay_set_iblocks() 6092 if (cmp1 != cmp2 && cmp2 != 0) in ext4_ext_replay_set_iblocks()
|
/openbmc/linux/fs/btrfs/ |
H A D | tree-log.c | 702 struct btrfs_file_extent_item cmp2; in replay_one_extent() local 712 read_extent_buffer(leaf, &cmp2, (unsigned long)existing, in replay_one_extent() 713 sizeof(cmp2)); in replay_one_extent() 719 if (memcmp(&cmp1, &cmp2, sizeof(cmp1)) == 0) { in replay_one_extent()
|
/openbmc/linux/lib/zstd/compress/ |
H A D | zstd_lazy.c | 1047 const uint8x16_t cmp2 = vceqq_u8(chunk.val[2], dup); in ZSTD_row_getMatchMask() local 1051 const uint8x16_t t1 = vsriq_n_u8(cmp3, cmp2, 1); in ZSTD_row_getMatchMask()
|