SDL  2.0
SDL_bits.h File Reference
#include "SDL_stdinc.h"
#include "begin_code.h"
#include "close_code.h"
+ Include dependency graph for SDL_bits.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

SDL_FORCE_INLINE int SDL_MostSignificantBitIndex32 (Uint32 x)
 

Detailed Description

Functions for fiddling with bits and bitmasks.

Definition in file SDL_bits.h.

Function Documentation

◆ SDL_MostSignificantBitIndex32()

SDL_FORCE_INLINE int SDL_MostSignificantBitIndex32 ( Uint32  x)

Get the index of the most significant bit. Result is undefined when called with 0. This operation can also be stated as "count leading zeroes" and "log base 2".

Returns
Index of the most significant bit, or -1 if the value is 0.

Definition at line 51 of file SDL_bits.h.

References i.

Referenced by SDL_PrivateShouldInitSubsystem(), SDL_PrivateShouldQuitSubsystem(), SDL_PrivateSubsystemRefCountDecr(), SDL_PrivateSubsystemRefCountIncr(), and SDL_WasInit().

52 {
53 #if defined(__GNUC__) && __GNUC__ >= 4
54  /* Count Leading Zeroes builtin in GCC.
55  * http://gcc.gnu.org/onlinedocs/gcc-4.3.4/gcc/Other-Builtins.html
56  */
57  if (x == 0) {
58  return -1;
59  }
60  return 31 - __builtin_clz(x);
61 #else
62  /* Based off of Bit Twiddling Hacks by Sean Eron Anderson
63  * <seander@cs.stanford.edu>, released in the public domain.
64  * http://graphics.stanford.edu/~seander/bithacks.html#IntegerLog
65  */
66  const Uint32 b[] = {0x2, 0xC, 0xF0, 0xFF00, 0xFFFF0000};
67  const int S[] = {1, 2, 4, 8, 16};
68 
69  int msbIndex = 0;
70  int i;
71 
72  if (x == 0) {
73  return -1;
74  }
75 
76  for (i = 4; i >= 0; i--)
77  {
78  if (x & b[i])
79  {
80  x >>= S[i];
81  msbIndex |= S[i];
82  }
83  }
84 
85  return msbIndex;
86 #endif
87 }
GLint GLint GLint GLint GLint x
Definition: SDL_opengl.h:1567
uint32_t Uint32
An unsigned 32-bit integer type.
Definition: SDL_stdinc.h:161
return Display return Display Bool Bool int int int return Display XEvent Bool(*) XPointer return Display return Display Drawable _Xconst char unsigned int unsigned int return Display Pixmap Pixmap XColor XColor unsigned int unsigned int return Display _Xconst char char int char return Display Visual unsigned int int int char unsigned int unsigned int in i)
Definition: SDL_x11sym.h:50
GLboolean GLboolean GLboolean b