Lines Matching defs:tmp

439                   double tmp;
440 memcpy(&tmp, &src[sidx].f, sizeof(tmp));
441 dst[didx].f = tmp;
445 uint64_t tmp;
446 memcpy(&tmp, &src[sidx].u, sizeof(tmp));
447 dst[didx].f = tmp;
451 uint64_t tmp;
452 memcpy(&tmp, &src[sidx].i, sizeof(tmp));
453 dst[didx].f = tmp;
470 double tmp = src[sidx].u;
471 memcpy(&dst[didx].f, &tmp, sizeof(tmp));
477 double tmp = src[sidx].i;
478 memcpy(&dst[didx].f, &tmp, sizeof(tmp));
482 double tmp = src[sidx].i ? 1.0 : 0.0;
483 memcpy(&dst[didx].f, &tmp, sizeof(tmp));
487 double tmp = src[sidx].f;
488 memcpy(&dst[didx].f, &tmp, sizeof(tmp));
493 double tmp;
495 tmp = tmpu;
496 memcpy(&dst[didx].f, &tmp, sizeof(tmp));
501 double tmp;
503 tmp = tmpi;
504 memcpy(&dst[didx].f, &tmp, sizeof(tmp));
546 double tmp;
547 memcpy(&tmp, &src[sidx].f, sizeof(tmp));
548 dst[didx].i = (int64_t) round(tmp);
552 uint64_t tmp;
553 memcpy(&tmp, &src[sidx].u, sizeof(tmp));
554 dst[didx].i = tmp;
558 int64_t tmp;
559 memcpy(&tmp, &src[sidx].i, sizeof(tmp));
560 dst[didx].i = tmp;
598 double tmp;
599 memcpy(&tmp, &src[sidx].f, sizeof(tmp));
600 dst[didx].u = tmp < 0.0 ? 0u : (uint32_t) round(tmp);
604 uint64_t tmp;
605 memcpy(&tmp, &src[sidx].u, sizeof(tmp));
606 dst[didx].i = MIN2(tmp, INT_MAX);
610 int64_t tmp;
611 memcpy(&tmp, &src[sidx].i, sizeof(tmp));
612 dst[didx].i = MAX2(tmp, 0);
623 uint64_t tmp = src[sidx].u;
624 memcpy(&dst[didx].u, &tmp, sizeof(tmp));
630 int64_t tmp = src[sidx].i;
631 memcpy(&dst[didx].u, &tmp, sizeof(tmp));
635 int64_t tmp = src[sidx].i ? 1.0f : 0.0f;
636 memcpy(&dst[didx].u, &tmp, sizeof(tmp));
642 int64_t tmp = MIN2(u64, INT_MAX);
643 memcpy(&dst[didx].u, &tmp, sizeof(tmp));
647 int64_t tmp = (int64_t) roundf(src[sidx].f);
648 memcpy(&dst[didx].u, &tmp, sizeof(tmp));
653 int64_t tmp = (int64_t) roundf(f);
654 memcpy(&dst[didx].u, &tmp, sizeof(tmp));
660 int64_t tmp = (int64_t) round(d);
661 memcpy(&dst[didx].u, &tmp, sizeof(tmp));
673 uint64_t tmp = src[sidx].u;
674 memcpy(&dst[didx].u, &tmp, sizeof(tmp));
680 int64_t tmp = MAX2(src[sidx].i, 0);
681 memcpy(&dst[didx].u, &tmp, sizeof(tmp));
685 int64_t tmp = src[sidx].i ? 1.0f : 0.0f;
686 memcpy(&dst[didx].u, &tmp, sizeof(tmp));
692 uint64_t tmp = MAX2(i64, 0);
693 memcpy(&dst[didx].u, &tmp, sizeof(tmp));
697 uint64_t tmp = src[sidx].f < 0.0f ?
699 memcpy(&dst[didx].u, &tmp, sizeof(tmp));
704 uint64_t tmp = f < 0.0f ? 0ull : (uint64_t) roundf(f);
705 memcpy(&dst[didx].u, &tmp, sizeof(tmp));
711 uint64_t tmp = (d < 0.0) ? 0ull : (uint64_t) round(d);
712 memcpy(&dst[didx].u, &tmp, sizeof(tmp));
759 uint64_t tmp;
760 memcpy(&tmp, &v[i * 2].u, sizeof(tmp));
761 printf("%" PRIu64 " ", tmp);
765 int64_t tmp;
766 memcpy(&tmp, &v[i * 2].u, sizeof(tmp));
767 printf("%" PRId64 " ", tmp);
774 double tmp;
775 memcpy(&tmp, &v[i * 2].f, sizeof(tmp));
776 printf("%g ", tmp);