Searched refs:softfloat_roundPackToF16 (Results 1 - 19 of 19) sorted by relevance

/seL4-camkes-master/tools/riscv-pk/softfloat/
H A Ds_normRoundPackToF16.c54 return softfloat_roundPackToF16( sign, exp, sig<<shiftDist );
H A Dui64_to_f16.c60 return softfloat_roundPackToF16( 0, 0x1C - shiftDist, sig );
H A Di64_to_f16.c66 return softfloat_roundPackToF16( sign, 0x1C - shiftDist, sig );
H A Dui32_to_f16.c61 return softfloat_roundPackToF16( 0, 0x1C - shiftDist, sig );
H A Df32_to_f16.c82 return softfloat_roundPackToF16( sign, exp - 0x71, frac16 | 0x4000 );
H A Df64_to_f16.c82 return softfloat_roundPackToF16( sign, exp - 0x3F1, frac16 | 0x4000 );
H A Di32_to_f16.c67 return softfloat_roundPackToF16( sign, 0x1C - shiftDist, sig );
H A DextF80M_to_f16.c102 return softfloat_roundPackToF16( sign, exp, sig16 );
H A DextF80_to_f16.c88 return softfloat_roundPackToF16( sign, exp, sig16 );
H A Df128M_to_f16.c103 return softfloat_roundPackToF16( sign, exp, frac16 | 0x4000 );
H A Df128_to_f16.c87 return softfloat_roundPackToF16( sign, exp, frac16 | 0x4000 );
H A Ds_roundPackToF16.c44 softfloat_roundPackToF16( bool sign, int_fast16_t exp, uint_fast16_t sig ) function
H A Df16_sqrt.c125 return softfloat_roundPackToF16( 0, expZ, sigZ );
H A Df16_mul.c115 return softfloat_roundPackToF16( signZ, expZ, sigZ );
H A Ds_addMagsF16.c144 return softfloat_roundPackToF16( signZ, expZ, sigZ );
H A Ds_subMagsF16.c150 return softfloat_roundPackToF16( signZ, expZ, sigZ );
H A Df16_div.c160 return softfloat_roundPackToF16( signZ, expZ, sigZ );
H A Ds_mulAddF16.c191 return softfloat_roundPackToF16( signZ, expZ, sigZ );
H A Dinternals.h93 float16_t softfloat_roundPackToF16( bool, int_fast16_t, uint_fast16_t );

Completed in 102 milliseconds