Lines Matching refs:bCol16Bit

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
129 mnCol = bCol16Bit ? rStrm.readuInt16() : rStrm.readuInt8(); in read()
132 void BinAddress::write( BiffOutputStream& rStrm, bool bCol16Bit, bool bRow32Bit ) const in write() argument
138 if( bCol16Bit ) in write()
157 void BinRange::read( BiffInputStream& rStrm, bool bCol16Bit, bool bRow32Bit ) in read() argument
161 maFirst.mnCol = bCol16Bit ? rStrm.readuInt16() : rStrm.readuInt8(); in read()
162 maLast.mnCol = bCol16Bit ? rStrm.readuInt16() : rStrm.readuInt8(); in read()
165 void BinRange::write( BiffOutputStream& rStrm, bool bCol16Bit, bool bRow32Bit ) const in write() argument
171 if( bCol16Bit ) 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() argument
215 writeSubList( rStrm, 0, size(), bCol16Bit, bRow32Bit ); in write()
218 …iteSubList( BiffOutputStream& rStrm, size_t nBegin, size_t nCount, bool bCol16Bit, bool bRow32Bit … in writeSubList() argument
224 rStrm.setPortionSize( lclGetBiffRangeSize( bCol16Bit, bRow32Bit ) ); in writeSubList()
226 aIt->write( rStrm, bCol16Bit, bRow32Bit ); in writeSubList()