Home | History | Annotate | Download | only in s390x

Lines Matching full:tcdb

1 /* test data class tests for float, double, long double:  TCEB, TCDB, TCXB */
18 static int tcdb(double f, long long num)
22 asm volatile(" tcdb %1,0(%2)\n"
61 printf("%d", tcdb(+0.0l, 1UL<<i));
62 printf("%d", tcdb(-0.0l, 1UL<<i));
63 printf("%d", tcdb(+2.2l, 1UL<<i));
64 printf("%d", tcdb(-2.2l, 1UL<<i));
65 printf("%d", tcdb(+INFINITY, 1UL<<i));
66 printf("%d", tcdb(-INFINITY, 1UL<<i));
67 printf("%d", tcdb(+NAN, 1UL<<i));
68 printf("%d", tcdb(-NAN, 1UL<<i));
71 printf("%d", tcdb(+0.0, 1UL<<i));
72 printf("%d", tcdb(-0.0, 1UL<<i));
73 printf("%d", tcdb(+2.2, 1UL<<i));
74 printf("%d", tcdb(-2.2, 1UL<<i));
75 printf("%d", tcdb(+INFINITY, 1UL<<i));
76 printf("%d", tcdb(-INFINITY, 1UL<<i));
77 printf("%d", tcdb(+NAN, 1UL<<i));
78 printf("%d", tcdb(-NAN, 1UL<<i));