Home | History | Annotate | Download | only in ppc64

Lines Matching refs:RES

427 #define RES (dp_test ? res_dp : res_sp)
452 return isnan(RES);
454 return isinf(RES);
456 return !res_is_negative && (fpclassify(RES) == FP_ZERO);
459 return isnan(RES);
462 return res_is_negative && (fpclassify(RES) == FP_ZERO);
1120 Bool res = check_estimate(DOUBLE_TEST, is_sqrt, i + j, j);
1121 printf(" ==> %s)", res ? "PASS" : "FAIL");
1123 printf(" ==> %s (res=%016llx)", res ? "PASS" : "FAIL", dst_dp[j]);
1172 Bool res = check_estimate(SINGLE_TEST, is_sqrt, i + j, j);
1173 printf(" ==> %s)", res ? "PASS" : "FAIL");
1524 uint64_t res;
1527 __asm__ __volatile__ ("popcntw %0, %1" : "=r" (res): "r" (r14));
1528 printf("popcntw: 0x%llx => 0x%016llx\n", (unsigned long long)src, (unsigned long long)res);
1530 uint32_t res;
1533 __asm__ __volatile__ ("popcntw %0, %1" : "=r" (res): "r" (r14));
1534 printf("popcntw: 0x%x => 0x%08x\n", src, (int)res);