IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
Classes | Namespaces | Macros
AllBitsToOneReg.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>
#include <boost/type_traits/is_integral.hpp>

Go to the source code of this file.

Classes

struct  ipsdk::simd::detail::AllBitsToOneReg< IS, T, Enable >
 
struct  ipsdk::simd::detail::AllBitsToOneReg< eInstructionSet::eIS_Standard, ipInt8 >
 
struct  ipsdk::simd::detail::AllBitsToOneReg< eInstructionSet::eIS_Standard, ipUInt8 >
 
struct  ipsdk::simd::detail::AllBitsToOneReg< eInstructionSet::eIS_Standard, ipInt16 >
 
struct  ipsdk::simd::detail::AllBitsToOneReg< eInstructionSet::eIS_Standard, ipUInt16 >
 
struct  ipsdk::simd::detail::AllBitsToOneReg< eInstructionSet::eIS_Standard, ipInt32 >
 
struct  ipsdk::simd::detail::AllBitsToOneReg< eInstructionSet::eIS_Standard, ipUInt32 >
 
struct  ipsdk::simd::detail::AllBitsToOneReg< eInstructionSet::eIS_Standard, ipInt64 >
 
struct  ipsdk::simd::detail::AllBitsToOneReg< eInstructionSet::eIS_Standard, ipUInt64 >
 
struct  ipsdk::simd::detail::AllBitsToOneReg< IS, ipReal32 >
 AllBitsToOneReg specialization to ipReal32. More...
 
struct  ipsdk::simd::detail::AllBitsToOneReg< IS, ipReal64 >
 AllBitsToOneReg specialization to ipReal64. More...
 

Namespaces

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

Macros

#define IMPLEMENT_ALLBITSTOONEREG_INT(type)
 

Detailed Description

Author
H. Delestre
Date
2018/03/15

Macro Definition Documentation

◆ IMPLEMENT_ALLBITSTOONEREG_INT

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