fsqrts.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.fsqrts.c 1.6 05/17/01 18:14:22 cort
  3.  */
  4. #include <linux/types.h>
  5. #include <linux/errno.h>
  6. #include <asm/uaccess.h>
  7. #include "soft-fp.h"
  8. #include "double.h"
  9. #include "single.h"
  10. int
  11. fsqrts(void *frD, void *frB)
  12. {
  13. FP_DECL_D(B);
  14. FP_DECL_D(R);
  15. int ret = 0;
  16. #ifdef DEBUG
  17. printk("%s: %p %p %p %pn", __FUNCTION__, frD, frB);
  18. #endif
  19. __FP_UNPACK_D(B, frB);
  20. #ifdef DEBUG
  21. printk("B: %ld %lu %lu %ld (%ld)n", B_s, B_f1, B_f0, B_e, B_c);
  22. #endif
  23. if (B_s && B_c != FP_CLS_ZERO)
  24. ret |= EFLAG_VXSQRT;
  25. if (B_c == FP_CLS_NAN)
  26. ret |= EFLAG_VXSNAN;
  27. FP_SQRT_D(R, B);
  28. #ifdef DEBUG
  29. printk("R: %ld %lu %lu %ld (%ld)n", R_s, R_f1, R_f0, R_e, R_c);
  30. #endif
  31. return (ret | __FP_PACK_DS(frD, R));
  32. }