Lines Matching refs:bRow32Bit

97 inline sal_uInt8 lclGetBiffAddressSize( bool bCol16Bit, bool bRow32Bit )  in lclGetBiffAddressSize()  argument
99 return (bCol16Bit ? 2 : 1) + (bRow32Bit ? 4 : 2); in lclGetBiffAddressSize()
102 inline sal_uInt8 lclGetBiffRangeSize( bool bCol16Bit, bool bRow32Bit ) in lclGetBiffRangeSize() argument
104 return 2 * lclGetBiffAddressSize( bCol16Bit, bRow32Bit ); in lclGetBiffRangeSize()
126 void BinAddress::read( BiffInputStream& rStrm, bool bCol16Bit, bool bRow32Bit ) in read() argument
128 mnRow = bRow32Bit ? rStrm.readInt32() : rStrm.readuInt16(); in read()
132 void BinAddress::write( BiffOutputStream& rStrm, bool bCol16Bit, bool bRow32Bit ) const in write()
134 if( bRow32Bit ) in write()
157 void BinRange::read( BiffInputStream& rStrm, bool bCol16Bit, bool bRow32Bit ) in read() argument
159 maFirst.mnRow = bRow32Bit ? rStrm.readInt32() : rStrm.readuInt16(); in read()
160 maLast.mnRow = bRow32Bit ? rStrm.readInt32() : rStrm.readuInt16(); in read()
165 void BinRange::write( BiffOutputStream& rStrm, bool bCol16Bit, bool bRow32Bit ) const in write()
167 if( bRow32Bit ) in write()
205 void BinRangeList::read( BiffInputStream& rStrm, bool bCol16Bit, bool bRow32Bit ) in read() argument
208 …_t, sal_Int64 >( nCount, 0, rStrm.getRemaining() / lclGetBiffRangeSize( bCol16Bit, bRow32Bit ) ) ); in read()
210 aIt->read( rStrm, bCol16Bit, bRow32Bit ); in read()
213 void BinRangeList::write( BiffOutputStream& rStrm, bool bCol16Bit, bool bRow32Bit ) const in write()
215 writeSubList( rStrm, 0, size(), bCol16Bit, bRow32Bit ); in write()
218 …List( BiffOutputStream& rStrm, size_t nBegin, size_t nCount, bool bCol16Bit, bool bRow32Bit ) const in writeSubList()
224 rStrm.setPortionSize( lclGetBiffRangeSize( bCol16Bit, bRow32Bit ) ); in writeSubList()
226 aIt->write( rStrm, bCol16Bit, bRow32Bit ); in writeSubList()