ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/CBOR-XS/ecb.h
(Generate patch)

Comparing CBOR-XS/ecb.h (file contents):
Revision 1.1 by root, Fri Oct 25 23:09:45 2013 UTC vs.
Revision 1.2 by root, Sat Oct 26 10:41:12 2013 UTC

581 || defined _M_IX86 || defined _M_AMD64 || defined _M_IA64 581 || defined _M_IX86 || defined _M_AMD64 || defined _M_IA64
582 #define ECB_STDFP 1 582 #define ECB_STDFP 1
583 #include <string.h> /* for memcpy */ 583 #include <string.h> /* for memcpy */
584#else 584#else
585 #define ECB_STDFP 0 585 #define ECB_STDFP 0
586 #include <math.h> /* for frexp*, ldexp* */
587#endif 586#endif
588 587
589#ifndef ECB_NO_LIBM 588#ifndef ECB_NO_LIBM
589
590 #include <math.h> /* for frexp*, ldexp*, INFINITY, NAN */
591
592 #ifdef NEN
593 #define ECB_NAN NAN
594 #else
595 #define ECB_NAN INFINITY
596 #endif
597
598 /* converts an ieee half/binary16 to a float */
599 ecb_function_ float ecb_binary16_to_float (uint16_t x) ecb_const;
600 ecb_function_ float
601 ecb_binary16_to_float (uint16_t x)
602 {
603 int e = (x >> 10) & 0x1f;
604 int m = x & 0x3ff;
605 float r;
606
607 if (!e ) r = ldexpf (m , -24);
608 else if (e != 31) r = ldexpf (m + 0x400, e - 25);
609 else if (m ) r = ECB_NAN;
610 else r = INFINITY;
611
612 return x & 0x8000 ? -r : r;
613 }
590 614
591 /* convert a float to ieee single/binary32 */ 615 /* convert a float to ieee single/binary32 */
592 ecb_function_ uint32_t ecb_float_to_binary32 (float x) ecb_const; 616 ecb_function_ uint32_t ecb_float_to_binary32 (float x) ecb_const;
593 ecb_function_ uint32_t 617 ecb_function_ uint32_t
594 ecb_float_to_binary32 (float x) 618 ecb_float_to_binary32 (float x)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines