#include <numerics_hdwi.hpp>
Definition at line 47 of file numerics_hdwi.hpp.
typedef hardware_int hdw_int |
Definition at line 50 of file numerics_hdwi.hpp.
static void reverse | ( | unsigned | h, | |
hdw_int & | a | |||
) | [inline, static] |
Definition at line 65 of file numerics_hdwi.hpp.
00066 { 00067 unsigned i; 00068 hdw_int c; 00069 c = 0; 00070 for ( i = 0; i < h; i ++ ) 00071 { 00072 c <<= 1; 00073 c |= a&1; 00074 a >>= 1; 00075 }; 00076 a = c; 00077 };
Definition at line 54 of file numerics_hdwi.hpp.
References hdwi< hardware_int >::nbit.
Referenced by mmx::reverse().
const unsigned nbit = sizeof(hardware_int)*8 [static] |
Definition at line 52 of file numerics_hdwi.hpp.
Referenced by hdwi< hardware_int >::reverse().
const T nmax [inline, static] |
Definition at line 53 of file numerics_hdwi.hpp.