Searched refs:negShiftCount (Results 1 – 2 of 2) sorted by relevance
51 int8 negShiftCount; in shortShift64Left() local53 negShiftCount = ( - shiftCount & 31 ); in shortShift64Left()54 a.a0 = ( a.a0<<shiftCount ) | ( a.a1>>negShiftCount ); in shortShift64Left()62 int8 negShiftCount; in shortShift64RightJamming() local65 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()
54 int8 negShiftCount; in shortShift128Left() local56 negShiftCount = ( - shiftCount & 63 ); in shortShift128Left()57 a.a0 = ( a.a0<<shiftCount ) | ( a.a1>>negShiftCount ); in shortShift128Left()65 int8 negShiftCount; in shortShift128RightJamming() local68 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()