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.9 by ayin, Wed Oct 31 09:55:24 2007 UTC vs.
Revision 1.11 by root, Mon Jan 3 03:05:47 2011 UTC

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 28
29class byteorder byteorder;
30
31unsigned int byteorder::e;
32
33byteorder::byteorder ()
34{
35 union {
36 uint32_t u;
37 uint8_t b[4];
38 } w;
39
40 w.b[0] = 0x11;
41 w.b[1] = 0x22;
42 w.b[2] = 0x33;
43 w.b[3] = 0x44;
44
45 e = w.u;
46}
47
48#if !HAVE_GCC_BUILTINS 29#if !HAVE_GCC_BUILTINS
49int ctz (unsigned int x) CONST 30int rxvt_ctz (unsigned int x) CONST
50{ 31{
51 int r = 0; 32 int r = 0;
52 33
53 x &= -x; // this isolates the lowest bit 34 x &= -x; // this isolates the lowest bit
54 35
59 if (x & 0xffff0000) r += 16; 40 if (x & 0xffff0000) r += 16;
60 41
61 return r; 42 return r;
62} 43}
63 44
64int popcount (unsigned int x) CONST 45int rxvt_popcount (unsigned int x) CONST
65{ 46{
66 x -= (x >> 1) & 0x55555555; 47 x -= (x >> 1) & 0x55555555;
67 x = ((x >> 2) & 0x33333333) + (x & 0x33333333); 48 x = ((x >> 2) & 0x33333333) + (x & 0x33333333);
68 x = ((x >> 4) + x) & 0x0f0f0f0f; 49 x = ((x >> 4) + x) & 0x0f0f0f0f;
69 x *= 0x01010101; 50 x *= 0x01010101;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines