Lines Matching refs:nBit
219 BitSet& BitSet::operator=( sal_uInt16 nBit ) in operator =() argument
224 nBlocks = nBit / 32; in operator =()
225 sal_uIntPtr nBitVal = 1L << (nBit % 32); in operator =()
240 BitSet& BitSet::operator-=(sal_uInt16 nBit) in operator -=() argument
243 sal_uInt16 nBlock = nBit / 32; in operator -=()
244 sal_uIntPtr nBitVal = 1L << (nBit % 32); in operator -=()
299 BitSet& BitSet::operator|=( sal_uInt16 nBit ) in operator |=() argument
302 sal_uInt16 nBlock = nBit / 32; in operator |=()
303 sal_uIntPtr nBitVal = 1L << (nBit % 32); in operator |=()
332 sal_Bool BitSet::Contains( sal_uInt16 nBit ) const in Contains()
335 sal_uInt16 nBlock = nBit / 32; in Contains()
336 sal_uIntPtr nBitVal = 1L << (nBit % 32); in Contains()
368 int nBit = 32; in CountBits() local
369 while ( nBit-- && nBits ) in CountBits()