Or

Computes the bitwise OR of two vectors.

Syntax

IppStatus ippsOr_8u(const Ipp8u* pSrc1, const Ipp8u* pSrc2, Ipp8u* pDst, int len);

IppStatus ippsOr_16u(const Ipp16u* pSrc1, const Ipp16u* pSrc2, Ipp16u* pDst, int len);

IppStatus ippsOr_32u(const Ipp32u* pSrc1, const Ipp32u* pSrc2, Ipp32u* pDst, int len);

IppStatus ippsOr_8u_I(const Ipp8u* pSrc, Ipp8u* pSrcDst, int len);

IppStatus ippsOr_16u_I(const Ipp16u* pSrc, Ipp16u* pSrcDst, int len);

IppStatus ippsOr_32u_I(const Ipp32u* pSrc, Ipp32u* pSrcDst, int len);

Parameters

pSrc1, pSrc2

Pointers to the two source vectors.

pDst

Pointer to the destination vector.

pSrc

Pointer to the source vector for the in-place operation.

pSrcDst

Pointer to the source and destination vector for the in-place operation.

len

Number of elements in the vector.

Description

The function ippsOr is declared in the ipps.h file. This function computes the bitwise OR of the corresponding elements of the vectors pSrc1 and pSrc2, and stores the result in the vector pDst.

The in-place flavors of ippsOr compute the bitwise OR of the corresponding elements of the vectors pSrc and pSrcDst and store the result in the vector pSrcDst.

Return Values

ippStsNoErr

Indicates no error.

ippStsNullPtrErr

Indicates an error when any of the specified pointers is NULL.

ippStsSizeErr

Indicates an error when len is less than or equal to 0.

Submit feedback on this help topic

Copyright © 2000 - 2011, Intel Corporation. All rights reserved.