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

Go to the source code of this file.

Functions

uint32_t softfloat_shiftRightJam32 (uint32_t a, uint_fast16_t dist)
 

Function Documentation

◆ softfloat_shiftRightJam32()

uint32_t softfloat_shiftRightJam32 ( uint32_t a,
uint_fast16_t dist )

Definition at line 42 of file s_shiftRightJam32.c.

43{
44
45 return
46 (dist < 31) ? a>>dist | ((uint32_t) (a<<(-dist & 31)) != 0) : (a != 0);
47
48}
const GenericPointer< typename T::ValueType > T2 T::AllocatorType & a
Definition pointer.h:1181
unsigned int uint32_t
Definition stdint.h:126
Here is the caller graph for this function: