mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-09-19 12:06:07 +08:00
47 lines
873 B
C
47 lines
873 B
C
![]() |
//===== Copyright © 1996-2009, Valve Corporation, All rights reserved. ======//
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
// $NoKeywords: $
|
||
|
//===========================================================================//
|
||
|
|
||
|
#ifndef BITTOOLS_H
|
||
|
#define BITTOOLS_H
|
||
|
#ifdef _WIN32
|
||
|
#pragma once
|
||
|
#endif
|
||
|
|
||
|
namespace bittools
|
||
|
{
|
||
|
template<int N, int C = 0>
|
||
|
struct RecurseBit
|
||
|
{
|
||
|
enum {result = RecurseBit<N/2, C+1>::result};
|
||
|
};
|
||
|
|
||
|
template<int C>
|
||
|
struct RecurseBit<0, C>
|
||
|
{
|
||
|
enum {result = C};
|
||
|
};
|
||
|
|
||
|
template<int N, int C = 1>
|
||
|
struct RecursePow2
|
||
|
{
|
||
|
enum {result = RecursePow2<N/2, C*2>::result};
|
||
|
};
|
||
|
|
||
|
template<int C>
|
||
|
struct RecursePow2<0, C>
|
||
|
{
|
||
|
enum {result = C};
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#define ROUND_TO_POWER_OF_2( n ) ( bittools::RecursePow2< (n) - 1 >::result )
|
||
|
#define MINIMUM_BITS_NEEDED( n ) ( bittools::RecurseBit< (n) - 1 >::result )
|
||
|
|
||
|
#endif //BITTOOLS_H
|
||
|
|