Searched refs:negCount (Results 1 – 2 of 2) sorted by relevance
193 int8_t negCount = ( - count ) & 63; in shift64ExtraRightJamming() local200 z1 = ( a0<<negCount ) | ( a1 != 0 ); in shift64ExtraRightJamming()230 int8_t negCount = ( - count ) & 63; in shift128Right() local237 z1 = ( a0<<negCount ) | ( a1>>count ); in shift128Right()265 int8_t negCount = ( - count ) & 63; in shift128RightJamming() local272 z1 = ( a0<<negCount ) | ( a1>>count ) | ( ( a1<<negCount ) != 0 ); in shift128RightJamming()280 z1 = ( a0>>( count & 63 ) ) | ( ( ( a0<<negCount ) | a1 ) != 0 ); in shift128RightJamming()323 int8_t negCount = ( - count ) & 63; in shift128ExtraRightJamming() local332 z2 = a1<<negCount; in shift128ExtraRightJamming()333 z1 = ( a0<<negCount ) | ( a1>>count ); in shift128ExtraRightJamming()[all …]
108 int8 negCount = ( - count ) & 63;115 z1 = ( a0<<negCount ) | ( a1 != 0 );146 int8 negCount = ( - count ) & 63;153 z1 = ( a0<<negCount ) | ( a1>>count );182 int8 negCount = ( - count ) & 63;189 z1 = ( a0<<negCount ) | ( a1>>count ) | ( ( a1<<negCount ) != 0 );197 z1 = ( a0>>( count & 63 ) ) | ( ( ( a0<<negCount ) | a1 ) != 0 );241 int8 negCount = ( - count ) & 63;250 z2 = a1<<negCount;251 z1 = ( a0<<negCount ) | ( a1>>count );[all …]