ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/rxvtutil.C
(Generate patch)

Comparing rxvt-unicode/src/rxvtutil.C (file contents):
Revision 1.13 by root, Mon Feb 21 07:41:03 2011 UTC vs.
Revision 1.14 by sf-exg, Mon May 30 18:39:04 2011 UTC

23#include <cstdlib> 23#include <cstdlib>
24#include <cstring> 24#include <cstring>
25#include <inttypes.h> 25#include <inttypes.h>
26 26
27#include "rxvtutil.h" 27#include "rxvtutil.h"
28
29#if !HAVE_GCC_BUILTINS
30int rxvt_ctz (unsigned int x) CONST
31{
32 int r = 0;
33
34 x &= -x; // this isolates the lowest bit
35
36 if (x & 0xaaaaaaaa) r += 1;
37 if (x & 0xcccccccc) r += 2;
38 if (x & 0xf0f0f0f0) r += 4;
39 if (x & 0xff00ff00) r += 8;
40 if (x & 0xffff0000) r += 16;
41
42 return r;
43}
44
45int rxvt_popcount (unsigned int x) CONST
46{
47 x -= (x >> 1) & 0x55555555;
48 x = ((x >> 2) & 0x33333333) + (x & 0x33333333);
49 x = ((x >> 4) + x) & 0x0f0f0f0f;
50 x *= 0x01010101;
51
52 return x >> 24;
53}
54#endif
55 28
56void * 29void *
57zero_initialized::operator new (size_t s) 30zero_initialized::operator new (size_t s)
58{ 31{
59 void *p = malloc (s); 32 void *p = malloc (s);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines