Home
last modified time | relevance | path

Searched refs:aLow (Results 1 – 4 of 4) sorted by relevance

/openbmc/linux/arch/arm/nwfpe/
H A Dsoftfloat-specialize292 bits64 aLow;
296 aLow = a.low & ~ LIT64( 0x4000000000000000 );
299 && (bits64) ( aLow<<1 )
300 && ( a.low == aLow );
H A Dsoftfloat-macros462 bits32 aHigh, aLow, bHigh, bLow;
465 aLow = a;
469 z1 = ( (bits64) aLow ) * bLow;
470 zMiddleA = ( (bits64) aLow ) * bHigh;
/openbmc/qemu/fpu/
H A Dsoftfloat-specialize.c.inc719 uint64_t aLow;
721 aLow = a.low & ~0x4000000000000000ULL;
723 && (aLow << 1)
724 && (a.low == aLow);
747 uint64_t aLow;
749 aLow = a.low & ~UINT64_C(0x4000000000000000);
751 && (uint64_t)(aLow << 1)
752 && (a.low == aLow);
/openbmc/linux/arch/sh/kernel/cpu/sh4/
H A Dsoftfloat.c684 bits32 aHigh, aLow, bHigh, bLow; in mul64To128() local
687 aLow = a; in mul64To128()
691 z1 = ((bits64) aLow) * bLow; in mul64To128()
692 zMiddleA = ((bits64) aLow) * bHigh; in mul64To128()