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.12 by sf-exg, Sat Jan 8 10:06:48 2011 UTC vs.
Revision 1.14 by sf-exg, Mon May 30 18:39:04 2011 UTC

1/*----------------------------------------------------------------------* 1/*----------------------------------------------------------------------*
2 * File: rxvtutil.C 2 * File: rxvtutil.C
3 *----------------------------------------------------------------------* 3 *----------------------------------------------------------------------*
4 * 4 *
5 * All portions of code are copyright by their respective author/s. 5 * All portions of code are copyright by their respective author/s.
6 * Copyright (c) 2004-2006 Marc Lehmann <pcg@goof.com> 6 * Copyright (c) 2004-2006 Marc Lehmann <schmorp@schmorp.de>
7 * 7 *
8 * This program is free software; you can redistribute it and/or modify 8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by 9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or 10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version. 11 * (at your option) any later version.
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