Home
last modified time | relevance | path

Searched refs:nBitVal (Results 1 – 1 of 1) sorted by relevance

/AOO42X/main/sfx2/source/bastyp/ !
H A Dbitset.cxx163 sal_uIntPtr nBitVal = 1L << (n % 32); in BitSet() local
166 if ( ( *(pBitmap+nBlock) & nBitVal ) == 0 ) in BitSet()
168 *(pBitmap+nBlock) |= nBitVal; in BitSet()
225 sal_uIntPtr nBitVal = 1L << (nBit % 32); in operator =() local
231 *(pBitmap+nBlocks) = nBitVal; in operator =()
244 sal_uIntPtr nBitVal = 1L << (nBit % 32); in operator -=() local
249 if ( (*(pBitmap+nBlock) & nBitVal) ) in operator -=()
251 *(pBitmap+nBlock) &= ~nBitVal; in operator -=()
303 sal_uIntPtr nBitVal = 1L << (nBit % 32); in operator |=() local
319 if ( (*(pBitmap+nBlock) & nBitVal) == 0 ) in operator |=()
[all …]