forked from rethinkdb/rethinkdb_rebirth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmath.hpp
47 lines (36 loc) · 1.12 KB
/
math.hpp
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
#ifndef MATH_HPP_
#define MATH_HPP_
#include <math.h>
#include <stdint.h>
template <class T1, class T2>
T1 ceil_aligned(T1 value, T2 alignment) {
return value + alignment - (((value + alignment - 1) % alignment) + 1);
}
template <class T1, class T2>
T1 ceil_divide(T1 dividend, T2 alignment) {
return (dividend + alignment - 1) / alignment;
}
template <class T1, class T2>
T1 floor_aligned(T1 value, T2 alignment) {
return value - (value % alignment);
}
template <class T1, class T2>
T1 ceil_modulo(T1 value, T2 alignment) {
T1 x = (value + alignment - 1) % alignment;
return value + alignment - ((x < 0 ? x + alignment : x) + 1);
}
template <class T>
T clamp(T x, T lo, T hi) {
return x < lo ? lo : x > hi ? hi : x;
}
constexpr inline bool divides(int64_t x, int64_t y) {
return y % x == 0;
}
int64_t int64_round_up_to_power_of_two(int64_t x);
uint64_t uint64_round_up_to_power_of_two(uint64_t x);
/* Forwards to the isfinite macro, or std::isfinite. */
bool risfinite(double);
/* Translates to and from `0123456789ABCDEF`. */
bool hex_to_int(char c, int *out);
char int_to_hex(int i);
#endif // MATH_HPP_