Home
last modified time | relevance | path

Searched refs:cmp2 (Results 1 – 19 of 19) sorted by relevance

/OK3568_Linux_fs/kernel/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()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/
H A Dtyped-splay-tree.h342 int cmp1, cmp2; in splay_tree_splay() local
362 cmp2 = (*comp) (key, c->key); in splay_tree_splay()
363 if (cmp2 == 0 in splay_tree_splay()
364 || (cmp2 < 0 && !c->left) in splay_tree_splay()
365 || (cmp2 > 0 && !c->right)) in splay_tree_splay()
375 if (cmp1 < 0 && cmp2 < 0) in splay_tree_splay()
380 else if (cmp1 > 0 && cmp2 > 0) in splay_tree_splay()
385 else if (cmp1 < 0 && cmp2 > 0) in splay_tree_splay()
390 else if (cmp1 > 0 && cmp2 < 0) in splay_tree_splay()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/plugin/include/
H A Dtyped-splay-tree.h342 int cmp1, cmp2; in splay_tree_splay() local
362 cmp2 = (*comp) (key, c->key); in splay_tree_splay()
363 if (cmp2 == 0 in splay_tree_splay()
364 || (cmp2 < 0 && !c->left) in splay_tree_splay()
365 || (cmp2 > 0 && !c->right)) in splay_tree_splay()
375 if (cmp1 < 0 && cmp2 < 0) in splay_tree_splay()
380 else if (cmp1 > 0 && cmp2 > 0) in splay_tree_splay()
385 else if (cmp1 < 0 && cmp2 > 0) in splay_tree_splay()
390 else if (cmp1 > 0 && cmp2 < 0) in splay_tree_splay()
/OK3568_Linux_fs/kernel/arch/m68k/ifpsp060/
H A Dilsp.doc35 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 Disp.doc44 cmp2
/OK3568_Linux_fs/kernel/drivers/gpu/drm/msm/hdmi/
H A Dhdmi_phy_8996.c649 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()
/OK3568_Linux_fs/kernel/arch/m68k/ifpsp060/src/
H A Ditest.S100 ### 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 …]
/OK3568_Linux_fs/external/rkwifibt/drivers/rtl8821cs/os_dep/
H A Dosdep_service.c1838 int rtw_sptime_cmp(const sysptime cmp1, const sysptime cmp2) in rtw_sptime_cmp() argument
1842 return ktime_compare(cmp1, cmp2); in rtw_sptime_cmp()
1844 if (cmp1.tv64 < cmp2.tv64) in rtw_sptime_cmp()
1846 if (cmp1.tv64 > cmp2.tv64) in rtw_sptime_cmp()
1855 bool rtw_sptime_eql(const sysptime cmp1, const sysptime cmp2) in rtw_sptime_eql() argument
1858 return rtw_sptime_cmp(cmp1, cmp2) == 0; in rtw_sptime_eql()
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8821cs/os_dep/
H A Dosdep_service.c1675 int rtw_sptime_cmp(const sysptime cmp1, const sysptime cmp2) in rtw_sptime_cmp() argument
1679 return ktime_compare(cmp1, cmp2); in rtw_sptime_cmp()
1681 if (cmp1.tv64 < cmp2.tv64) in rtw_sptime_cmp()
1683 if (cmp1.tv64 > cmp2.tv64) in rtw_sptime_cmp()
1692 bool rtw_sptime_eql(const sysptime cmp1, const sysptime cmp2) in rtw_sptime_eql() argument
1695 return rtw_sptime_cmp(cmp1, cmp2) == 0; in rtw_sptime_eql()
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8723cs/os_dep/
H A Dosdep_service.c1674 int rtw_sptime_cmp(const sysptime cmp1, const sysptime cmp2) in rtw_sptime_cmp() argument
1678 return ktime_compare(cmp1, cmp2); in rtw_sptime_cmp()
1680 if (cmp1.tv64 < cmp2.tv64) in rtw_sptime_cmp()
1682 if (cmp1.tv64 > cmp2.tv64) in rtw_sptime_cmp()
1691 bool rtw_sptime_eql(const sysptime cmp1, const sysptime cmp2) in rtw_sptime_eql() argument
1694 return rtw_sptime_cmp(cmp1, cmp2) == 0; in rtw_sptime_eql()
/OK3568_Linux_fs/external/rkwifibt/drivers/rtl8723ds/os_dep/
H A Dosdep_service.c1674 int rtw_sptime_cmp(const sysptime cmp1, const sysptime cmp2) in rtw_sptime_cmp() argument
1678 return ktime_compare(cmp1, cmp2); in rtw_sptime_cmp()
1680 if (cmp1.tv64 < cmp2.tv64) in rtw_sptime_cmp()
1682 if (cmp1.tv64 > cmp2.tv64) in rtw_sptime_cmp()
1691 bool rtw_sptime_eql(const sysptime cmp1, const sysptime cmp2) in rtw_sptime_eql() argument
1694 return rtw_sptime_cmp(cmp1, cmp2) == 0; in rtw_sptime_eql()
/OK3568_Linux_fs/external/rkwifibt/drivers/rtl8822cs/os_dep/
H A Dosdep_service.c1870 int rtw_sptime_cmp(const sysptime cmp1, const sysptime cmp2) in rtw_sptime_cmp() argument
1874 return ktime_compare(cmp1, cmp2); in rtw_sptime_cmp()
1876 if (cmp1.tv64 < cmp2.tv64) in rtw_sptime_cmp()
1878 if (cmp1.tv64 > cmp2.tv64) in rtw_sptime_cmp()
1887 bool rtw_sptime_eql(const sysptime cmp1, const sysptime cmp2) in rtw_sptime_eql() argument
1890 return rtw_sptime_cmp(cmp1, cmp2) == 0; in rtw_sptime_eql()
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8723cs/include/
H A Dosdep_service.h392 int rtw_sptime_cmp(const sysptime cmp1, const sysptime cmp2);
393 bool rtw_sptime_eql(const sysptime cmp1, const sysptime cmp2);
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8821cs/include/
H A Dosdep_service.h393 int rtw_sptime_cmp(const sysptime cmp1, const sysptime cmp2);
394 bool rtw_sptime_eql(const sysptime cmp1, const sysptime cmp2);
/OK3568_Linux_fs/external/rkwifibt/drivers/rtl8723ds/include/
H A Dosdep_service.h392 int rtw_sptime_cmp(const sysptime cmp1, const sysptime cmp2);
393 bool rtw_sptime_eql(const sysptime cmp1, const sysptime cmp2);
/OK3568_Linux_fs/external/rkwifibt/drivers/rtl8821cs/include/
H A Dosdep_service.h397 int rtw_sptime_cmp(const sysptime cmp1, const sysptime cmp2);
398 bool rtw_sptime_eql(const sysptime cmp1, const sysptime cmp2);
/OK3568_Linux_fs/external/rkwifibt/drivers/rtl8822cs/include/
H A Dosdep_service.h400 int rtw_sptime_cmp(const sysptime cmp1, const sysptime cmp2);
401 bool rtw_sptime_eql(const sysptime cmp1, const sysptime cmp2);
/OK3568_Linux_fs/kernel/fs/ext4/
H A Dextents.c5989 ext4_fsblk_t cmp1, cmp2; in ext4_ext_replay_set_iblocks() local
6063 cmp1 = cmp2 = 0; in ext4_ext_replay_set_iblocks()
6068 cmp2 = path2[i].p_bh ? in ext4_ext_replay_set_iblocks()
6070 if (cmp1 != cmp2 && cmp2 != 0) in ext4_ext_replay_set_iblocks()
/OK3568_Linux_fs/kernel/fs/btrfs/
H A Dtree-log.c631 struct btrfs_file_extent_item cmp2; in replay_one_extent() local
641 read_extent_buffer(leaf, &cmp2, (unsigned long)existing, in replay_one_extent()
642 sizeof(cmp2)); in replay_one_extent()
648 if (memcmp(&cmp1, &cmp2, sizeof(cmp1)) == 0) { in replay_one_extent()