File: bitops.h

package info (click to toggle)
conntrack-tools 1%3A1.4.9-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 3,580 kB
  • sloc: ansic: 20,447; sh: 6,209; yacc: 1,480; makefile: 194; lex: 181; python: 176
file content (36 lines) | stat: -rw-r--r-- 703 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#ifndef _BITOPS_H_
#define _BITOPS_H_

#include <stdint.h>

static inline void set_bit_u32(int nr, uint32_t *addr)
{
	addr[nr >> 5] |= (1UL << (nr & 31));
}

static inline void unset_bit_u32(int nr, uint32_t *addr)
{
	addr[nr >> 5] &= ~(1UL << (nr & 31));
}

static inline int test_bit_u32(int nr, const uint32_t *addr)
{
	return ((1UL << (nr & 31)) & (addr[nr >> 5])) != 0;
}

static inline void set_bit_u16(int nr, uint16_t *addr)
{
	addr[nr >> 4] |= (1UL << (nr & 15));
}

static inline void unset_bit_u16(int nr, uint16_t *addr)
{
	addr[nr >> 4] &= ~(1UL << (nr & 15));
}

static inline int test_bit_u16(int nr, const uint16_t *addr)
{
	return ((1UL << (nr & 15)) & (addr[nr >> 4])) != 0;
}

#endif