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

Go to the source code of this file.

Functions

struct uint64_extra softfloat_shortShiftRightJam64Extra (uint64_t a, uint64_t extra, uint_fast8_t dist)
 

Function Documentation

◆ softfloat_shortShiftRightJam64Extra()

struct uint64_extra softfloat_shortShiftRightJam64Extra ( uint64_t a,
uint64_t extra,
uint_fast8_t dist )

Definition at line 44 of file s_shortShiftRightJam64Extra.c.

46{
47 struct uint64_extra z;
48
49 z.v = a>>dist;
50 z.extra = a<<(-dist & 63) | (extra != 0);
51 return z;
52
53}
const GenericPointer< typename T::ValueType > T2 T::AllocatorType & a
Definition pointer.h:1181