Selaa lähdekoodia

extended integer math with log2(uint8_t)

tagfs
Ludovic 'Archivist' Lagouardette 3 vuotta sitten
vanhempi
commit
4423a883e9
1 muutettua tiedostoa jossa 15 lisäystä ja 0 poistoa
  1. +15
    -0
      include/gp/math/integer_math.hpp

+ 15
- 0
include/gp/math/integer_math.hpp Näytä tiedosto

@ -13,6 +13,21 @@ namespace gp {
Sean Eron Anderson
seander@cs.stanford.edu
**/
template<>
constexpr size_t log2<uint8_t>(uint8_t v)
{
constexpr int MultiplyDeBruijnBitPosition[8] =
{
0, 5, 1, 6, 4, 3, 2, 7
};
v |= v >> 1;
v |= v >> 2;
v |= v >> 4;
return MultiplyDeBruijnBitPosition[(v * 29U) >> 5];
}
template<>
constexpr size_t log2<uint32_t>(uint32_t v)
{

Ladataan…
Peruuta
Tallenna