Home
last modified time | relevance | path

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

/trunk/main/oox/inc/oox/helper/
H A Dhelper.hxx161 inline ReturnType extractValue( Type nBitField, sal_uInt8 nStartBit, sal_uInt8 nBitCount ) in extractValue() argument
164 return static_cast< ReturnType >( nMask & (nBitField >> nStartBit) ); in extractValue()
182 void insertValue( Type& ornBitField, InsertType nValue, sal_uInt8 nStartBit, sal_uInt8 nBitCount ) in insertValue() argument
186 (ornBitField &= ~(nMask << nStartBit)) |= (nNewValue << nStartBit); in insertValue()
/trunk/main/sc/source/filter/inc/
H A Dftools.hxx108 inline ReturnType extract_value( Type nBitField, sal_uInt8 nStartBit, sal_uInt8 nBitCount ) in extract_value() argument
109 { return static_cast< ReturnType >( ((1UL << nBitCount) - 1) & (nBitField >> nStartBit) ); } in extract_value()
122 void insert_value( Type& rnBitField, InsertType nValue, sal_uInt8 nStartBit, sal_uInt8 nBitCount ) in insert_value() argument
126 (rnBitField &= ~(nMask << nStartBit)) |= (nNewValue << nStartBit); in insert_value()

Completed in 27 milliseconds