mirror of https://github.com/postgres/postgres
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.1 KiB
48 lines
1.1 KiB
/*-------------------------------------------------------------------------
|
|
*
|
|
* bit.c--
|
|
* Standard bit array code.
|
|
*
|
|
* Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
*
|
|
* IDENTIFICATION
|
|
* $Header: /cvsroot/pgsql/src/backend/lib/Attic/bit.c,v 1.3 1996/11/06 06:47:53 scrappy Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
|
|
/*
|
|
* utils/memutils.h contains declarations of the functions in this file
|
|
*/
|
|
#include "postgres.h"
|
|
|
|
#include "utils/bit.h"
|
|
#include "utils/memutils.h"
|
|
|
|
void
|
|
BitArraySetBit(BitArray bitArray, BitIndex bitIndex)
|
|
{
|
|
bitArray[bitIndex/BitsPerByte]
|
|
|= (1 << (BitsPerByte - (bitIndex % BitsPerByte) - 1));
|
|
return;
|
|
}
|
|
|
|
void
|
|
BitArrayClearBit(BitArray bitArray, BitIndex bitIndex)
|
|
{
|
|
bitArray[bitIndex/BitsPerByte]
|
|
&= ~(1 << (BitsPerByte - (bitIndex % BitsPerByte) - 1));
|
|
return;
|
|
}
|
|
|
|
bool
|
|
BitArrayBitIsSet(BitArray bitArray, BitIndex bitIndex)
|
|
{
|
|
return( (bool) (((bitArray[bitIndex / BitsPerByte] &
|
|
(1 << (BitsPerByte - (bitIndex % BitsPerByte)
|
|
- 1)
|
|
)
|
|
) != 0 ) ? 1 : 0) );
|
|
}
|
|
|
|
|