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

Go to the source code of this file.

Functions

uint64_t softfloat_shiftRightJam64 (uint64_t a, uint_fast32_t dist)
 

Function Documentation

◆ softfloat_shiftRightJam64()

uint64_t softfloat_shiftRightJam64 ( uint64_t a,
uint_fast32_t dist )

Definition at line 42 of file s_shiftRightJam64.c.

43{
44
45 return
46 (dist < 63) ? a>>dist | ((uint64_t) (a<<(-dist & 63)) != 0) : (a != 0);
47
48}
const GenericPointer< typename T::ValueType > T2 T::AllocatorType & a
Definition pointer.h:1181
unsigned __int64 uint64_t
Definition stdint.h:136