aboutsummaryrefslogtreecommitdiff
path: root/src/backend/lib/bit.c
blob: 2a0bcb24df7456dc3b2fbaf5faeadbdf47c3e544 (plain)
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
37
38
39
40
41
/*-------------------------------------------------------------------------
 *
 * bit.c
 *	  Standard bit array code.
 *
 * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
 * Portions Copyright (c) 1994, Regents of the University of California
 *
 *
 * IDENTIFICATION
 *	  $Header: /cvsroot/pgsql/src/backend/lib/Attic/bit.c,v 1.10 2000/08/20 19:31:37 tgl Exp $
 *
 *-------------------------------------------------------------------------
 */

#include "postgres.h"

#include "utils/bit.h"


void
BitArraySetBit(BitArray bitArray, BitIndex bitIndex)
{
	bitArray[bitIndex / BITSPERBYTE] |=
		(1 << (BITSPERBYTE - 1 - (bitIndex % BITSPERBYTE)));
}

void
BitArrayClearBit(BitArray bitArray, BitIndex bitIndex)
{
	bitArray[bitIndex / BITSPERBYTE] &=
		~(1 << (BITSPERBYTE - 1 - (bitIndex % BITSPERBYTE)));
}

bool
BitArrayBitIsSet(BitArray bitArray, BitIndex bitIndex)
{
	return ((bitArray[bitIndex / BITSPERBYTE] &
			 (1 << (BITSPERBYTE - 1 - (bitIndex % BITSPERBYTE)))
		) != 0);
}