Searched refs:negShiftCount (Results 1 - 2 of 2) sorted by path

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

Completed in 108 milliseconds