Home | History | Annotate | Download | only in ppc32

Lines Matching defs:RES

462 #define RES (dp_test ? res_dp : res_sp)
487 return isnan(RES);
489 return isinf(RES);
491 return !res_is_negative && (fpclassify(RES) == FP_ZERO);
494 return isnan(RES);
497 return res_is_negative && (fpclassify(RES) == FP_ZERO);
1159 Bool res = check_estimate(DOUBLE_TEST, is_sqrt, i + j, (isLE && is_scalar) ? 1: j);
1160 printf(" ==> %s)", res ? "PASS" : "FAIL");
1162 printf(" ==> %s (res=%016llx)", res ? "PASS" : "FAIL", dst_dp[j]);
1218 Bool res = check_estimate(SINGLE_TEST, is_sqrt, i + j, (isLE && is_scalar) ? 3 : j);
1219 printf(" ==> %s)", res ? "PASS" : "FAIL");
1573 uint64_t res;
1576 __asm__ __volatile__ ("popcntw %0, %1" : "=r" (res): "r" (r14));
1577 printf("popcntw: 0x%llx => 0x%016llx\n", (unsigned long long)src, (unsigned long long)res);
1579 uint32_t res;
1582 __asm__ __volatile__ ("popcntw %0, %1" : "=r" (res): "r" (r14));
1583 printf("popcntw: 0x%x => 0x%08x\n", src, (int)res);