Skip to content
Snippets Groups Projects
Select Git revision
  • bc68dccf328e825ef1a101b2bbf8f9fb1216650e
  • master default protected
  • 9.0
  • 8.0
  • 7.8
  • 7.6
  • 7.4
  • 7.2
  • 7.0
  • 0.6
  • rosuav/latex-markdown-renderer
  • rxnpatch/rxnpatch
  • marcus/gobject-introspection
  • rxnpatch/8.0
  • rosuav/pre-listening-ports
  • nt-tools
  • rosuav/async-annotations
  • rosuav/pgsql-ssl
  • rxnpatch/rxnpatch-broken/2023-10-06T094250
  • grubba/fdlib
  • grubba/wip/sakura/8.0
  • v8.0.2000
  • v8.0.1998
  • v8.0.1996
  • v8.0.1994
  • v8.0.1992
  • v8.0.1990
  • v8.0.1988
  • v8.0.1986
  • rxnpatch/clusters/8.0/2025-04-29T124414
  • rxnpatch/2025-04-29T124414
  • v8.0.1984
  • v8.0.1982
  • v8.0.1980
  • v8.0.1978
  • v8.0.1976
  • v8.0.1974
  • v8.0.1972
  • v8.0.1970
  • v8.0.1968
  • v8.0.1966
41 results

array.c

Blame
  • stuff.c 2.23 KiB
    /*\
    ||| This file a part of Pike, and is copyright by Fredrik Hubinette
    ||| Pike is distributed as GPL (General Public License)
    ||| See the files COPYING and DISCLAIMER for more information.
    \*/
    #include "stuff.h"
    
    /* same thing as (int)floor(log((double)x) / log(2.0)) */
    /* Except a bit quicker :) (hopefully) */
    
    int my_log2(unsigned INT32 x)
    {
      static char bit[256] =
      {
        -1, 0, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 
         4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 
         5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 
         5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 
         6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 
         6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 
         6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 
         6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 
         7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 
         7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 
         7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 
         7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 
         7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 
         7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 
         7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 
         7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 
      };
      register unsigned int tmp;
      if(tmp=(x>>16))
      {
        if(x=(tmp>>8)) return bit[x]+24;
        return bit[tmp]+16;
      }
      if(tmp=(x>>8)) return bit[tmp]+8;
      return bit[x];
    }
    
    
    /* Return the number of bits in a 32-bit integer */
    int count_bits(unsigned INT32 x)
    {
    #define B(X) X+0,X+1,X+1,X+2,\
                 X+1,X+2,X+2,X+3,\
                 X+1,X+2,X+2,X+3,\
                 X+2,X+3,X+3,X+4
      static char bits[256] =
      {
        B(0), B(1), B(1), B(2),
        B(1), B(2), B(2), B(3),
        B(1), B(2), B(2), B(3),
        B(2), B(3), B(3), B(4)
      };
    
      return (bits[x & 255] +
    	  bits[(x>>8) & 255] +
    	  bits[(x>>16) & 255] +
    	  bits[(x>>24) & 255]);
    }
    
    /* Return true for integers with more than one bit set */
    int is_more_than_one_bit(unsigned INT32 x)
    {
      return ((x & 0xaaaaaaaa) && (x & 0x55555555)) ||
             ((x & 0xcccccccc) && (x & 0x33333333)) ||
             ((x & 0xf0f0f0f0) && (x & 0x0f0f0f0f)) ||
             ((x & 0xff00ff00) && (x & 0x00ff00ff)) ||
             ((x & 0xff00ff00) && (x & 0x00ff00ff)) ||
             ((x & 0xffff0000) && (x & 0x0000ffff));
    }