Line | Count | Source (jump to first uncovered line) |
1 | | /* mpn_cnd_swap |
2 | | |
3 | | Contributed to the GNU project by Niels Möller |
4 | | |
5 | | Copyright 2013, 2015 Free Software Foundation, Inc. |
6 | | |
7 | | This file is part of the GNU MP Library. |
8 | | |
9 | | The GNU MP Library is free software; you can redistribute it and/or modify |
10 | | it under the terms of either: |
11 | | |
12 | | * the GNU Lesser General Public License as published by the Free |
13 | | Software Foundation; either version 3 of the License, or (at your |
14 | | option) any later version. |
15 | | |
16 | | or |
17 | | |
18 | | * the GNU General Public License as published by the Free Software |
19 | | Foundation; either version 2 of the License, or (at your option) any |
20 | | later version. |
21 | | |
22 | | or both in parallel, as here. |
23 | | |
24 | | The GNU MP Library is distributed in the hope that it will be useful, but |
25 | | WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY |
26 | | or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
27 | | for more details. |
28 | | |
29 | | You should have received copies of the GNU General Public License and the |
30 | | GNU Lesser General Public License along with the GNU MP Library. If not, |
31 | | see https://www.gnu.org/licenses/. */ |
32 | | |
33 | | #include "gmp-impl.h" |
34 | | |
35 | | void |
36 | | mpn_cnd_swap (mp_limb_t cnd, volatile mp_limb_t *ap, volatile mp_limb_t *bp, |
37 | | mp_size_t n) |
38 | 0 | { |
39 | 0 | volatile mp_limb_t mask = - (mp_limb_t) (cnd != 0); |
40 | 0 | mp_size_t i; |
41 | 0 | for (i = 0; i < n; i++) |
42 | 0 | { |
43 | 0 | mp_limb_t a, b, t; |
44 | 0 | a = ap[i]; |
45 | 0 | b = bp[i]; |
46 | 0 | t = (a ^ b) & mask; |
47 | 0 | ap[i] = a ^ t; |
48 | 0 | bp[i] = b ^ t; |
49 | 0 | } |
50 | 0 | } |