Main MRPT website > C++ reference for MRPT 1.9.9
SSE_macros.h
Go to the documentation of this file.
1 /* +------------------------------------------------------------------------+
2  | Mobile Robot Programming Toolkit (MRPT) |
3  | http://www.mrpt.org/ |
4  | |
5  | Copyright (c) 2005-2018, Individual contributors, see AUTHORS file |
6  | See: http://www.mrpt.org/Authors - All rights reserved. |
7  | Released under BSD License. See details in http://www.mrpt.org/License |
8  +------------------------------------------------------------------------+ */
9 
10 #pragma once
11 
12 // Useful macro for masks used in _mm_shuffle_epi8()
13 #define BUILD_128BIT_CONST( \
14  _name, B0, B1, B2, B3, B4, B5, B6, B7, B8, B9, B10, B11, B12, B13, B14, \
15  B15) \
16  alignas(MRPT_MAX_ALIGN_BYTES) const unsigned long long _name[2] = { \
17  0x##B7##B6##B5##B4##B3##B2##B1##B0##ull, \
18  0x##B15##B14##B13##B12##B11##B10##B9##B8##ull};



Page generated by Doxygen 1.8.17 for MRPT 1.9.9 Git: ad3a9d8ae Tue May 1 23:10:22 2018 -0700 at miƩ 12 jul 2023 10:03:34 CEST