Home
last modified time | relevance | path

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

/openbmc/qemu/include/fpu/
H A Dsoftfloat-macros.h193 int8_t negCount = ( - count ) & 63; in shift64ExtraRightJamming() local
200 z1 = ( a0<<negCount ) | ( a1 != 0 ); in shift64ExtraRightJamming()
230 int8_t negCount = ( - count ) & 63; in shift128Right() local
237 z1 = ( a0<<negCount ) | ( a1>>count ); in shift128Right()
265 int8_t negCount = ( - count ) & 63; in shift128RightJamming() local
272 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() local
332 z2 = a1<<negCount; in shift128ExtraRightJamming()
333 z1 = ( a0<<negCount ) | ( a1>>count ); in shift128ExtraRightJamming()
[all …]
/openbmc/linux/arch/arm/nwfpe/
H A Dsoftfloat-macros108 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 …]