LL_MULT_LS

Multiply a 64-bit fractional value with a 32-bit fractional value, generating a 64-bit result.

Prototype

  Word64 __LL_mult_ls(Word64 linp1, Word32 sinp2)  
Example
long long s1 = 0x00000000A0030000;

long long s2 = 0x0000B005;

long long result;

result = LL_LL_msu (s1, s2);

// Expected value of result: 0x00000000A0030000 * 0x0000B005 = 0x0000DC0A601E0000