Function bitness_const¶
function bitness_const(const char *, const char *) simd¶
template <int = 0>
constexpr inline const char* bitness_const(const char*, const char* x64) { … } Selects between 32-bit and 64-bit compile-time constants.
| x32 | Value to use on a 32-bit build (ignored on x64 builds). |
| x64 | Value to use on a 64-bit build. |
x64 on x64 builds. |
Fully qualified name: kfr::bitness_const(const char *, const char *)
Declared at simd/platform.hpp:164
Function bitness_const¶
function bitness_const(const T &, const T &) simd¶
template <typename T>
constexpr inline const T& bitness_const(const T&, const T& x64) { … } Selects between 32-bit and 64-bit compile-time constants.
| T | The type of the values. |
| x32 | Value to use on a 32-bit build (ignored on x64 builds). |
| x64 | Value to use on a 64-bit build. |
x64 on x64 builds. |
Fully qualified name: kfr::bitness_const(const T &, const T &)
Declared at simd/platform.hpp:176
This file was generated by cxxdox, a C++ documentation generator based on MkDocs Material and libclang.