LL_DIV

Division of one 64-bit fractional value and one 32-bit fractional value, returning a 32-bit result.

Prototype

  Word32 __LL_div(Word64 s_numerator, Word32 s_denominator)

  

  
Example
ong long s1 = 0x1807E01E00000000;

long s2 = 0x300F0000;

long result;

result = LL_div (s1,s2);

// Expected value of result: 0x1807E01E00000000 / 0x300F0000 = 0x40010000
Note: The intrinsics_LL_56800E.h file must be included.