LONG_BIT           95 libutil/idset.c 		bit = (unsigned long *)check_calloc(sizeof(unsigned long), LONG_BIT);
LONG_BIT           96 libutil/idset.c 		for (i = 0; i < LONG_BIT; i++)
LONG_BIT           99 libutil/idset.c 	idset->set = (unsigned long *)check_calloc(sizeof(unsigned long), (size + LONG_BIT - 1) / LONG_BIT);
LONG_BIT          132 libutil/idset.c 	idset->set[id / LONG_BIT] |= bit[id % LONG_BIT];
LONG_BIT          154 libutil/idset.c 	return (idset->set[id / LONG_BIT] & bit[id % LONG_BIT]) != 0;
LONG_BIT          187 libutil/idset.c 	limit = idset->max / LONG_BIT + 1;
LONG_BIT          188 libutil/idset.c 	index0 = idset->lastid / LONG_BIT;
LONG_BIT          189 libutil/idset.c 	index1 = idset->lastid % LONG_BIT;
LONG_BIT          190 libutil/idset.c 	for (i = ++index1; i < LONG_BIT; i++)
LONG_BIT          192 libutil/idset.c 			return idset->lastid = index0 * LONG_BIT + i;
LONG_BIT          199 libutil/idset.c 	for (i = 0; i < LONG_BIT; i++)
LONG_BIT          201 libutil/idset.c 			return idset->lastid = index0 * LONG_BIT + i;