Computes the square of an unsigned integer big number of 8*32 bits.
IppStatus ippsSqr_BNU8(const Ipp32u *a, Ipp32u *r);
a |
Multiplicand of 8*32 bits. |
r |
Square operation result of 16*32 bits. |
This function is declared in the ippcp.h file. The function computes the square of an unsigned integer big number of 8*32 bits and stores the result in the memory.
The following pseudocode represents this function:
(*r) ← (*a) (*a).
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.