IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
Classes | Namespaces | Macros
AllBitsToZeroReg.h File Reference
#include <IPSDKUtil/IPSDKUtilExports.h>
#include <IPSDKUtil/InstructionSet/RegType.h>
#include <IPSDKUtil/InstructionSet/detail/AssignReg.h>
#include <IPSDKUtil/InstructionSet/detail/BitwiseCastReg.h>
#include <IPSDKUtil/Tools/ForceInline.h>

Go to the source code of this file.

Classes

struct  ipsdk::simd::detail::AllBitsToZeroReg< IS, T, Enable >
 
struct  ipsdk::simd::detail::AllBitsToZeroReg< IS, ipReal32 >
 AllBitsToZeroReg specialization to ipReal32. More...
 
struct  ipsdk::simd::detail::AllBitsToZeroReg< IS, ipReal64 >
 AllBitsToZeroReg specialization to ipReal64. More...
 

Namespaces

 ipsdk
 Main namespace for IPSDK library.
 
 ipsdk::simd
 Namespace agregating IPSDK SIMD routines and classes.
 

Macros

#define IMPLEMENT_ALLBITSTOZEROREG_INT(type)
 

Detailed Description

Author
H. Delestre
Date
2018/03/15

Macro Definition Documentation

◆ IMPLEMENT_ALLBITSTOZEROREG_INT

#define IMPLEMENT_ALLBITSTOZEROREG_INT (   type)
Value:
template <eInstructionSet::domain IS> \
struct AllBitsToZeroReg<IS, type> \
{ \
static IPSDK_FORCEINLINE \
typename RegType<IS, type>::Type \
act() \
{ \
return AssignReg<IS, ipUInt8>::act(0x0); \
} \
};