Home
last modified time | relevance | path

Searched refs:negShiftCount (Results 1 – 2 of 2) sorted by relevance

/freebsd-13.1/tools/test/testfloat/
H A Dslowfloat-32.c51 int8 negShiftCount; in shortShift64Left() local
53 negShiftCount = ( - shiftCount & 31 ); in shortShift64Left()
54 a.a0 = ( a.a0<<shiftCount ) | ( a.a1>>negShiftCount ); in shortShift64Left()
62 int8 negShiftCount; in shortShift64RightJamming() local
65 negShiftCount = ( - shiftCount & 31 ); in shortShift64RightJamming()
66 extra = a.a1<<negShiftCount; in shortShift64RightJamming()
67 a.a1 = ( a.a0<<negShiftCount ) | ( a.a1>>shiftCount ) | ( extra != 0 ); in shortShift64RightJamming()
H A Dslowfloat-64.c54 int8 negShiftCount; in shortShift128Left() local
56 negShiftCount = ( - shiftCount & 63 ); in shortShift128Left()
57 a.a0 = ( a.a0<<shiftCount ) | ( a.a1>>negShiftCount ); in shortShift128Left()
65 int8 negShiftCount; in shortShift128RightJamming() local
68 negShiftCount = ( - shiftCount & 63 ); in shortShift128RightJamming()
69 extra = a.a1<<negShiftCount; in shortShift128RightJamming()
70 a.a1 = ( a.a0<<negShiftCount ) | ( a.a1>>shiftCount ) | ( extra != 0 ); in shortShift128RightJamming()