summaryrefslogtreecommitdiffstats
path: root/src/include/math.h
blob: eddb92f64ee82269b6832208ee9700b67b749b16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <stdint.h>
#include <builtins.h>

#ifndef _MATH_H
#define _MATH_H

#ifdef __cplusplus
extern "C"
{
#endif

ALWAYS_INLINE
static inline int64_t log2(uint64_t s)
{
    int64_t n = cntlzd(s);
    return 63-n;
}

#ifdef __cplusplus
};
#endif

#endif
OpenPOWER on IntegriCloud