15 #ifndef __IPSDKUTIL_INSTRUCTIONSET_REDUCTION_DETAIL_SSE2_MAXREG_H__ 16 #define __IPSDKUTIL_INSTRUCTIONSET_REDUCTION_DETAIL_SSE2_MAXREG_H__ 35 typename boost::enable_if_c<sizeof(T) == 1>::type>
37 static IPSDK_FORCEINLINE
44 for(
int i=1; i<16; ++i) {
45 tmax = (unloaded[i] > tmax ? unloaded[i] : tmax);
55 typename boost::enable_if_c<sizeof(T) == 2>::type>
57 static IPSDK_FORCEINLINE
64 for(
int i=1; i<8; ++i) {
65 tmax = (unloaded[i] > tmax ? unloaded[i] : tmax);
75 typename boost::enable_if_c<sizeof(T) == 4>::type>
77 static IPSDK_FORCEINLINE
84 for(
int i=1; i<4; ++i) {
85 tmax = (unloaded[i] > tmax ? unloaded[i] : tmax);
95 typename boost::enable_if_c<sizeof(T) == 8>::type>
97 static IPSDK_FORCEINLINE
103 T tmax = unloaded[0];
104 if(unloaded[1] > tmax)
118 #endif // __IPSDKUTIL_INSTRUCTIONSET_REDUCTION_DETAIL_SSE2_MAXREG_H__ Defines the IPSDK_FORCEINLINE.
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
cast function; casts a Pack<instructionSet, TIn> to a Pack<instructionSet, TOut>
eInstructionSet
Enumerate for processor instruction set description.
Definition: InstructionSetTypes.h:31
Definition of import/export macro for library.
unload function; unloads a pack into a memory buffer
Streaming SIMD Extensions 2.
Definition: InstructionSetTypes.h:36
structure used to retrieve SSE2 type associated to a base type
Definition: Sse2Types.h:32
Definition: UnloadReg.h:30