Searched refs:tempProduct (Results 1 – 1 of 1) sorted by relevance
335 int64_t tempProduct; in fMultiply() local349 …tempProduct = ((int64_t)X.full) * ((int64_t)Y.full); /*Q(16,16)*Q(16,16) = Q(32, 32) - Might becom… in fMultiply()350 …tempProduct = tempProduct >> 16; /*Remove lagging 16 bits - Will lose some precision from decimal;… in fMultiply()351 …Product.full = (int)tempProduct; /*The int64_t will lose the leading 16 bits that were part of the… in fMultiply()