Kannel: Open Source WAP and SMS gateway
svn-r5336
|
Go to the source code of this file.
Enumerations | |
enum | WsIeee754Result { WS_IEEE754_OK, WS_IEEE754_NAN, WS_IEEE754_POSITIVE_INF, WS_IEEE754_NEGATIVE_INF } |
Functions | |
WsIeee754Result | ws_ieee754_encode_single (double value, unsigned char *buf) |
WsIeee754Result | ws_ieee754_decode_single (unsigned char *buf, double *value_return) |
WsUInt32 | ws_ieee754_single_get_sign (unsigned char *buf) |
WsUInt32 | ws_ieee754_single_get_exp (unsigned char *buf) |
WsUInt32 | ws_ieee754_single_get_mant (unsigned char *buf) |
Variables | |
unsigned char | ws_ieee754_nan [4] |
unsigned char | ws_ieee754_positive_inf [4] |
unsigned char | ws_ieee754_negative_inf [4] |
enum WsIeee754Result |
Enumerator | |
---|---|
WS_IEEE754_OK | |
WS_IEEE754_NAN | |
WS_IEEE754_POSITIVE_INF | |
WS_IEEE754_NEGATIVE_INF |
Definition at line 77 of file wsieee754.h.
WsIeee754Result ws_ieee754_decode_single | ( | unsigned char * | buf, |
double * | value_return | ||
) |
Definition at line 199 of file wsieee754.c.
References WS_IEEE754_NAN, WS_IEEE754_NEGATIVE_INF, WS_IEEE754_OK, WS_IEEE754_POSITIVE_INF, WS_IEEE754_SINGLE_BIAS, ws_ieee754_single_get_exp(), ws_ieee754_single_get_mant(), ws_ieee754_single_get_sign(), and WS_IEEE754_SINGLE_MANT_SIZE.
Referenced by ws_bc_decode().
WsIeee754Result ws_ieee754_encode_single | ( | double | value, |
unsigned char * | buf | ||
) |
Definition at line 94 of file wsieee754.c.
References gw_assert(), WS_IEEE754_NEGATIVE_INF, WS_IEEE754_OK, WS_IEEE754_POSITIVE_INF, WS_IEEE754_SINGLE_BIAS, WS_IEEE754_SINGLE_EXP_MAX, WS_IEEE754_SINGLE_EXP_MIN, and WS_IEEE754_SINGLE_MANT_SIZE.
Referenced by read_float_from_exp(), and ws_bc_encode().
WsUInt32 ws_ieee754_single_get_exp | ( | unsigned char * | buf | ) |
WsUInt32 ws_ieee754_single_get_mant | ( | unsigned char * | buf | ) |
WsUInt32 ws_ieee754_single_get_sign | ( | unsigned char * | buf | ) |
Definition at line 256 of file wsieee754.c.
Referenced by ws_ieee754_decode_single().
unsigned char ws_ieee754_nan[4] |
Definition at line 86 of file wsieee754.c.
Referenced by ws_bc_encode().
unsigned char ws_ieee754_negative_inf[4] |
Definition at line 90 of file wsieee754.c.
Referenced by ws_bc_encode().
unsigned char ws_ieee754_positive_inf[4] |
Definition at line 88 of file wsieee754.c.
Referenced by ws_bc_encode().