Searched refs:bitset2 (Results 1 - 3 of 3) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/
H A Dflags.h73 // bitset2 or in this bitset
74 wxBitset operator |(const wxBitset &bitset2) const // union
77 s.m_data = m_data | bitset2.m_data;
82 // bitset2 or in this bitset but not in both
83 wxBitset operator ^(const wxBitset &bitset2) const // difference
86 s.m_data = m_data ^ bitset2.m_data;
91 // bitset2 and in this bitset
92 wxBitset operator &(const wxBitset &bitset2) const // intersection
95 s.m_data = m_data & bitset2.m_data;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libantlr3c-3.2/src/
H A Dantlr3bitset.c42 static pANTLR3_BITSET antlr3BitsetOR (pANTLR3_BITSET bitset1, pANTLR3_BITSET bitset2);
43 static void antlr3BitsetORInPlace (pANTLR3_BITSET bitset, pANTLR3_BITSET bitset2);
46 static ANTLR3_BOOLEAN antlr3BitsetEquals (pANTLR3_BITSET bitset1, pANTLR3_BITSET bitset2);
354 antlr3BitsetOR(pANTLR3_BITSET bitset1, pANTLR3_BITSET bitset2) argument
360 return antlr3BitsetClone(bitset2);
363 if (bitset2 == NULL)
372 antlr3BitsetORInPlace(bitset, bitset2);
440 antlr3BitsetORInPlace(pANTLR3_BITSET bitset, pANTLR3_BITSET bitset2) argument
445 if (bitset2 == NULL)
454 if (bitset->blist.length < bitset2
512 antlr3BitsetEquals(pANTLR3_BITSET bitset1, pANTLR3_BITSET bitset2) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libantlr3c-3.2/include/
H A Dantlr3bitset.h94 pANTLR3_BITSET (*bor) (struct ANTLR3_BITSET_struct * bitset1, struct ANTLR3_BITSET_struct * bitset2);
95 void (*borInPlace) (struct ANTLR3_BITSET_struct * bitset, struct ANTLR3_BITSET_struct * bitset2);
99 ANTLR3_BOOLEAN (*equals) (struct ANTLR3_BITSET_struct * bitset1, struct ANTLR3_BITSET_struct * bitset2);

Completed in 147 milliseconds