Searched refs:cmp2 (Results 1 – 5 of 5) sorted by relevance
/linux-4.4.14/include/linux/ |
D | ktime.h | 120 static inline int ktime_equal(const ktime_t cmp1, const ktime_t cmp2) in ktime_equal() argument 122 return cmp1.tv64 == cmp2.tv64; in ktime_equal() 135 static inline int ktime_compare(const ktime_t cmp1, const ktime_t cmp2) in ktime_compare() argument 137 if (cmp1.tv64 < cmp2.tv64) in ktime_compare() 139 if (cmp1.tv64 > cmp2.tv64) in ktime_compare() 151 static inline bool ktime_after(const ktime_t cmp1, const ktime_t cmp2) in ktime_after() argument 153 return ktime_compare(cmp1, cmp2) > 0; in ktime_after() 163 static inline bool ktime_before(const ktime_t cmp1, const ktime_t cmp2) in ktime_before() argument 165 return ktime_compare(cmp1, cmp2) < 0; in ktime_before()
|
/linux-4.4.14/arch/m68k/ifpsp060/ |
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
|
D | isp.doc | 44 cmp2
|
/linux-4.4.14/arch/m68k/ifpsp060/src/ |
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 …]
|
/linux-4.4.14/fs/btrfs/ |
D | tree-log.c | 633 struct btrfs_file_extent_item cmp2; in replay_one_extent() local 643 read_extent_buffer(leaf, &cmp2, (unsigned long)existing, in replay_one_extent() 644 sizeof(cmp2)); in replay_one_extent() 650 if (memcmp(&cmp1, &cmp2, sizeof(cmp1)) == 0) { in replay_one_extent()
|