Searched refs:extFloat80M (Results 1 - 25 of 82) sorted by relevance

1234

/seL4-camkes-master/tools/riscv-pk/softfloat/
H A Dsoftfloat_types.h61 struct extFloat80M { uint64_t signif; uint16_t signExp; }; struct
63 struct extFloat80M { uint16_t signExp; uint64_t signif; }; struct
69 | 'struct extFloat80M'. Type 'extFloat80_t' can be defined as an alias for
70 | 'struct extFloat80M'. Alternatively, if a platform has "native" support
74 | In that case, the 'signif' and 'signExp' fields of 'struct extFloat80M'
78 typedef struct extFloat80M extFloat80_t;
H A Ds_propagateNaNExtF80M.c51 const struct extFloat80M *aSPtr,
52 const struct extFloat80M *bSPtr,
53 struct extFloat80M *zSPtr
H A Ds_tryPropagateNaNExtF80M.c44 const struct extFloat80M *aSPtr,
45 const struct extFloat80M *bSPtr,
46 struct extFloat80M *zSPtr
H A Ds_commonNaNToExtF80M.c50 const struct commonNaN *aPtr, struct extFloat80M *zSPtr )
H A Ds_invalidExtF80M.c41 void softfloat_invalidExtF80M( struct extFloat80M *zSPtr )
H A DextF80M_isSignalingNaN.c46 const struct extFloat80M *aSPtr;
49 aSPtr = (const struct extFloat80M *) aPtr;
H A DextF80_isSignalingNaN.c45 union { struct extFloat80M s; extFloat80_t f; } uA;
H A DextF80M_add.c48 const struct extFloat80M *aSPtr, *bSPtr;
61 aSPtr = (const struct extFloat80M *) aPtr;
62 bSPtr = (const struct extFloat80M *) bPtr;
91 (const struct extFloat80M *) aPtr,
92 (const struct extFloat80M *) bPtr,
93 (struct extFloat80M *) zPtr,
H A DextF80M_sub.c48 const struct extFloat80M *aSPtr, *bSPtr;
61 aSPtr = (const struct extFloat80M *) aPtr;
62 bSPtr = (const struct extFloat80M *) bPtr;
91 (const struct extFloat80M *) aPtr,
92 (const struct extFloat80M *) bPtr,
93 (struct extFloat80M *) zPtr,
H A DextF80M_eq.c57 const struct extFloat80M *aSPtr, *bSPtr;
65 aSPtr = (const struct extFloat80M *) aPtr;
66 bSPtr = (const struct extFloat80M *) bPtr;
H A DextF80M_eq_signaling.c56 const struct extFloat80M *aSPtr, *bSPtr;
64 aSPtr = (const struct extFloat80M *) aPtr;
65 bSPtr = (const struct extFloat80M *) bPtr;
H A Dui32_to_extF80M.c55 struct extFloat80M *zSPtr;
60 zSPtr = (struct extFloat80M *) zPtr;
H A Dui64_to_extF80M.c55 struct extFloat80M *zSPtr;
60 zSPtr = (struct extFloat80M *) zPtr;
H A DextF80_eq.c46 union { struct extFloat80M s; extFloat80_t f; } uA;
49 union { struct extFloat80M s; extFloat80_t f; } uB;
H A DextF80_eq_signaling.c45 union { struct extFloat80M s; extFloat80_t f; } uA;
48 union { struct extFloat80M s; extFloat80_t f; } uB;
H A Di32_to_extF80M.c55 struct extFloat80M *zSPtr;
62 zSPtr = (struct extFloat80M *) zPtr;
H A Di64_to_extF80M.c55 struct extFloat80M *zSPtr;
62 zSPtr = (struct extFloat80M *) zPtr;
H A Dui32_to_extF80.c46 union { struct extFloat80M s; extFloat80_t f; } uZ;
H A Dui64_to_extF80.c46 union { struct extFloat80M s; extFloat80_t f; } uZ;
H A DextF80M_le.c56 const struct extFloat80M *aSPtr, *bSPtr;
65 aSPtr = (const struct extFloat80M *) aPtr;
66 bSPtr = (const struct extFloat80M *) bPtr;
H A DextF80M_le_quiet.c57 const struct extFloat80M *aSPtr, *bSPtr;
66 aSPtr = (const struct extFloat80M *) aPtr;
67 bSPtr = (const struct extFloat80M *) bPtr;
H A DextF80M_lt.c56 const struct extFloat80M *aSPtr, *bSPtr;
65 aSPtr = (const struct extFloat80M *) aPtr;
66 bSPtr = (const struct extFloat80M *) bPtr;
H A DextF80M_lt_quiet.c57 const struct extFloat80M *aSPtr, *bSPtr;
66 aSPtr = (const struct extFloat80M *) aPtr;
67 bSPtr = (const struct extFloat80M *) bPtr;
H A Dinternals.h50 union extF80M_extF80 { struct extFloat80M fM; extFloat80_t f; };
218 const struct extFloat80M *,
219 const struct extFloat80M *,
220 struct extFloat80M *
222 void softfloat_invalidExtF80M( struct extFloat80M * );
228 bool, int32_t, uint32_t *, uint_fast8_t, struct extFloat80M * );
231 bool, int32_t, uint32_t *, uint_fast8_t, struct extFloat80M * );
235 const struct extFloat80M *,
236 const struct extFloat80M *,
237 struct extFloat80M *,
[all...]
H A DextF80M_mul.c61 const struct extFloat80M *aSPtr, *bSPtr;
62 struct extFloat80M *zSPtr;
75 aSPtr = (const struct extFloat80M *) aPtr;
76 bSPtr = (const struct extFloat80M *) bPtr;
77 zSPtr = (struct extFloat80M *) zPtr;

Completed in 87 milliseconds

1234