Home
last modified time | relevance | path

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

/external/valgrind/none/tests/ppc64/
Dppc64_helpers.h159 inline int cr_overflow_set(unsigned this_cr) { in cr_overflow_set() argument
160 return (this_cr & CRFIELD_BIT3); in cr_overflow_set()
163 inline int cr_zero_set(unsigned this_cr) { in cr_zero_set() argument
164 return (this_cr & CRFIELD_BIT2); in cr_zero_set()
167 inline int cr_positive_set(unsigned this_cr) { in cr_positive_set() argument
168 return (this_cr & CRFIELD_BIT1); in cr_positive_set()
171 inline int cr_negative_set(unsigned this_cr) { in cr_negative_set() argument
172 return (this_cr & CRFIELD_BIT0); in cr_negative_set()
178 inline static void __dissect_cr(unsigned this_cr) { in __dissect_cr() argument
179 if (cr_negative_set(this_cr)) in __dissect_cr()
[all …]