~ubuntu-branches/ubuntu/saucy/joystick/saucy

« back to all changes in this revision

Viewing changes to utils/bitmaskros.h

  • Committer: Package Import Robot
  • Author(s): Stephen Kitt
  • Date: 2013-05-06 23:03:26 UTC
  • mfrom: (3.1.12 sid)
  • Revision ID: package-import@ubuntu.com-20130506230326-po18icz4mtaa25k1
Tags: 1:1.4.6-1
* New upstream release:
  - Disable CRTSCTS on ELO touchscreens. Closes: #699030. Thanks Thierry
    Bultel!
  - Handle long device names correctly. Closes: #706744. Thanks Ralf
    Jung!
* Drop hardening.patch, merged upstream.
* Standards-Version 3.9.4, no change required.
* Switch to my Debian address.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * bitmaskros.h
 
3
 *
 
4
 * Helper macros for large bit masks management
 
5
 *
 
6
 * Copyright (C) 2008 Jean-Philippe Meuret
 
7
 *
 
8
 * This program is free software; you can redistribute it and/or modify
 
9
 * it under the terms of the GNU General Public License as published by
 
10
 * the Free Software Foundation; either version 2 of the License, or
 
11
 * (at your option) any later version.
 
12
 *
 
13
 * This program is distributed in the hope that it will be useful,
 
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
 * GNU General Public License for more details.
 
17
 *
 
18
 * You should have received a copy of the GNU General Public License
 
19
 * along with this program; if not, write to the Free Software
 
20
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
21
 */
 
22
 
 
23
/* Number of bits for 1 unsigned char */
 
24
#define nBitsPerUchar          (sizeof(unsigned char) * 8)
 
25
 
 
26
/* Number of unsigned chars to contain a given number of bits */
 
27
#define nUcharsForNBits(nBits) ((((nBits)-1)/nBitsPerUchar)+1)
 
28
 
 
29
/* Index=Offset of given bit in 1 unsigned char */
 
30
#define bitOffsetInUchar(bit)  ((bit)%nBitsPerUchar)
 
31
 
 
32
/* Index=Offset of the unsigned char associated to the bit
 
33
   at the given index=offset */
 
34
#define ucharIndexForBit(bit)  ((bit)/nBitsPerUchar)
 
35
 
 
36
/* Value of an unsigned char with bit set at given index=offset */
 
37
#define ucharValueForBit(bit)  (((unsigned char)(1))<<bitOffsetInUchar(bit))
 
38
 
 
39
/* Test the bit with given index=offset in an unsigned char array */
 
40
#define testBit(bit, array)    ((array[ucharIndexForBit(bit)] >> bitOffsetInUchar(bit)) & 1)