Home
last modified time | relevance | path

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

/AOO41X/main/filter/source/graphicfilter/ieps/
H A Dieps.cxx84 static long ImplGetNumber( sal_uInt8 **pBuf, int& nSecurityCount ) in ImplGetNumber() argument
89 while ( ( --nSecurityCount ) && ( ( **pBuf == ' ' ) || ( **pBuf == 0x9 ) ) ) in ImplGetNumber()
92 …while ( nSecurityCount && ( nByte != ' ' ) && ( nByte != 0x9 ) && ( nByte != 0xd ) && ( nByte != 0… in ImplGetNumber()
105 nSecurityCount = 1; // error parsing the bounding box values in ImplGetNumber()
113 nSecurityCount--; in ImplGetNumber()
582 int nSecurityCount = 32; in GraphicImport() local
589 long nWidth = ImplGetNumber( &pDest, nSecurityCount ); in GraphicImport()
590 long nHeight = ImplGetNumber( &pDest, nSecurityCount ); in GraphicImport()
591 long nBitDepth = ImplGetNumber( &pDest, nSecurityCount ); in GraphicImport()
592 long nScanLines = ImplGetNumber( &pDest, nSecurityCount ); in GraphicImport()
[all …]
/AOO41X/main/filter/source/graphicfilter/eps/
H A Deps.cxx2754 int nSecurityCount = 100; // only 100 bytes following the bounding box will be checked in ImplGetBoundingBox() local
2757 for ( int i = 0; ( i < 4 ) && nSecurityCount; i++ ) in ImplGetBoundingBox()
2764 while ( ( --nSecurityCount ) && ( ( *pDest == ' ' ) || ( *pDest == 0x9 ) ) ) in ImplGetBoundingBox()
2767 …while ( nSecurityCount && ( nByte != ' ' ) && ( nByte != 0x9 ) && ( nByte != 0xd ) && ( nByte != 0… in ImplGetBoundingBox()
2782 nSecurityCount = 1; // error parsing the bounding box values in ImplGetBoundingBox()
2792 nSecurityCount--; in ImplGetBoundingBox()
2800 if ( nSecurityCount) in ImplGetBoundingBox()