IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
LogicalOrReg.h
Go to the documentation of this file.
1 // LogicalOrReg.h:
3 // -------------------
4 //
14 
15 #ifndef __IPSDKUTIL_INSTRUCTIONSET_LOGICAL_DETAIL_SSE2_LOGICALORREG_H__
16 #define __IPSDKUTIL_INSTRUCTIONSET_LOGICAL_DETAIL_SSE2_LOGICALORREG_H__
17 
23 
24 namespace ipsdk {
25 namespace simd {
26 namespace detail {
27 
30 
33 template <typename T>
35 {
36  static IPSDK_FORCEINLINE
37  typename Sse2Type<T>::Type
38  act(const typename Sse2Type<T>::Type& in1, const typename Sse2Type<T>::Type& in2)
39  {
41  }
42 
43  static IPSDK_FORCEINLINE
44  void
45  act(const typename Sse2Type<T>::Type& in1,
46  const typename Sse2Type<T>::Type& in2,
47  typename Sse2Type<T>::Type& out)
48  {
50  }
51 };
52 
55 
56 } // end of namespace detail
57 } // end of namespace simd
58 } // end of namespace ipsdk
59 
60 #endif // __IPSDKUTIL_INSTRUCTIONSET_LOGICAL_DETAIL_SSE2_LOGICALORREG_H__
Defines the IPSDK_FORCEINLINE.
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
eInstructionSet
Enumerate for processor instruction set description.
Definition: InstructionSetTypes.h:31
Definition: BitwiseOrReg.h:30
Predefined types for Sse2 instruction set management.
Definition of import/export macro for library.
Definition: LogicalOrReg.h:30
Streaming SIMD Extensions 2.
Definition: InstructionSetTypes.h:36
structure used to retrieve SSE2 type associated to a base type
Definition: Sse2Types.h:32