MCPcopy Create free account
hub / github.com/danoon2/Boxedwine / softfloat_shiftRightJam64

Function softfloat_shiftRightJam64

lib/softfloat/source/s_shiftRightJam64.c:42–48  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

40#ifndef softfloat_shiftRightJam64
41
42uint64_t softfloat_shiftRightJam64( uint64_t a, uint_fast32_t dist )
43{
44
45 return
46 (dist < 63) ? a>>dist | ((uint64_t) (a<<(-dist & 63)) != 0) : (a != 0);
47
48}
49
50#endif
51

Callers 3

softfloat_roundPackToF64Function · 0.70
extF80_to_i32Function · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected