LONG_BIT 102 libutil/idset.c bit = (unsigned long *)check_calloc(sizeof(unsigned long), LONG_BIT); LONG_BIT 103 libutil/idset.c for (i = 0; i < LONG_BIT; i++) LONG_BIT 106 libutil/idset.c idset->set = (unsigned long *)check_calloc(sizeof(unsigned long), (size + LONG_BIT - 1) / LONG_BIT); LONG_BIT 139 libutil/idset.c idset->set[id / LONG_BIT] |= bit[id % LONG_BIT]; LONG_BIT 161 libutil/idset.c return (idset->set[id / LONG_BIT] & bit[id % LONG_BIT]) != 0; LONG_BIT 194 libutil/idset.c limit = idset->max / LONG_BIT + 1; LONG_BIT 195 libutil/idset.c index0 = idset->lastid / LONG_BIT; LONG_BIT 196 libutil/idset.c index1 = idset->lastid % LONG_BIT; LONG_BIT 197 libutil/idset.c for (i = ++index1; i < LONG_BIT; i++) LONG_BIT 199 libutil/idset.c return idset->lastid = index0 * LONG_BIT + i; LONG_BIT 206 libutil/idset.c for (i = 0; i < LONG_BIT; i++) LONG_BIT 208 libutil/idset.c return idset->lastid = index0 * LONG_BIT + i;