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

Go to the source code of this file.

Functions

int softfloat_normExtF80SigM (uint64_t *sigPtr)
 

Function Documentation

◆ softfloat_normExtF80SigM()

int softfloat_normExtF80SigM ( uint64_t * sigPtr)

Definition at line 41 of file s_normExtF80SigM.c.

42{
43 uint64_t sig;
44 int_fast8_t shiftDist;
45
46 sig = *sigPtr;
47 shiftDist = softfloat_countLeadingZeros64( sig );
48 *sigPtr = sig<<shiftDist;
49 return -shiftDist;
50
51}
#define softfloat_countLeadingZeros64
int8_t int_fast8_t
Definition stdint.h:150
unsigned __int64 uint64_t
Definition stdint.h:136
Here is the caller graph for this function: