Lines Matching refs:pANTLR3_BITSET

41 static	pANTLR3_BITSET  antlr3BitsetClone		(pANTLR3_BITSET inSet);
42 static pANTLR3_BITSET antlr3BitsetOR (pANTLR3_BITSET bitset1, pANTLR3_BITSET bitset2);
43 static void antlr3BitsetORInPlace (pANTLR3_BITSET bitset, pANTLR3_BITSET bitset2);
44 static ANTLR3_UINT32 antlr3BitsetSize (pANTLR3_BITSET bitset);
45 static void antlr3BitsetAdd (pANTLR3_BITSET bitset, ANTLR3_INT32 bit);
46 static ANTLR3_BOOLEAN antlr3BitsetEquals (pANTLR3_BITSET bitset1, pANTLR3_BITSET bitset2);
47 static ANTLR3_BOOLEAN antlr3BitsetMember (pANTLR3_BITSET bitset, ANTLR3_UINT32 bit);
48 static ANTLR3_UINT32 antlr3BitsetNumBits (pANTLR3_BITSET bitset);
49 static void antlr3BitsetRemove (pANTLR3_BITSET bitset, ANTLR3_UINT32 bit);
50 static ANTLR3_BOOLEAN antlr3BitsetIsNil (pANTLR3_BITSET bitset);
51 static pANTLR3_INT32 antlr3BitsetToIntList (pANTLR3_BITSET bitset);
55 static void growToInclude (pANTLR3_BITSET bitset, ANTLR3_INT32 bit);
56 static void grow (pANTLR3_BITSET bitset, ANTLR3_INT32 newSize);
60 static void antlr3BitsetFree (pANTLR3_BITSET bitset);
63 antlr3BitsetFree(pANTLR3_BITSET bitset) in antlr3BitsetFree()
75 ANTLR3_API pANTLR3_BITSET
78 pANTLR3_BITSET bitset; in antlr3BitsetNew()
84 bitset = (pANTLR3_BITSET) ANTLR3_MALLOC((size_t)sizeof(ANTLR3_BITSET)); in antlr3BitsetNew()
122 antlr3BitsetSetAPI(pANTLR3_BITSET bitset) in antlr3BitsetSetAPI()
140 ANTLR3_API pANTLR3_BITSET
143 pANTLR3_BITSET bitset; in antlr3BitsetCopy()
148 bitset = (pANTLR3_BITSET) ANTLR3_MALLOC((size_t)sizeof(ANTLR3_BITSET)); in antlr3BitsetCopy()
183 static pANTLR3_BITSET
184 antlr3BitsetClone(pANTLR3_BITSET inSet) in antlr3BitsetClone()
186 pANTLR3_BITSET bitset; in antlr3BitsetClone()
207 ANTLR3_API pANTLR3_BITSET
210 pANTLR3_BITSET bitSet; in antlr3BitsetList()
253 ANTLR3_API pANTLR3_BITSET
256 pANTLR3_BITSET bitset; in antlr3BitsetLoad()
316 ANTLR3_API pANTLR3_BITSET
319 pANTLR3_BITSET bitset; in antlr3BitsetOf()
353 static pANTLR3_BITSET
354 antlr3BitsetOR(pANTLR3_BITSET bitset1, pANTLR3_BITSET bitset2) in antlr3BitsetOR()
356 pANTLR3_BITSET bitset; in antlr3BitsetOR()
379 antlr3BitsetAdd(pANTLR3_BITSET bitset, ANTLR3_INT32 bit) in antlr3BitsetAdd()
395 grow(pANTLR3_BITSET bitset, ANTLR3_INT32 newSize) in grow()
421 growToInclude(pANTLR3_BITSET bitset, ANTLR3_INT32 bit) in growToInclude()
440 antlr3BitsetORInPlace(pANTLR3_BITSET bitset, pANTLR3_BITSET bitset2) in antlr3BitsetORInPlace()
483 antlr3BitsetSize(pANTLR3_BITSET bitset) in antlr3BitsetSize()
512 antlr3BitsetEquals(pANTLR3_BITSET bitset1, pANTLR3_BITSET bitset2) in antlr3BitsetEquals()
571 antlr3BitsetMember(pANTLR3_BITSET bitset, ANTLR3_UINT32 bit) in antlr3BitsetMember()
593 antlr3BitsetRemove(pANTLR3_BITSET bitset, ANTLR3_UINT32 bit) in antlr3BitsetRemove()
605 antlr3BitsetIsNil(pANTLR3_BITSET bitset) in antlr3BitsetIsNil()
633 antlr3BitsetNumBits(pANTLR3_BITSET bitset) in antlr3BitsetNumBits()
646 antlr3BitsetToIntList (pANTLR3_BITSET bitset) in antlr3BitsetToIntList()