summaryrefslogtreecommitdiffstats
path: root/3rdparty/openpgm-svn-r1085/pgm/include/impl/math.h
blob: 8c7c2ba64060d3a4b2d02e284b675f6179221979 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/* vim:ts=8:sts=4:sw=4:noai:noexpandtab
 * 
 * Shared math routines.
 *
 * Copyright (c) 2006-2009 Miru Limited.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 * 
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 * 
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

#if !defined (__PGM_IMPL_FRAMEWORK_H_INSIDE__) && !defined (PGM_COMPILATION)
#       error "Only <framework.h> can be included directly."
#endif

#ifndef __PGM_IMPL_MATH_H__
#define __PGM_IMPL_MATH_H__

#include <pgm/types.h>

PGM_BEGIN_DECLS

/* fast log base 2 of power of 2
 */

static inline unsigned pgm_power2_log2 (unsigned) PGM_GNUC_CONST;

static inline
unsigned
pgm_power2_log2 (
	unsigned	v
	)
{
	static const unsigned int b[] = { 0xAAAAAAAA, 0xCCCCCCCC, 0xF0F0F0F0, 0xFF00FF00, 0xFFFF0000 };
	unsigned int r = (v & b[0]) != 0;
	for (unsigned i = 4; i > 0; i--) {
		r |= ((v & b[i]) != 0) << i;
	}
	return r;
}

/* nearest power of 2
 */

static inline size_t pgm_nearest_power (size_t, size_t) PGM_GNUC_CONST;

static inline
size_t
pgm_nearest_power (
	size_t		b,
	size_t		v
	)
{
	if (v > (SIZE_MAX/2))
		return SIZE_MAX;
	while (b < v)
		b <<= 1;
	return b;
}

unsigned pgm_spaced_primes_closest (unsigned) PGM_GNUC_PURE;

PGM_END_DECLS

#endif /* __PGM_IMPL_MATH_H__ */