2014-08-01 20:44:58 +10:00
|
|
|
/*
|
2015-04-13 18:05:28 +10:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2014-08-01 20:44:58 +10:00
|
|
|
*
|
2015-04-13 18:05:28 +10:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2014-08-01 20:44:58 +10:00
|
|
|
*
|
|
|
|
* Copyright 2014 Danny Robson <danny@nerdcruft.net>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __UTIL_MATHS_IPP
|
|
|
|
#define __UTIL_MATHS_IPP
|
|
|
|
#else
|
|
|
|
#error "Include only once"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
template <typename T, typename U>
|
|
|
|
typename std::common_type<T,U>::type
|
2014-09-01 16:26:01 +10:00
|
|
|
align (T value, U size) {
|
|
|
|
static_assert (std::is_integral<T>::value, "align requires integral types");
|
|
|
|
static_assert (std::is_integral<U>::value, "align requires integral types");
|
2014-08-01 20:44:58 +10:00
|
|
|
|
2014-09-01 16:26:01 +10:00
|
|
|
return divup (value, size) * size;
|
2014-08-01 20:44:58 +10:00
|
|
|
}
|
2015-01-21 23:35:34 +11:00
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
template <typename T>
|
2015-01-28 14:57:37 +11:00
|
|
|
constexpr T
|
2015-01-21 23:35:34 +11:00
|
|
|
pow (T x, unsigned y)
|
|
|
|
{
|
2015-01-28 14:57:37 +11:00
|
|
|
return y == 0 ? 1 : x * pow (x, y - 1);
|
2015-01-21 23:35:34 +11:00
|
|
|
}
|
2015-02-04 15:44:03 +11:00
|
|
|
|
|
|
|
|
2015-03-20 01:32:56 +11:00
|
|
|
///----------------------------------------------------------------------------
|
|
|
|
/// Return a unit type with a sign that matches the provided value
|
|
|
|
///
|
2015-04-07 16:53:11 +10:00
|
|
|
/// We were using __builtin_signbit for the potential speedboost, but it causes
|
|
|
|
/// problems with constexpr under clang. If you need speed then you'll probably
|
|
|
|
/// have to handcode something.
|
2015-03-24 02:42:42 +11:00
|
|
|
constexpr int
|
|
|
|
sign (int v)
|
|
|
|
{
|
2015-04-07 16:53:11 +10:00
|
|
|
return std::signbit (v) ? -1 : 1;
|
2015-03-24 02:42:42 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
constexpr float
|
|
|
|
sign (float v)
|
|
|
|
{
|
2015-04-07 16:53:11 +10:00
|
|
|
return std::signbit (v) ? -1.f : 1.f;
|
2015-03-24 02:42:42 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
constexpr double
|
|
|
|
sign (double v)
|
|
|
|
{
|
2015-04-07 16:53:11 +10:00
|
|
|
return std::signbit (v) ? -1. : 1.f;
|
2015-03-20 01:32:56 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-02-04 15:44:03 +11:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
template <>
|
|
|
|
struct constants<float>
|
|
|
|
{
|
|
|
|
static constexpr float PI = PI_f;
|
|
|
|
static constexpr float E = E_f;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
template <>
|
|
|
|
struct constants<double>
|
|
|
|
{
|
|
|
|
static constexpr double PI = PI_d;
|
|
|
|
static constexpr double E = E_d;
|
|
|
|
};
|