Home
last modified time | relevance | path

Searched refs:nInitSize (Results 1 – 25 of 31) sorted by relevance

12

/trunk/main/sfx2/source/bastyp/
H A Dminarray.cxx34 SfxPtrArr::SfxPtrArr( sal_uInt8 nInitSize, sal_uInt8 nGrowSize ): in SfxPtrArr() argument
37 nUnused( nInitSize ) in SfxPtrArr()
40 sal_uInt16 nMSCBug = nInitSize; in SfxPtrArr()
270 ByteArr::ByteArr( sal_uInt8 nInitSize, sal_uInt8 nGrowSize ): in ByteArr() argument
273 nUnused( nInitSize ) in ByteArr()
276 sal_uInt16 nMSCBug = nInitSize; in ByteArr()
278 if ( nInitSize > 0 ) in ByteArr()
502 WordArr::WordArr( sal_uInt8 nInitSize, sal_uInt8 nGrowSize ): in WordArr() argument
505 nUnused( nInitSize ) in WordArr()
508 sal_uInt16 nMSCBug = nInitSize; in WordArr()
[all …]
/trunk/main/tools/source/memtools/
H A Dcontnr.cxx83 CBlock::CBlock( sal_uInt16 nInitSize, CBlock* _pPrev, CBlock* _pNext ) in CBlock() argument
89 nSize = nInitSize; in CBlock()
533 nInitSize = pCont2->nInitSize; in ImpCopyContainer()
620 nInitSize = nReSize; in Container()
624 nInitSize = nBlockSize; in Container()
627 nInitSize = _nInitSize; in Container()
630 if ( nInitSize % nReSize ) in Container()
631 nInitSize -= nReSize - (nInitSize % nReSize); in Container()
660 nInitSize = 1; in Container()
763 pFirstBlock = new CBlock( nInitSize, NULL, NULL ); in ImpInsert()
/trunk/main/tools/source/generic/
H A Dpoly2.cxx52 ImplPolyPolygon::ImplPolyPolygon( sal_uInt16 nInitSize ) in DBG_NAME()
55 mnCount = nInitSize; in DBG_NAME()
56 mnSize = nInitSize; in DBG_NAME()
58 mpPolyAry = new SVPPOLYGON[ nInitSize ]; in DBG_NAME()
94 PolyPolygon::PolyPolygon( sal_uInt16 nInitSize, sal_uInt16 nResize ) in PolyPolygon() argument
98 if ( nInitSize > MAX_POLYGONS ) in PolyPolygon()
99 nInitSize = MAX_POLYGONS; in PolyPolygon()
100 else if ( !nInitSize ) in PolyPolygon()
101 nInitSize = 1; in PolyPolygon()
106 mpImplPolyPolygon = new ImplPolyPolygon( nInitSize, nResize ); in PolyPolygon()
H A Dpoly.cxx79 ImplPolygon::ImplPolygon( sal_uInt16 nInitSize, sal_Bool bFlags ) in ImplPolygon() argument
81 if ( nInitSize ) in ImplPolygon()
83 mpPointAry = (Point*)new char[(sal_uIntPtr)nInitSize*sizeof(Point)]; in ImplPolygon()
84 memset( mpPointAry, 0, (sal_uIntPtr)nInitSize*sizeof(Point) ); in ImplPolygon()
91 mpFlagAry = new sal_uInt8[ nInitSize ]; in ImplPolygon()
92 memset( mpPointAry, 0, nInitSize ); in ImplPolygon()
98 mnPoints = nInitSize; in ImplPolygon()
132 if ( nInitSize ) in ImplPolygon()
139 mpFlagAry = new sal_uInt8[ nInitSize ]; in ImplPolygon()
140 memcpy( mpFlagAry, pInitFlags, nInitSize ); in ImplPolygon()
[all …]
/trunk/main/sfx2/inc/sfx2/
H A Dminarray.hxx50 ARR( sal_uInt8 nInitSize = nI, sal_uInt8 nGrowSize = nG );\
107 ARR::ARR( sal_uInt8 nInitSize, sal_uInt8 nGrowSize ): \
110 nUnused(nInitSize) \
112 if ( nInitSize != 0 ) \
114 size_t nBytes = nInitSize * sizeof(T); \
321 SfxPtrArr( sal_uInt8 nInitSize = 0, sal_uInt8 nGrowSize = 8 );
403 ByteArr( sal_uInt8 nInitSize = 0, sal_uInt8 nGrowSize = 8 );
468 WordArr( sal_uInt8 nInitSize = 0, sal_uInt8 nGrowSize = 8 );
H A Dminstack.hxx34 ARR( sal_uInt8 nInitSize = nI, sal_uInt8 nGrowSize = nG ): \
35 ARR##arr_( nInitSize, nGrowSize ) \
67 ARR( sal_uInt8 nInitSize = nI, sal_uInt8 nGrowSize = nG ): \
68 ARR##arr_( nInitSize, nGrowSize ) \
/trunk/main/tools/inc/
H A Dpoly.h51 ImplPolygon( sal_uInt16 nInitSize, sal_Bool bFlags = sal_False );
80 ImplPolyPolygon( sal_uInt16 nInitSize, sal_uInt16 nResize ) in ImplPolyPolygon() argument
82 mnSize = nInitSize; mnResize = nResize; } in ImplPolyPolygon()
83 ImplPolyPolygon( sal_uInt16 nInitSize );
/trunk/main/starmath/inc/
H A Dutility.hxx176 SmPickList(sal_uInt16 nInitSize = 0, sal_uInt16 nMaxSize = 5);
217 SmStringPickList(sal_uInt16 nInitSize, sal_uInt16 nMaxSize) in SmStringPickList() argument
218 : SmPickList(nInitSize, nMaxSize) {} in SmStringPickList()
276 SmFontPickList(sal_uInt16 nInitSize, sal_uInt16 nMaxSize) in SmFontPickList() argument
277 : SmPickList(nInitSize, nMaxSize) {} in SmFontPickList()
/trunk/main/svx/inc/
H A Dxpolyimp.hxx51 ImpXPolygon( sal_uInt16 nInitSize = 16, sal_uInt16 nResize=16 );
90 ImpXPolyPolygon( sal_uInt16 nInitSize = 16, sal_uInt16 nResize = 16 ) : in ImpXPolyPolygon() argument
91 aXPolyList( 1024, nInitSize, nResize ) in ImpXPolyPolygon()
/trunk/main/vcl/source/gdi/
H A Dimpimage.cxx212 void ImplImageBmp::Create( long nItemWidth, long nItemHeight, sal_uInt16 nInitSize ) in Create() argument
214 const Size aTotalSize( nInitSize * nItemWidth, nItemHeight ); in Create()
223 mnSize = nInitSize; in Create()
232 …ImageBmp::Create( const BitmapEx& rBmpEx, long nItemWidth, long nItemHeight, sal_uInt16 nInitSize ) in Create() argument
241 mnSize = nInitSize; in Create()
H A Doctree.cxx44 ImpNodeCache::ImpNodeCache( const sal_uLong nInitSize ) : in ImpNodeCache() argument
47 const sal_uLong nSize = nInitSize + 4; in ImpNodeCache()
/trunk/main/sw/source/core/bastyp/
H A Dswcache.cxx102 SwCache::SwCache( const sal_uInt16 nInitSize, const sal_uInt16 nGrowSize in SwCache() argument
107 SwCacheObjArr( (sal_uInt8)nInitSize, (sal_uInt8)nGrowSize ), in SwCache()
112 nMax( nInitSize ), in SwCache()
113 nCurMax( nInitSize ) in SwCache()
/trunk/main/sot/source/sdstor/
H A Dstgstrms.cxx1088 StgTmpStrm::StgTmpStrm( sal_uLong nInitSize ) in StgTmpStrm() argument
1089 : SvMemoryStream( nInitSize > THRESHOLD in StgTmpStrm()
1091 : ( nInitSize ? nInitSize : 16 ), 4096 ) in StgTmpStrm()
1096 if( nInitSize > THRESHOLD ) in StgTmpStrm()
1097 SetSize( nInitSize ); in StgTmpStrm()
/trunk/main/tools/source/stream/
H A Dstream.cxx2529 SvMemoryStream::SvMemoryStream( sal_Size nInitSize, sal_Size nResizeOffset ) in SvMemoryStream() argument
2539 if( nInitSize && !AllocateMemory( nInitSize ) ) in SvMemoryStream()
2545 nSize = nInitSize; in SvMemoryStream()
2873 void* SvMemoryStream::SwitchBuffer( sal_Size nInitSize, sal_Size nResizeOffset) in SwitchBuffer() argument
2891 if( nInitSize && !AllocateMemory(nInitSize) ) in SwitchBuffer()
2897 nSize = nInitSize; in SwitchBuffer()
/trunk/main/sc/source/filter/inc/
H A Dftools.hxx419 inline explicit ScfDelList( sal_uInt16 nInitSize = 16, sal_uInt16 nResize = 16 ) : in ScfDelList() argument
420 maList( nInitSize, nResize ) {} in ScfDelList()
486 inline ScfDelStack( sal_uInt16 nInitSize = 16, sal_uInt16 nResize = 16 ) : in ScfDelStack() argument
487 ScfDelList< Type >( nInitSize, nResize ) {} in ScfDelStack()
/trunk/main/tools/inc/tools/
H A Downlist.hxx36 ClassName( sal_uInt16 nInitSize = 16, \
38 : aTypes( nInitSize, nReSize ) {} \
H A Dcontnr.hxx51 sal_uInt16 nInitSize; member in Container
71 sal_uInt16 nInitSize,
H A Dstream.hxx822 SvMemoryStream( sal_Size nInitSize=512, sal_Size nResize=64 );
832 void* SwitchBuffer( sal_Size nInitSize=512, sal_Size nResize=64 );
H A Dmempool.hxx43 sal_uInt16 nInitSize = 512,
/trunk/main/vcl/inc/
H A Dimage.h42 void Create( long nItemWidth, long nItemHeight, sal_uInt16 nInitSize );
43 void Create( const BitmapEx& rBmpEx, long nItemWidth, long nItemHeight,sal_uInt16 nInitSize );
/trunk/main/toolkit/source/helper/
H A Dunomemorystream.cxx34 UnoMemoryStream::UnoMemoryStream( sal_uInt32 nInitSize, sal_uInt32 nInitResize ) in UnoMemoryStream() argument
35 : SvMemoryStream( nInitSize, nInitResize ) in UnoMemoryStream()
/trunk/main/sw/source/core/inc/
H A Dswcache.hxx113 SwCache( const sal_uInt16 nInitSize, const sal_uInt16 nGrowSize,
117 SwCache( const sal_uInt16 nInitSize, const sal_uInt16 nGrowSize );
/trunk/main/starmath/source/
H A Dutility.cxx62 SmPickList::SmPickList(sal_uInt16 nInitSize, sal_uInt16 nMaxSize) : in SmPickList() argument
63 SfxPtrArr((sal_uInt8) nInitSize, 1) in SmPickList()
/trunk/main/svx/source/xoutdev/
H A D_xpoly.cxx56 ImpXPolygon::ImpXPolygon( sal_uInt16 nInitSize, sal_uInt16 _nResize ) in ImpXPolygon() argument
66 Resize( nInitSize ); in ImpXPolygon()
1579 XPolyPolygon::XPolyPolygon( sal_uInt16 nInitSize, sal_uInt16 nResize ) in XPolyPolygon() argument
1582 pImpXPolyPolygon = new ImpXPolyPolygon( nInitSize, nResize ); in XPolyPolygon()
/trunk/main/sw/source/core/txtnode/
H A Dndtxt.cxx2014 const xub_StrLen nInitSize = pDest->m_Text.Len(); in CutImpl() local
2101 if ( 0 < nLen && 0 < nInitSize && m_pSwpHints ) in CutImpl()
2109 if ( pEndIdx && (*pEndIdx == nInitSize) ) in CutImpl()
2148 nLen = pDest->m_Text.Len() - nInitSize; // update w/ current size! in CutImpl()
2160 if ( 0 < nLen && 0 < nInitSize && pDest->m_pSwpHints ) in CutImpl()
2168 if ( pEndIdx && (*pEndIdx == nInitSize) ) in CutImpl()
2190 if( nInitSize || pDest->HasSwAttrSet() || in CutImpl()

Completed in 145 milliseconds

12