/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
*/
#include <sys/sysmacros.h>
/*
* Initialize a bitset_t.
* After bitset_init(), the bitset will be zero sized.
*/
void
{
}
/*
* Initialize a bitset_t using a fanout. The fanout factor is platform
* specific and passed in as a power of two.
*/
void
{
}
/*
* Uninitialize a bitset_t.
* This will free the bitset's data, leaving it zero sized.
*/
void
{
if (b->bs_words > 0)
}
/*
* Resize a bitset to where it can hold els number of elements.
* This can either grow or shrink the bitset holding capacity.
* In the case of shrinkage, elements that reside outside the new
* holding capacity of the bitset are lost.
*/
void
{
return; /* already properly sized */
/*
* Allocate the new ulong_t array, and copy the old one, if there
* was an old one.
*/
if (nwords > 0) {
if (b->bs_words > 0)
} else {
}
/* swap out the old ulong_t array for new one */
/* free up the old array */
if (b->bs_words > 0)
}
/*
* Returns the current holding capacity of the bitset.
*/
{
}
/*
* Add (set) and delete (clear) bits in the bitset.
*
* Adding a bit that is already set, or removing a bit that's already clear
* is legal.
*
* Adding or deleting an element that falls outside the bitset's current
* holding capacity is illegal.
*/
void
{
}
/*
* Set a bit in an atomically safe way.
*/
void
{
}
/*
* Atomically test that a given bit isn't set, and set it.
* Returns -1 if the bit was already set.
*/
int
{
int ret;
return (ret);
}
/*
* Clear a bit.
*/
void
{
}
/*
* Clear a bit in an atomically safe way.
*/
void
{
}
/*
* Atomically test that a bit is set, and clear it.
* Returns -1 if the bit was already clear.
*/
int
{
int ret;
return (ret);
}
/*
* Return non-zero if the bit is present in the set.
*/
int
{
return (0);
}
/*
* Return non-zero if the bitset is empty.
*/
int
{
int i;
for (i = 0; i < b->bs_words; i++)
if (b->bs_set[i] != 0)
return (0);
return (1);
}
/*
* Perform a non-victimizing search for a set bit in a word.
* A "seed" is passed to pseudo-randomize the search.
* Return -1 if no set bit was found.
*/
static uint_t
{
if (w == (ulong_t)0)
return (elt);
return (elt);
}
/*
* Select a bit that is set in the bitset in a non-victimizing fashion
* Return -1 if no set bit was found
*/
{
seed = CPU_PSEUDO_RANDOM();
i = start;
do {
}
if (++i == b->bs_words)
i = 0;
} while (i != start);
return (elt);
}
/*
* AND, OR, and XOR bitset computations, returns 1 if resulting bitset has any
* set bits. Operands must have the same fanout, if any.
*/
int
{
int i, anyset;
anyset = 1;
}
return (anyset);
}
int
{
int i, anyset;
anyset = 1;
}
return (anyset);
}
int
{
int i, anyset = 0;
anyset = 1;
}
return (anyset);
}
/*
* Return 1 if bitmaps are identical.
*/
int
{
int i;
return (0);
return (0);
return (1);
}
/*
* Zero a bitset_t.
*/
void
{
}
/*
* Copy a bitset_t.
*/
void
{
}