Home
last modified time | relevance | path

Searched refs:int_fast32_t (Results 1 – 25 of 56) sorted by relevance

123

/optee_os/lib/libutils/isoc/arch/arm/softfloat/source/include/
A Dsoftfloat.h134 int_fast32_t f32_to_i32( float32_t, uint_fast8_t, bool );
138 int_fast32_t f32_to_i32_r_minMag( float32_t, bool );
168 int_fast32_t f64_to_i32( float64_t, uint_fast8_t, bool );
172 int_fast32_t f64_to_i32_r_minMag( float64_t, bool );
209 int_fast32_t extF80_to_i32( extFloat80_t, uint_fast8_t, bool );
213 int_fast32_t extF80_to_i32_r_minMag( extFloat80_t, bool );
239 int_fast32_t extF80M_to_i32_r_minMag( const extFloat80_t *, bool );
267 int_fast32_t f128_to_i32( float128_t, uint_fast8_t, bool );
271 int_fast32_t f128_to_i32_r_minMag( float128_t, bool );
294 int_fast32_t f128M_to_i32( const float128_t *, uint_fast8_t, bool );
[all …]
A Dinternals.h73 int_fast32_t
139 struct exp32_sig64 { int_fast32_t exp; uint64_t sig; };
144 bool, int_fast32_t, uint_fast64_t, uint_fast64_t, uint_fast8_t );
147 bool, int_fast32_t, uint_fast64_t, uint_fast64_t, uint_fast8_t );
159 #define expF128UI64( a64 ) ((int_fast32_t) ((a64)>>48) & 0x7FFF)
165 struct exp32_sig128 { int_fast32_t exp; struct uint128 sig; };
171 bool, int_fast32_t, uint_fast64_t, uint_fast64_t, uint_fast64_t );
174 bool, int_fast32_t, uint_fast64_t, uint_fast64_t );
/optee_os/lib/libutils/isoc/arch/arm/softfloat/source/
A Df128_to_i32_r_minMag.c44 int_fast32_t f128_to_i32_r_minMag( float128_t a, bool exact ) in f128_to_i32_r_minMag()
48 int_fast32_t exp; in f128_to_i32_r_minMag()
50 int_fast32_t shiftCount; in f128_to_i32_r_minMag()
52 int_fast32_t absZ; in f128_to_i32_r_minMag()
A DextF80_to_i32_r_minMag.c44 int_fast32_t extF80_to_i32_r_minMag( extFloat80_t a, bool exact ) in extF80_to_i32_r_minMag()
48 int_fast32_t exp; in extF80_to_i32_r_minMag()
50 int_fast32_t shiftCount; in extF80_to_i32_r_minMag()
52 int_fast32_t absZ; in extF80_to_i32_r_minMag()
A DextF80_to_i32.c44 int_fast32_t
50 int_fast32_t exp; in extF80_to_i32()
52 int_fast32_t shiftCount; in extF80_to_i32()
A Df128_to_i32.c44 int_fast32_t f128_to_i32( float128_t a, uint_fast8_t roundingMode, bool exact ) in f128_to_i32()
49 int_fast32_t exp; in f128_to_i32()
51 int_fast32_t shiftCount; in f128_to_i32()
A Ds_addMagsExtF80.c54 int_fast32_t expA; in softfloat_addMagsExtF80()
56 int_fast32_t expB; in softfloat_addMagsExtF80()
58 int_fast32_t expDiff; in softfloat_addMagsExtF80()
62 int_fast32_t expZ; in softfloat_addMagsExtF80()
A Ds_subMagsExtF80.c54 int_fast32_t expA; in softfloat_subMagsExtF80()
56 int_fast32_t expB; in softfloat_subMagsExtF80()
58 int_fast32_t expDiff; in softfloat_subMagsExtF80()
61 int_fast32_t expZ; in softfloat_subMagsExtF80()
A Ds_addMagsF128.c53 int_fast32_t expA; in softfloat_addMagsF128()
55 int_fast32_t expB; in softfloat_addMagsF128()
57 int_fast32_t expDiff; in softfloat_addMagsF128()
59 int_fast32_t expZ; in softfloat_addMagsF128()
A DextF80_to_ui32.c50 int_fast32_t exp; in extF80_to_ui32()
52 int_fast32_t shiftCount; in extF80_to_ui32()
A DextF80_to_ui64_r_minMag.c48 int_fast32_t exp; in extF80_to_ui64_r_minMag()
50 int_fast32_t shiftCount; in extF80_to_ui64_r_minMag()
A Df128_to_ui32.c50 int_fast32_t exp; in f128_to_ui32()
52 int_fast32_t shiftCount; in f128_to_ui32()
A DextF80_to_ui32_r_minMag.c48 int_fast32_t exp; in extF80_to_ui32_r_minMag()
50 int_fast32_t shiftCount; in extF80_to_ui32_r_minMag()
A Df128_to_ui32_r_minMag.c48 int_fast32_t exp; in f128_to_ui32_r_minMag()
50 int_fast32_t shiftCount; in f128_to_ui32_r_minMag()
A Ds_roundPackToI32.c44 int_fast32_t
52 int_fast32_t z; in softfloat_roundPackToI32()
A Df32_to_i32_r_minMag.c44 int_fast32_t f32_to_i32_r_minMag( float32_t a, bool exact ) in f32_to_i32_r_minMag()
52 int_fast32_t absZ; in f32_to_i32_r_minMag()
A Df64_to_i32_r_minMag.c44 int_fast32_t f64_to_i32_r_minMag( float64_t a, bool exact ) in f64_to_i32_r_minMag()
52 int_fast32_t absZ; in f64_to_i32_r_minMag()
A DextF80_to_i64.c50 int_fast32_t exp; in extF80_to_i64()
52 int_fast32_t shiftCount; in extF80_to_i64()
A DextF80_to_i64_r_minMag.c48 int_fast32_t exp; in extF80_to_i64_r_minMag()
50 int_fast32_t shiftCount; in extF80_to_i64_r_minMag()
A DextF80M_to_i32.c46 int_fast32_t
57 int_fast32_t
A Df128M_to_i32.c46 int_fast32_t
56 int_fast32_t
A Df128_to_f32.c50 int_fast32_t exp; in f128_to_f32()
77 if ( sizeof (int_fast16_t) < sizeof (int_fast32_t) ) { in f128_to_f32()
A Ds_subMagsF128.c54 int_fast32_t expA; in softfloat_subMagsF128()
56 int_fast32_t expB; in softfloat_subMagsF128()
58 int_fast32_t expDiff, expZ; in softfloat_subMagsF128()
A DextF80_mul.c51 int_fast32_t expA; in extF80_mul()
57 int_fast32_t expB; in extF80_mul()
62 int_fast32_t expZ; in extF80_mul()
A DextF80_to_f32.c51 int_fast32_t exp; in extF80_to_f32()
78 if ( sizeof (int_fast16_t) < sizeof (int_fast32_t) ) { in extF80_to_f32()

Completed in 31 milliseconds

123