ae2f_docs
|
Here, float will be treated as bit vector with four attributes: More...
#include "./Float.auto.h"
Go to the source code of this file.
Typedefs | |
typedef ae2f_float | ae2f_float_t |
Here, float will be treated as bit vector with four attributes:
sign:
> Whether it has sign or not.
exp:
> Exponent. It will be considered as unsigned integer,
> Which is the exponent of the [frac]
expbiasp:
> Exponent bias in order to be considered as zero.
> For handling possibly negative values of [exp] (such as 0.5)
> Here, the value of exponent bias is limited with following rules:
frac:
> The actual "value" for floating point.
Following is the expected structure as bit vector:
[frac | exp | sign]
Size of this will be calculated as:
[sign] + [exp] + [frac]
Definition in file Float.h.
typedef ae2f_float ae2f_float_t |