Lines Matching refs:behavior
5 ; Verify that floor(10.1) is folded to 10.0 when the exception behavior is 'ignore'.
16 ; Verify that floor(-10.1) is folded to -11.0 when the exception behavior is not 'ignore'.
28 ; Verify that ceil(10.1) is folded to 11.0 when the exception behavior is 'ignore'.
39 ; Verify that ceil(-10.1) is folded to -10.0 when the exception behavior is not 'ignore'.
51 ; Verify that trunc(10.1) is folded to 10.0 when the exception behavior is 'ignore'.
62 ; Verify that trunc(-10.1) is folded to -10.0 when the exception behavior is NOT 'ignore'.
74 ; Verify that round(10.5) is folded to 11.0 when the exception behavior is 'ignore'.
85 ; Verify that floor(-10.5) is folded to -11.0 when the exception behavior is NOT 'ignore'.
155 ; Verify that trunc(SNAN) is NOT folded if the exception behavior mode is not 'ignore'.
167 ; Verify that trunc(SNAN) is folded to QNAN if the exception behavior mode is 'ignore'.
178 ; Verify that trunc(QNAN) is folded even if the exception behavior mode is not 'ignore'.
190 ; Verify that trunc(+Inf) is folded even if the exception behavior mode is not 'ignore'.
214 ; Verify that rint(10.1) is NOT folded to 10.0 when the exception behavior is 'strict'.
226 ; Verify that rint(10.1) is folded to 10.0 when the exception behavior is not 'strict'.
491 ; Compare with SNAN is NOT folded if the exception behavior mode is not 'ignore'.
514 ; Compare with QNAN is folded for fcmp but is NOT folded for fcmps if the exception behavior mode i…