Home
last modified time | relevance | path

Searched refs:nOffset (Results 51 – 75 of 408) sorted by relevance

12345678910>>...17

/trunk/main/package/source/package/zipapi/
H A DDeflater.cxx76 , nOffset(0) in Deflater()
87 pStream->next_in = (unsigned char*) sInBuffer.getConstArray() + nOffset; in doDeflateBytes()
101 nOffset += nLength - pStream->avail_in; in doDeflateBytes()
113 pStream->next_in = (unsigned char*) sInBuffer.getConstArray() + nOffset; in doDeflateBytes()
128 nOffset += nLength - pStream->avail_in; in doDeflateBytes()
145 nOffset = nNewOffset; in setInputSegment()
194 nOffset = nLength = 0; in reset()
H A DInflater.cxx44 nOffset(0), in Inflater()
77 nOffset = 0; in setInput()
124 pStream->next_in = ( unsigned char* ) ( sInBuffer.getConstArray() + nOffset ); in doInflateBytes()
140 nOffset += nLength - pStream->avail_in; in doInflateBytes()
146 nOffset += nLength - pStream->avail_in; in doInflateBytes()
H A DZipOutputStream.cxx113 rEntry.nOffset = static_cast < sal_Int32 > (aChucker.GetPosition()) - nLOCLength; in putNextEntry()
242 sal_Int32 nOffset= static_cast < sal_Int32 > (aChucker.GetPosition()); in finish() local
245 writeEND( nOffset, static_cast < sal_Int32 > (aChucker.GetPosition()) - nOffset); in finish()
299 void ZipOutputStream::writeEND(sal_uInt32 nOffset, sal_uInt32 nLength) in writeEND() argument
308 aChucker << nOffset; in writeEND()
346 aChucker << rEntry.nOffset; in writeCEN()
/trunk/main/avmedia/source/viewer/
H A Dmediawindow_impl.cxx344 const sal_Int32 nOffset( mpMediaWindowControl ? AVMEDIA_CONTROLOFFSET : 0 ); in Resize() local
345 Size aPlayerWindowSize( aCurSize.Width() - ( nOffset << 1 ), in Resize()
346 aCurSize.Height() - ( nOffset << 1 ) ); in Resize()
351 const sal_Int32 nControlY = ::std::max( aCurSize.Height() - nControlHeight - nOffset, 0L ); in Resize()
353 aPlayerWindowSize.Height() = ( nControlY - ( nOffset << 1 ) ); in Resize()
354 …mpMediaWindowControl->SetPosSizePixel( Point( nOffset, nControlY ), Size( aCurSize.Width() - ( nOf… in Resize()
360 maChildWindow.SetPosSizePixel( Point( nOffset, nOffset ), aPlayerWindowSize ); in Resize()
/trunk/main/sc/inc/
H A Drangeutl.hxx117 sal_Int32 nOffset,
123 sal_Int32 nOffset );
133 sal_Int32& nOffset,
148 sal_Int32& nOffset,
156 sal_Int32& nOffset,
172 sal_Int32& nOffset,
182 sal_Int32& nOffset,
190 sal_Int32& nOffset,
/trunk/main/sd/source/ui/animations/
H A DDialogListBox.cxx250 int nOffset; in ImplResizeChild() local
253 nOffset = mpHScrollBar->GetThumbPos(); in ImplResizeChild()
254 aWinPos.X() = -nOffset; in ImplResizeChild()
255 aSize.Width() += nOffset; in ImplResizeChild()
260 nOffset = mpVScrollBar->GetThumbPos(); in ImplResizeChild()
261 aWinPos.Y() = -nOffset; in ImplResizeChild()
262 aSize.Height() += nOffset; in ImplResizeChild()
/trunk/main/sw/source/filter/ww1/
H A Dw1class.cxx989 sal_uInt16 nOffset = SVBT8ToByte(GetData(nIndex)) * 2; in Fill() local
990 if (nOffset) in Fill()
994 rnCountBytes = SVBT8ToByte(aFkp+nOffset) * 2; in Fill()
995 nOffset += sizeof(SVBT8); in Fill()
1003 p = aFkp + nOffset; in Fill()
1018 sal_uInt16 nOffset = GetData(nIndex)[0] * 2; in Fill() local
1019 if (nOffset) in Fill()
1022 sal_uInt16 nCountBytes = aFkp[nOffset]; in Fill()
1023 nOffset += sizeof(SVBT8); in Fill()
1024 DBG_ASSERT(nCountBytes <= 511-nOffset, "calc error"); in Fill()
[all …]
/trunk/main/unotools/source/config/
H A Dsearchopt.cxx73 sal_Bool GetFlag( sal_uInt16 nOffset ) const;
74 void SetFlag( sal_uInt16 nOffset, sal_Bool bVal );
106 sal_Bool SvtSearchOptions_Impl::GetFlag( sal_uInt16 nOffset ) const in GetFlag()
108 DBG_ASSERT( nOffset <= MAX_FLAGS_OFFSET, "offset out of range"); in GetFlag()
109 return ((nFlags >> nOffset) & 0x01) ? sal_True : sal_False; in GetFlag()
113 void SvtSearchOptions_Impl::SetFlag( sal_uInt16 nOffset, sal_Bool bVal ) in SetFlag() argument
115 DBG_ASSERT( nOffset <= MAX_FLAGS_OFFSET, "offset out of range"); in SetFlag()
117 sal_Int32 nMask = ((sal_Int32) 1) << nOffset; in SetFlag()
/trunk/main/sw/inc/
H A Dfmtftntx.hxx47 sal_uInt16 nOffset; member in SwFmtFtnEndAtTxtEnd
51 : SfxEnumItem( nWhichL, sal::static_int_cast< sal_uInt16 >(ePos) ), nOffset( 0 ) in SwFmtFtnEndAtTxtEnd()
56 nOffset( rAttr.nOffset ) in SwFmtFtnEndAtTxtEnd()
89 sal_uInt16 GetOffset() const { return nOffset; } in GetOffset()
90 void SetOffset( sal_uInt16 nOff ) { nOffset = nOff; } in SetOffset()
/trunk/main/writerfilter/source/doctok/
H A DDff.hxx53 DffRecord(WW8Stream & rStream, sal_uInt32 nOffset, sal_uInt32 nCount);
54 DffRecord(WW8StructBase * pParent, sal_uInt32 nOffset, sal_uInt32 nCount);
118 DffBlock(WW8Stream & rStream, sal_uInt32 nOffset, sal_uInt32 nCount, sal_uInt32 nPadding);
119 DffBlock(WW8StructBase * pParent, sal_uInt32 nOffset, sal_uInt32 nCount, sal_uInt32 nPadding);
141 createDffRecord(WW8StructBase * pParent, sal_uInt32 nOffset,
144 createDffRecord(WW8Stream & rStream, sal_uInt32 nOffset,
H A DWW8StreamImpl.cxx69 WW8Stream::Sequence WW8StreamImpl::get(sal_uInt32 nOffset, in get() argument
78 xSeek->seek(nOffset); in get()
187 sal_uInt32 nOffset = 0; in dump() local
192 aSeq = get(nOffset, nStep); in dump()
193 dumpLine(o, aSeq, nOffset, nStep); in dump()
195 nOffset += nStep; in dump()
H A DWW8LFOTable.cxx33 sal_uInt32 nOffset = 4; in initPayload() local
38 WW8LFO aLFO(this, nOffset); in initPayload()
40 entryOffsets.push_back(nOffset); in initPayload()
41 nOffset += WW8LFO::getSize(); in initPayload()
57 entryOffsets.push_back(nOffset); in initPayload()
/trunk/main/vcl/source/gdi/
H A Doutdev4.cxx1229 long nOffset = 0; in ImplCalcHatchValues() local
1248 rPt1.Y() -= nOffset; in ImplCalcHatchValues()
1249 rPt2.Y() -= nOffset; in ImplCalcHatchValues()
1263 rPt1.X() -= nOffset; in ImplCalcHatchValues()
1264 rPt2.X() -= nOffset; in ImplCalcHatchValues()
1291 nOffset = ( rPt1.Y() - nPY ) % nDist; in ImplCalcHatchValues()
1295 rPt1.Y() -= nOffset; in ImplCalcHatchValues()
1296 rPt2.Y() -= nOffset; in ImplCalcHatchValues()
1323 nOffset = ( rPt1.X() - nPX ) % nDist; in ImplCalcHatchValues()
1327 rPt1.X() -= nOffset; in ImplCalcHatchValues()
[all …]
H A Ddibtools.cxx614 bool ImplReadDIBBody( SvStream& rIStm, Bitmap& rBmp, Bitmap* pBmpAlpha, sal_uLong nOffset ) in ImplReadDIBBody() argument
626 if ( nOffset > 0 && aHeader.nSize > nOffset ) in ImplReadDIBBody()
707 nOffset = 0; in ImplReadDIBBody()
726 if(nOffset) in ImplReadDIBBody()
728 pIStm->SeekRel(nOffset - (pIStm->Tell() - nStmPos)); in ImplReadDIBBody()
1348 rOStm << (sal_uInt32)(nOffset + (rAcc.Height() * rAcc.GetScanlineSize())); in ImplWriteDIBFileHeader()
1351 rOStm << nOffset; in ImplWriteDIBFileHeader()
1366 sal_uLong nOffset(0UL); in ImplReadDIB() local
1373 if(ImplReadDIBFileHeader(rIStm, nOffset)) in ImplReadDIB()
1375 … bRet = ImplReadDIBBody(rIStm, rTarget, nOffset >= DIBV5HEADERSIZE ? pTargetAlpha : 0, nOffset); in ImplReadDIB()
[all …]
/trunk/main/ooxml/source/framework/OOXMLViewer/src/org/apache/openoffice/ooxml/viewer/tokenview/
H A DLine.java162 public Run<TokenType> GetRunForOffset (int nOffset) in GetRunForOffset() argument
169 if (nRunOffset<=nOffset && nOffset<=aRun.GetStreamEndOffset()) in GetRunForOffset()
216 public boolean ContainsOffset (final int nOffset) in ContainsOffset() argument
218 return mnStartOffset<=nOffset && nOffset<mnEndOffset; in ContainsOffset()
/trunk/main/xmloff/source/style/
H A DPageMasterExportPropMapper.cxx479 sal_Int32 nOffset(0); in ContextFilter() local
481 if((pRepeatOffsetX->maValue >>= nOffset) && (!nOffset)) in ContextFilter()
494 sal_Int32 nOffset(0); in ContextFilter() local
496 if((pHeaderRepeatOffsetX->maValue >>= nOffset) && (!nOffset)) in ContextFilter()
509 sal_Int32 nOffset(0); in ContextFilter() local
511 if((pFooterRepeatOffsetX->maValue >>= nOffset) && (!nOffset)) in ContextFilter()
/trunk/main/cui/source/tabpages/
H A Dtabstpge.cxx398 long nOffset = 0; in InitTabPos_Impl() local
403 nOffset = ( (const SfxInt32Item*)pItem )->GetValue(); in InitTabPos_Impl()
405 nOffset = OutputDevice::LogicToLogic( nOffset, eUnit, MAP_100TH_MM ); in InitTabPos_Impl()
414 aNewTabs[i].GetTabPos() + nOffset ), eDefUnit ); in InitTabPos_Impl()
508 long nOffset = 0; in IMPL_LINK() local
514 nOffset = ( (const SfxInt32Item*)pItem )->GetValue(); in IMPL_LINK()
516 nOffset = OutputDevice::LogicToLogic( nOffset, eUnit, MAP_100TH_MM ); in IMPL_LINK()
518 const long nReal = nVal - nOffset; in IMPL_LINK()
/trunk/main/sw/source/core/objectpositioning/
H A Dtolayoutanchoredobjectposition.cxx165 SwTwips nWidth, nOffset; in CalcPosition() local
170 nWidth, nOffset, bDummy ); in CalcPosition()
196 nRelPosX += nOffset; in CalcPosition()
216 maOffsetToFrmAnchorPos.Y() = nOffset; in CalcPosition()
221 maOffsetToFrmAnchorPos.X() = nOffset; in CalcPosition()
227 SwTwips nAttrRelPosX = nRelPosX - nOffset; in CalcPosition()
/trunk/main/framework/source/fwe/xml/
H A Dstatusbardocumenthandler.cxx273 sal_Int16 nOffset( STATUSBAR_OFFSET ); in startElement() local
379 nOffset = (sal_Int16)(xAttribs->getValueByIndex( n ).toInt32()); in startElement()
413 aStatusbarItemProp[2].Value <<= nOffset; in startElement()
576 sal_Int16 nOffset( STATUSBAR_OFFSET ); in WriteStatusBarDocument() local
582 nOffset, in WriteStatusBarDocument()
587 WriteStatusBarItem( aCommandURL, aHelpURL, nOffset, nStyle, nWidth ); in WriteStatusBarDocument()
604 sal_Int16 nOffset, in WriteStatusBarItem() argument
680 if ( nOffset != STATUSBAR_OFFSET ) in WriteStatusBarItem()
684 ::rtl::OUString::valueOf( (sal_Int32)nOffset ) ); in WriteStatusBarItem()
/trunk/main/svtools/source/control/
H A Dtaskmisc.cxx114 sal_uInt16 nOffset; in ImplTile() local
129 nOffset = (nCols*nCols) - nCount; in ImplTile()
130 if ( nOffset >= nCols ) in ImplTile()
133 nOffset = nOffset - nCols; in ImplTile()
146 if ( i < nOffset ) in ImplTile()
/trunk/main/sw/source/core/inc/
H A Dtxtfrm.hxx99 void _AdjustFollow( SwTxtFormatter &rLine, const xub_StrLen nOffset,
101 inline void AdjustFollow( SwTxtFormatter &rLine, const xub_StrLen nOffset,
308 virtual sal_Bool UnitUp(SwPaM *, const SwTwips nOffset = 0,
310 virtual sal_Bool UnitDown(SwPaM *, const SwTwips nOffset = 0,
312 sal_Bool _UnitUp(SwPaM *, const SwTwips nOffset = 0,
314 sal_Bool _UnitDown(SwPaM *, const SwTwips nOffset = 0,
712 const xub_StrLen nOffset, const xub_StrLen nStrEnd, const sal_uInt8 nMode ) in AdjustFollow() argument
715 _AdjustFollow( rLine, nOffset, nStrEnd, nMode ); in AdjustFollow()
/trunk/main/cppu/source/typelib/
H A Dtypelib.cxx388 sal_Int32 nOffset, sal_Int32 & rMaxIntegralTypeSize )
802 sal_Int32 nOffset = 0; in newTypeDescription() local
861 nOffset = newAlignedSize( nOffset, size, alignment ); in newTypeDescription()
862 pTmp->pMemberOffsets[i] = nOffset - size; in newTypeDescription()
1272 if (nOffset <= 0 || pTypeName->buffer[nOffset - 1] != ':') { in typelib_typedescription_newInterfaceMethod()
1295 pTypeName->buffer + nOffset +1, in typelib_typedescription_newInterfaceMethod()
1296 pTypeName->length - nOffset -1 ); in typelib_typedescription_newInterfaceMethod()
1365 if (nOffset <= 0 || pTypeName->buffer[nOffset - 1] != ':') { in typelib_typedescription_newExtendedInterfaceAttribute()
1388 pTypeName->buffer + nOffset +1, in typelib_typedescription_newExtendedInterfaceAttribute()
1389 pTypeName->length - nOffset -1 ); in typelib_typedescription_newExtendedInterfaceAttribute()
[all …]
/trunk/main/connectivity/source/drivers/file/
H A DFResultSet.cxx910 sal_Int32 nOffset = nFirstOffset; in ExecuteRow() local
949 nOffset = (*m_aEvaluateIter); in ExecuteRow()
960 nOffset = 1; in ExecuteRow()
967 nOffset = 1; in ExecuteRow()
973 nOffset = 1; in ExecuteRow()
1081 m_nRowPos += nOffset; in Move()
1087 m_nRowPos = nOffset -1; in Move()
1192 m_nRowPos += nOffset; in Move()
1196 m_nRowPos = nOffset - 1; in Move()
1244 if (nOffset > 0) in Move()
[all …]
/trunk/main/sfx2/source/sidebar/
H A DGridLayouter.cxx196 CellDescriptor& CellDescriptor::SetOffset (const sal_Int32 nOffset) in SetOffset() argument
198 mnOffset = nOffset; in SetOffset()
393 for (sal_Int32 nOffset=1; in LayoutColumn() local
394nOffset<nGridWidth && static_cast<size_t>(nColumnIndex+nOffset)<maColumnDescriptors.size(); in LayoutColumn()
395 ++nOffset) in LayoutColumn()
397 nCellWidth += maColumnDescriptors[nColumnIndex+nOffset].GetWidth(); in LayoutColumn()
/trunk/main/vcl/source/fontsubset/
H A Dgsub.cxx116 const sal_uInt16 nOffset= NEXT_UShort( pScriptTable ); in ReadGSUB() local
119 nLangsysOffset = nOffset; in ReadGSUB()
176 const sal_uInt16 nOffset= NEXT_UShort( pFeatureHeader ); in ReadGSUB() local
189 const FT_Byte* pFeatureTable = pGsubBase + nOfsFeatureTable + nOffset; in ReadGSUB()
213 const sal_uInt16 nOffset = NEXT_UShort( pLookupHeader ); in ReadGSUB() local
215 aLookupOffsetList.push_back( nOffset ); in ReadGSUB()

Completed in 163 milliseconds

12345678910>>...17