Multiplies two unsigned integers of 8*32 bits.
IppStatus ippsMul_BNU8(const Ipp32u *a, const Ipp32u *b, Ipp32u *r);
a |
Multiplicand, an integer big number of 8*32 bits. |
b |
Multiplier, an integer big number of 8*32 bits. |
r |
Multiplication result of 16*32 bits. |
This function is declared in the ippcp.h file. The function multiplies two unsigned integers of 8*32 bit and returns the result of 16*32 bits.
The following pseudocode represents this function:
(*r) ← (*a) (*b).
ippStsNoErr |
Indicates no error. Any other value indicates an error or warning. |
ippStsNullPtrErr |
Indicates an error condition if any of the specified pointers is NULL. |
Copyright © 2000 - 2011, Intel Corporation. All rights reserved.