Skip to content

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.

Parameters
x32 Value to use on a 32-bit build (ignored on x64 builds).
x64 Value to use on a 64-bit build.
Returns
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.

Template parameters
T The type of the values.
Parameters
x32 Value to use on a 32-bit build (ignored on x64 builds).
x64 Value to use on a 64-bit build.
Returns
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.