Lines Matching defs:bits
732 int poptBitsAdd(poptBits bits, const char * s)
738 if (bits == NULL || ns == 0)
746 PBM_SET(ix, bits);
751 int poptBitsChk(poptBits bits, const char * s)
758 if (bits == NULL || ns == 0)
766 if (PBM_ISSET(ix, bits))
774 int poptBitsClr(poptBits bits)
779 if (bits == NULL)
781 memset(bits, 0, nw * nbw);
785 int poptBitsDel(poptBits bits, const char * s)
791 if (bits == NULL || ns == 0)
799 PBM_CLR(ix, bits);