Wire Sysio Wire Sysion 1.0.0
Loading...
Searching...
No Matches
f64_mulAdd.c File Reference
#include <stdint.h>
#include "platform.h"
#include "internals.h"
#include "softfloat.h"
Include dependency graph for f64_mulAdd.c:

Go to the source code of this file.

Functions

float64_t f64_mulAdd (float64_t a, float64_t b, float64_t c)
 

Function Documentation

◆ f64_mulAdd()

float64_t f64_mulAdd ( float64_t a,
float64_t b,
float64_t c )

Definition at line 42 of file f64_mulAdd.c.

43{
44 union ui64_f64 uA;
45 uint_fast64_t uiA;
46 union ui64_f64 uB;
47 uint_fast64_t uiB;
48 union ui64_f64 uC;
49 uint_fast64_t uiC;
50
51 uA.f = a;
52 uiA = uA.ui;
53 uB.f = b;
54 uiB = uB.ui;
55 uC.f = c;
56 uiC = uC.ui;
57 return softfloat_mulAddF64( uiA, uiB, uiC, 0 );
58
59}
const GenericPointer< typename T::ValueType > T2 T::AllocatorType & a
Definition pointer.h:1181
float64_t softfloat_mulAddF64(uint_fast64_t, uint_fast64_t, uint_fast64_t, uint_fast8_t)
uint64_t uint_fast64_t
Definition stdint.h:157
float64_t f
Definition internals.h:47
Here is the call graph for this function: