kmalloc: Avoid code duplication.
[dragonfly.git] / lib / libstand / bswap.c
blob5d2bc38539b2ee684e20d65180cbcb48dea8ebb0
1 /*
2 * Written by Manuel Bouyer <bouyer@netbsd.org>.
3 * Public domain.
5 * $NetBSD: bswap32.c,v 1.1 1997/10/09 15:42:33 bouyer Exp $
6 * $NetBSD: bswap64.c,v 1.1 1997/10/09 15:42:33 bouyer Exp $
7 * $DragonFly: src/lib/libstand/bswap.c,v 1.3 2005/12/11 02:27:26 swildner Exp $
8 */
10 #include <sys/types.h>
12 #undef bswap32
13 #undef bswap64
15 u_int32_t
16 bswap32(u_int32_t x)
18 return ((x << 24) & 0xff000000 ) |
19 ((x << 8) & 0x00ff0000 ) |
20 ((x >> 8) & 0x0000ff00 ) |
21 ((x >> 24) & 0x000000ff );
24 u_int64_t
25 bswap64(u_int64_t x)
27 u_int32_t *p = (u_int32_t*)&x;
28 u_int32_t t;
29 t = bswap32(p[0]);
30 p[0] = bswap32(p[1]);
31 p[1] = t;
32 return x;