]> AND Private Git Repository - canny.git/blob - stc/exp/ml_stc_linux_make_v1.0/include/boost/preprocessor/arithmetic/mul.hpp
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
efcde5a9ce96aa9101114209aa9909a86b889074
[canny.git] / stc / exp / ml_stc_linux_make_v1.0 / include / boost / preprocessor / arithmetic / mul.hpp
1 # /* Copyright (C) 2001\r
2 #  * Housemarque Oy\r
3 #  * http://www.housemarque.com\r
4 #  *\r
5 #  * Distributed under the Boost Software License, Version 1.0. (See\r
6 #  * accompanying file LICENSE_1_0.txt or copy at\r
7 #  * http://www.boost.org/LICENSE_1_0.txt)\r
8 #  */\r
9 #\r
10 # /* Revised by Paul Mensonides (2002) */\r
11 #\r
12 # /* See http://www.boost.org for most recent version. */\r
13 #\r
14 # ifndef BOOST_PREPROCESSOR_ARITHMETIC_MUL_HPP\r
15 # define BOOST_PREPROCESSOR_ARITHMETIC_MUL_HPP\r
16 #\r
17 # include <boost/preprocessor/arithmetic/add.hpp>\r
18 # include <boost/preprocessor/arithmetic/dec.hpp>\r
19 # include <boost/preprocessor/config/config.hpp>\r
20 # include <boost/preprocessor/control/while.hpp>\r
21 # include <boost/preprocessor/tuple/elem.hpp>\r
22 # include <boost/preprocessor/tuple/rem.hpp>\r
23 #\r
24 # /* BOOST_PP_MUL */\r
25 #\r
26 # if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_EDG()\r
27 #    define BOOST_PP_MUL(x, y) BOOST_PP_TUPLE_ELEM(3, 0, BOOST_PP_WHILE(BOOST_PP_MUL_P, BOOST_PP_MUL_O, (0, x, y)))\r
28 # else\r
29 #    define BOOST_PP_MUL(x, y) BOOST_PP_MUL_I(x, y)\r
30 #    define BOOST_PP_MUL_I(x, y) BOOST_PP_TUPLE_ELEM(3, 0, BOOST_PP_WHILE(BOOST_PP_MUL_P, BOOST_PP_MUL_O, (0, x, y)))\r
31 # endif\r
32 #\r
33 # define BOOST_PP_MUL_P(d, rxy) BOOST_PP_TUPLE_ELEM(3, 2, rxy)\r
34 #\r
35 # if BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_STRICT()\r
36 #    define BOOST_PP_MUL_O(d, rxy) BOOST_PP_MUL_O_IM(d, BOOST_PP_TUPLE_REM_3 rxy)\r
37 #    define BOOST_PP_MUL_O_IM(d, im) BOOST_PP_MUL_O_I(d, im)\r
38 # else\r
39 #    define BOOST_PP_MUL_O(d, rxy) BOOST_PP_MUL_O_I(d, BOOST_PP_TUPLE_ELEM(3, 0, rxy), BOOST_PP_TUPLE_ELEM(3, 1, rxy), BOOST_PP_TUPLE_ELEM(3, 2, rxy))\r
40 # endif\r
41 #\r
42 # define BOOST_PP_MUL_O_I(d, r, x, y) (BOOST_PP_ADD_D(d, r, x), x, BOOST_PP_DEC(y))\r
43 #\r
44 # /* BOOST_PP_MUL_D */\r
45 #\r
46 # if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_EDG()\r
47 #    define BOOST_PP_MUL_D(d, x, y) BOOST_PP_TUPLE_ELEM(3, 0, BOOST_PP_WHILE_ ## d(BOOST_PP_MUL_P, BOOST_PP_MUL_O, (0, x, y)))\r
48 # else\r
49 #    define BOOST_PP_MUL_D(d, x, y) BOOST_PP_MUL_D_I(d, x, y)\r
50 #    define BOOST_PP_MUL_D_I(d, x, y) BOOST_PP_TUPLE_ELEM(3, 0, BOOST_PP_WHILE_ ## d(BOOST_PP_MUL_P, BOOST_PP_MUL_O, (0, x, y)))\r
51 # endif\r
52 #\r
53 # endif\r