~ubuntu-branches/ubuntu/precise/stellarium/precise

« back to all changes in this revision

Viewing changes to src/external/kdewin32/byteswap.h

  • Committer: Bazaar Package Importer
  • Author(s): Cédric Delfosse
  • Date: 2009-03-13 20:07:22 UTC
  • mfrom: (1.1.8 upstream) (4.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090313200722-l66s4zy2s3e8up0s
Tags: 0.10.2-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* This file is part of the KDE project
 
2
   Copyright (C) 2007 Ralf Habacker <ralf.habacker@freenet.de>
 
3
 
 
4
   This program is free software; you can redistribute it and/or
 
5
   modify it under the terms of the GNU Library General Public
 
6
   License as published by the Free Software Foundation; either
 
7
   version 2 of the License, or (at your option) any later version.
 
8
 
 
9
   This program is distributed in the hope that it will be useful,
 
10
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
   Library General Public License for more details.
 
13
 
 
14
   You should have received a copy of the GNU Library General Public License
 
15
   along with this program; see the file COPYING.  If not, write to
 
16
   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
17
   Boston, MA 02110-1301, USA.
 
18
*/
 
19
#ifndef KDE_BYTESWAP_H
 
20
#define KDE_BYTESWAP_H
 
21
 
 
22
#define bswap_16(x) (((x) << 8) & 0xff00) | (((x) >> 8 ) & 0xff)
 
23
#define bswap_32(x) (((x) << 24) & 0xff000000)  \
 
24
                    | (((x) << 8) & 0xff0000)   \
 
25
                    | (((x) >> 8) & 0xff00)     \
 
26
                    | (((x) >> 24) & 0xff )
 
27
#define bswap_64(x) ((((x) & 0xff00000000000000ull) >> 56) \
 
28
                    | (((x) & 0x00ff000000000000ull) >> 40) \
 
29
                    | (((x) & 0x0000ff0000000000ull) >> 24) \
 
30
                    | (((x) & 0x000000ff00000000ull) >> 8) \
 
31
                    | (((x) & 0x00000000ff000000ull) << 8) \
 
32
                    | (((x) & 0x0000000000ff0000ull) << 24) \
 
33
                    | (((x) & 0x000000000000ff00ull) << 40) \
 
34
                    | (((x) & 0x00000000000000ffull) << 56))
 
35
 
 
36
#endif