Important: The information in this document is obsolete and should not be used for new development.
FixedMultiply
You can use theFixedMultiply
function to return the product of two numbers.
Fixed FixedMultiply (Fixed multiplicand, Fixed multiplier);
multiplicand
- The number to be multiplied by the multiplier.
multiplier
The number by which the multiplicand is to be multiplied.- function result
- The product of two numbers.
DESCRIPTION
TheFixedMultiply
function multiplies two fixed numbers. The format of theFixed
number returned depends on the respective number formats of the multiplicand and multiplier. The operation has a bias of 16 bits; in general, the bias of the resulting number is the sum of the biases of the input numbers, shifted right by 16 bits. If either the multiplicand or the multiplier isFixed
, the result of theFixedMultiply
function will be the same fixed-point format as the other parameter (long
,Fixed
, orfract
).Table 8-3 shows the bias of the product for different combinations of formats. The dashed line indicates that the resulting bias is not equivalent to long, fixed, or fract. Use the rules of the operation to determine it.
FixedMultiply
product biaslong fixed fract long --- long --- fixed long fixed fract fract --- fract --- SPECIAL CONSIDERATIONS
TheFixedMultiply
function does not pin its result in the case of an overflow; the result returned is modulo 65,536.