Searched refs:this_cr (Results 1 – 1 of 1) sorted by relevance
159 inline int cr_overflow_set(unsigned this_cr) { in cr_overflow_set() argument160 return (this_cr & CRFIELD_BIT3); in cr_overflow_set()163 inline int cr_zero_set(unsigned this_cr) { in cr_zero_set() argument164 return (this_cr & CRFIELD_BIT2); in cr_zero_set()167 inline int cr_positive_set(unsigned this_cr) { in cr_positive_set() argument168 return (this_cr & CRFIELD_BIT1); in cr_positive_set()171 inline int cr_negative_set(unsigned this_cr) { in cr_negative_set() argument172 return (this_cr & CRFIELD_BIT0); in cr_negative_set()178 inline static void __dissect_cr(unsigned this_cr) { in __dissect_cr() argument179 if (cr_negative_set(this_cr)) in __dissect_cr()[all …]