Home
last modified time | relevance | path

Searched refs:MIN_EXP (Results 1 – 2 of 2) sorted by relevance

/third_party/ffmpeg/libavutil/
Dsoftfloat.h30 #define MIN_EXP -149 macro
39 static const SoftFloat FLOAT_0 = { 0, MIN_EXP}; ///< 0.0
46 static const SoftFloat FLOAT_MIN = { 0x20000000, MIN_EXP};
69 if(a.exp < MIN_EXP){ in av_normalize_sf()
70 a.exp = MIN_EXP; in av_normalize_sf()
74 a.exp= MIN_EXP; in av_normalize_sf()
107 if (!a.mant || a.exp < MIN_EXP) in av_mul_sf()
127 if (!a.mant || a.exp < MIN_EXP) in av_div_sf()
212 val.exp = MIN_EXP; in av_sqrt_sf()
/third_party/ffmpeg/libavutil/tests/
Dsoftfloat.c103 sf1 = (SoftFloat){ 0x20000000, MIN_EXP }; in main()
107 sf1 = (SoftFloat){ 0x20000000, MIN_EXP }; in main()