Home
last modified time | relevance | path

Searched refs:pszFormat (Results 1 – 25 of 559) sorted by relevance

12345678910>>...23

/dports/devel/upp/upp/bazaar/plugin/geotiff/libgeotiff/port/
H A Dcplstring.cpp45 CPLString &CPLString::Printf( const char *pszFormat, ... ) in Printf() argument
50 va_start( args, pszFormat ); in Printf()
51 vPrintf( pszFormat, args ); in Printf()
61 CPLString &CPLString::vPrintf( const char *pszFormat, va_list args ) in vPrintf() argument
71 if( vsprintf( pszBuffer, pszFormat, args) > 29998 ) in vPrintf()
94 nPR = vsnprintf( szModestBuffer, sizeof(szModestBuffer), pszFormat, in vPrintf()
107 while( (nPR=vsnprintf( pszWorkBuffer, nWorkBufferSize, pszFormat,wrk_args)) in vPrintf()
152 CPLString &CPLString::FormatC( double dfValue, const char *pszFormat ) in FormatC() argument
155 if( pszFormat == NULL ) in FormatC()
156 pszFormat = "%g"; in FormatC()
[all …]
/dports/devel/kBuild/kBuild-0.1.9998/src/lib/
H A Dmsc_buffered_printf.c66 int __cdecl printf(const char *pszFormat, ...) in printf() argument
70 va_start(va, pszFormat); in printf()
71 cchRet = vprintf(pszFormat, va); in printf()
85 int __cdecl vprintf(const char *pszFormat, va_list va) in vprintf() argument
91 if (*pszFormat != '\0') in vprintf()
110 return vfprintf(stdout, pszFormat, va); in vprintf()
123 int __cdecl fprintf(FILE *pFile, const char *pszFormat, ...) in fprintf() argument
132 if (*pszFormat != '\0') in fprintf()
142 va_start(va, pszFormat); in fprintf()
155 va_start(va, pszFormat); in fprintf()
[all …]
/dports/devel/upp/upp/bazaar/plugin/gdal/port/
H A Dcplstring.cpp46 CPLString &CPLString::Printf( const char *pszFormat, ... ) in Printf() argument
51 va_start( args, pszFormat ); in Printf()
52 vPrintf( pszFormat, args ); in Printf()
159 if( pszFormat == NULL ) in FormatC()
160 pszFormat = "%g"; in FormatC()
164 CPLsprintf( szWork, pszFormat, dfValue ); in FormatC()
421 CPLString CPLOPrintf( const char *pszFormat, ... ) in CPLOPrintf() argument
427 va_start( args, pszFormat ); in CPLOPrintf()
428 osTarget.vPrintf( pszFormat, args ); in CPLOPrintf()
438 CPLString CPLOvPrintf( const char *pszFormat, va_list args ) in CPLOvPrintf() argument
[all …]
/dports/graphics/p5-Geo-GDAL/gdal-3.3.3/port/
H A Dcplstring.cpp64 va_start( args, pszFormat ); in Printf()
65 vPrintf( pszFormat, args ); in Printf()
76 CPLString &CPLString::vPrintf( CPL_FORMAT_STRING(const char *pszFormat), in vPrintf() argument
87 if( CPLvsnprintf( pszBuffer, 30000, pszFormat, args) > 29998 ) in vPrintf()
173 CPLString &CPLString::FormatC( double dfValue, const char *pszFormat ) in FormatC() argument
176 if( pszFormat == nullptr ) in FormatC()
177 pszFormat = "%g"; in FormatC()
183 CPLsnprintf( szWork, buf_size, pszFormat, dfValue ); in FormatC()
509 va_start( args, pszFormat ); in CPLOPrintf()
512 osTarget.vPrintf( pszFormat, args ); in CPLOPrintf()
[all …]
/dports/graphics/gdal/gdal-3.3.3/port/
H A Dcplstring.cpp64 va_start( args, pszFormat ); in Printf()
65 vPrintf( pszFormat, args ); in Printf()
76 CPLString &CPLString::vPrintf( CPL_FORMAT_STRING(const char *pszFormat), in vPrintf() argument
87 if( CPLvsnprintf( pszBuffer, 30000, pszFormat, args) > 29998 ) in vPrintf()
173 CPLString &CPLString::FormatC( double dfValue, const char *pszFormat ) in FormatC() argument
176 if( pszFormat == nullptr ) in FormatC()
177 pszFormat = "%g"; in FormatC()
183 CPLsnprintf( szWork, buf_size, pszFormat, dfValue ); in FormatC()
509 va_start( args, pszFormat ); in CPLOPrintf()
512 osTarget.vPrintf( pszFormat, args ); in CPLOPrintf()
[all …]
/dports/graphics/py-gdal/gdal-3.3.3/port/
H A Dcplstring.cpp64 va_start( args, pszFormat ); in Printf()
65 vPrintf( pszFormat, args ); in Printf()
76 CPLString &CPLString::vPrintf( CPL_FORMAT_STRING(const char *pszFormat), in vPrintf() argument
87 if( CPLvsnprintf( pszBuffer, 30000, pszFormat, args) > 29998 ) in vPrintf()
173 CPLString &CPLString::FormatC( double dfValue, const char *pszFormat ) in FormatC() argument
176 if( pszFormat == nullptr ) in FormatC()
177 pszFormat = "%g"; in FormatC()
183 CPLsnprintf( szWork, buf_size, pszFormat, dfValue ); in FormatC()
509 va_start( args, pszFormat ); in CPLOPrintf()
512 osTarget.vPrintf( pszFormat, args ); in CPLOPrintf()
[all …]
/dports/deskutils/calibre/calibre-src-5.34.0/src/calibre/utils/podofo/
H A Doutput.cpp48 long PrintVLen(const char* pszFormat, va_list args) { in PrintVLen() argument
50 if( !pszFormat ) { PODOFO_RAISE_ERROR( ePdfError_InvalidHandle ); } in PrintVLen()
53 return _vscprintf(pszFormat, args) + 1; in PrintVLen()
55 return vsnprintf(NULL, 0, pszFormat, args) + 1; in PrintVLen()
59 void PrintV( const char* pszFormat, long lBytes, va_list args ) { in PrintV() argument
69 res = vsnprintf(buf, lBytes, pszFormat, args); in PrintV()
81 void Print( const char* pszFormat, ... ) in Print() argument
86 va_start( args, pszFormat ); in Print()
87 lBytes = PrintVLen(pszFormat, args); in Print()
90 va_start( args, pszFormat ); in Print()
[all …]
/dports/graphics/podofo/podofo-0.9.7/src/podofo/base/
H A DPdfOutputDevice.cpp190 void PdfOutputDevice::Print( const char* pszFormat, ... ) in Print() argument
195 va_start( args, pszFormat ); in Print()
196 lBytes = PrintVLen(pszFormat, args); in Print()
199 va_start( args, pszFormat ); in Print()
200 PrintV(pszFormat, lBytes, args); in Print()
208 if( !pszFormat ) in PrintVLen()
227 lBytes = _vscprintf( pszFormat, args ); in PrintVLen()
233 lBytes = vsnprintf( temp, len+1, pszFormat, args ); in PrintVLen()
238 lBytes = vsnprintf( NULL, 0, pszFormat, args ); in PrintVLen()
247 if( !pszFormat ) in PrintV()
[all …]
/dports/lang/zig/zig-0.9.0/lib/libc/include/any-windows-any/ddk/
H A Dntstrsafe.h503 va_start(argList,pszFormat); in RtlStringCchPrintfA()
513 va_start(argList,pszFormat); in RtlStringCchPrintfW()
530 va_start(argList,pszFormat); in RtlStringCbPrintfA()
541 va_start(argList,pszFormat); in RtlStringCbPrintfW()
558 va_start(argList,pszFormat); in RtlStringCchPrintfExA()
569 va_start(argList,pszFormat); in RtlStringCchPrintfExW()
590 va_start(argList,pszFormat); in RtlStringCbPrintfExA()
1446 if(!pszFormat) pszFormat = ""; in RtlStringVPrintfExWorkerA()
1452 if(*pszFormat!='\0') { in RtlStringVPrintfExWorkerA()
1519 if(!pszFormat) pszFormat = L""; in RtlStringVPrintfExWorkerW()
[all …]
/dports/lang/zig-devel/zig-0.9.0/lib/libc/include/any-windows-any/ddk/
H A Dntstrsafe.h503 va_start(argList,pszFormat); in RtlStringCchPrintfA()
513 va_start(argList,pszFormat); in RtlStringCchPrintfW()
530 va_start(argList,pszFormat); in RtlStringCbPrintfA()
541 va_start(argList,pszFormat); in RtlStringCbPrintfW()
558 va_start(argList,pszFormat); in RtlStringCchPrintfExA()
569 va_start(argList,pszFormat); in RtlStringCchPrintfExW()
590 va_start(argList,pszFormat); in RtlStringCbPrintfExA()
1446 if(!pszFormat) pszFormat = ""; in RtlStringVPrintfExWorkerA()
1452 if(*pszFormat!='\0') { in RtlStringVPrintfExWorkerA()
1519 if(!pszFormat) pszFormat = L""; in RtlStringVPrintfExWorkerW()
[all …]
/dports/graphics/py-gdal/gdal-3.3.3/apps/
H A Dgdal_translate_bin.cpp115 CPLFree(psOptionsForBinary->pszFormat); in GDALTranslateOptionsForBinaryFree()
209 if( psOptionsForBinary->pszFormat ) in MAIN_START()
211 GDALDriverH hDriver = GDALGetDriverByName( psOptionsForBinary->pszFormat ); in MAIN_START()
215 psOptionsForBinary->pszFormat); in MAIN_START()
273 if ( psOptionsForBinary->pszFormat == nullptr ) in MAIN_START()
281 hOutDriver = GDALGetDriverByName( psOptionsForBinary->pszFormat ); in MAIN_START()
315 const char* pszFormat = nullptr; in MAIN_START() local
318 pszFormat = "%s_%d"; in MAIN_START()
322 pszFormat = "%s_%002d"; in MAIN_START()
326 pszFormat = "%s_%003d"; in MAIN_START()
[all …]
H A Dgdal_utils_priv.h64 char* pszFormat; member
104 char* pszFormat; member
129 char* pszFormat; member
137 char* pszFormat; member
163 char* pszFormat; member
/dports/graphics/p5-Geo-GDAL/gdal-3.3.3/apps/
H A Dgdal_translate_bin.cpp115 CPLFree(psOptionsForBinary->pszFormat); in GDALTranslateOptionsForBinaryFree()
209 if( psOptionsForBinary->pszFormat ) in MAIN_START()
211 GDALDriverH hDriver = GDALGetDriverByName( psOptionsForBinary->pszFormat ); in MAIN_START()
215 psOptionsForBinary->pszFormat); in MAIN_START()
273 if ( psOptionsForBinary->pszFormat == nullptr ) in MAIN_START()
281 hOutDriver = GDALGetDriverByName( psOptionsForBinary->pszFormat ); in MAIN_START()
315 const char* pszFormat = nullptr; in MAIN_START() local
318 pszFormat = "%s_%d"; in MAIN_START()
322 pszFormat = "%s_%002d"; in MAIN_START()
326 pszFormat = "%s_%003d"; in MAIN_START()
[all …]
H A Dgdal_utils_priv.h64 char* pszFormat; member
104 char* pszFormat; member
129 char* pszFormat; member
137 char* pszFormat; member
163 char* pszFormat; member
/dports/graphics/gdal/gdal-3.3.3/apps/
H A Dgdal_translate_bin.cpp115 CPLFree(psOptionsForBinary->pszFormat); in GDALTranslateOptionsForBinaryFree()
209 if( psOptionsForBinary->pszFormat ) in MAIN_START()
211 GDALDriverH hDriver = GDALGetDriverByName( psOptionsForBinary->pszFormat ); in MAIN_START()
215 psOptionsForBinary->pszFormat); in MAIN_START()
273 if ( psOptionsForBinary->pszFormat == nullptr ) in MAIN_START()
281 hOutDriver = GDALGetDriverByName( psOptionsForBinary->pszFormat ); in MAIN_START()
315 const char* pszFormat = nullptr; in MAIN_START() local
318 pszFormat = "%s_%d"; in MAIN_START()
322 pszFormat = "%s_%002d"; in MAIN_START()
326 pszFormat = "%s_%003d"; in MAIN_START()
[all …]
H A Dgdal_utils_priv.h64 char* pszFormat; member
104 char* pszFormat; member
129 char* pszFormat; member
137 char* pszFormat; member
163 char* pszFormat; member
/dports/devel/upp/upp/bazaar/plugin/gdal/frmts/dted/
H A Ddted_create.c44 const char *pszLatLong, const char *pszFormat ) in DTEDFormatDMS() argument
52 if( pszFormat == NULL ) in DTEDFormatDMS()
53 pszFormat = "%03d%02d%02d%c"; in DTEDFormatDMS()
80 sprintf( szWork, pszFormat, in DTEDFormatDMS()
90 static void DTEDFormat( unsigned char *pszTarget, const char *pszFormat, ... ) CPL_PRINT_FUNC_FORMA…
92 static void DTEDFormat( unsigned char *pszTarget, const char *pszFormat, ... ) in DTEDFormat() argument
98 va_start(args, pszFormat); in DTEDFormat()
99 vsprintf( szWork, pszFormat, args ); in DTEDFormat()
/dports/graphics/podofo/podofo-0.9.7/src/podofo/doc/
H A DPdfSignOutputDevice.h100 virtual void Print( const char* pszFormat, ... ) in Print() argument
105 va_start( args, pszFormat ); in Print()
106 lBytes = m_pRealDevice->PrintVLen(pszFormat, args); in Print()
109 va_start( args, pszFormat ); in Print()
110 m_pRealDevice->PrintV(pszFormat, lBytes, args); in Print()
/dports/lang/zig/zig-0.9.0/lib/libc/include/any-windows-any/
H A Dstrsafe.h539 va_start(argList,pszFormat); in StringCchPrintfA()
549 va_start(argList,pszFormat); in StringCchPrintfW()
566 va_start(argList,pszFormat); in StringCbPrintfA()
577 va_start(argList,pszFormat); in StringCbPrintfW()
594 va_start(argList,pszFormat); in StringCchPrintfExA()
605 va_start(argList,pszFormat); in StringCchPrintfExW()
626 va_start(argList,pszFormat); in StringCbPrintfExA()
1598 if(!pszFormat) pszFormat = ""; in StringVPrintfExWorkerA()
1604 if(*pszFormat!='\0') { in StringVPrintfExWorkerA()
1671 if(!pszFormat) pszFormat = L""; in StringVPrintfExWorkerW()
[all …]
/dports/lang/zig-devel/zig-0.9.0/lib/libc/include/any-windows-any/
H A Dstrsafe.h539 va_start(argList,pszFormat); in StringCchPrintfA()
549 va_start(argList,pszFormat); in StringCchPrintfW()
566 va_start(argList,pszFormat); in StringCbPrintfA()
577 va_start(argList,pszFormat); in StringCbPrintfW()
594 va_start(argList,pszFormat); in StringCchPrintfExA()
605 va_start(argList,pszFormat); in StringCchPrintfExW()
626 va_start(argList,pszFormat); in StringCbPrintfExA()
1598 if(!pszFormat) pszFormat = ""; in StringVPrintfExWorkerA()
1604 if(*pszFormat!='\0') { in StringVPrintfExWorkerA()
1671 if(!pszFormat) pszFormat = L""; in StringVPrintfExWorkerW()
[all …]
/dports/graphics/p5-Geo-GDAL/gdal-3.3.3/frmts/dted/
H A Ddted_create.c47 const char *pszLatLong, const char *pszFormat ) in DTEDFormatDMS() argument
54 if( pszFormat == NULL ) in DTEDFormatDMS()
55 pszFormat = "%03d%02d%02d%c"; in DTEDFormatDMS()
83 pszFormat, in DTEDFormatDMS()
94 const char *pszFormat, ... )
100 const char *pszFormat, ... ) in DTEDFormat() argument
105 va_start(args, pszFormat); in DTEDFormat()
107 pszFormat, args ); in DTEDFormat()
/dports/graphics/gdal/gdal-3.3.3/frmts/dted/
H A Ddted_create.c47 const char *pszLatLong, const char *pszFormat ) in DTEDFormatDMS() argument
54 if( pszFormat == NULL ) in DTEDFormatDMS()
55 pszFormat = "%03d%02d%02d%c"; in DTEDFormatDMS()
83 pszFormat, in DTEDFormatDMS()
94 const char *pszFormat, ... )
100 const char *pszFormat, ... ) in DTEDFormat() argument
105 va_start(args, pszFormat); in DTEDFormat()
107 pszFormat, args ); in DTEDFormat()
/dports/graphics/py-gdal/gdal-3.3.3/frmts/dted/
H A Ddted_create.c47 const char *pszLatLong, const char *pszFormat ) in DTEDFormatDMS() argument
54 if( pszFormat == NULL ) in DTEDFormatDMS()
55 pszFormat = "%03d%02d%02d%c"; in DTEDFormatDMS()
83 pszFormat, in DTEDFormatDMS()
94 const char *pszFormat, ... )
100 const char *pszFormat, ... ) in DTEDFormat() argument
105 va_start(args, pszFormat); in DTEDFormat()
107 pszFormat, args ); in DTEDFormat()
/dports/devel/kBuild/kBuild-0.1.9998/src/kLibTweaker/
H A DkLibTweaker.c115 void FatalMsg(const char *pszFormat, ...) in FatalMsg() argument
124 va_start(va, pszFormat); in FatalMsg()
125 vfprintf(stderr, pszFormat, va); in FatalMsg()
139 va_start(va, pszFormat); in FatalDie()
140 vfprintf(stderr, pszFormat, va); in FatalDie()
156 va_start(va, pszFormat); in ErrorMsg()
157 vfprintf(stderr, pszFormat, va); in ErrorMsg()
175 va_start(va, pszFormat); in InfoMsg()
176 vfprintf(stderr, pszFormat, va); in InfoMsg()
682 va_start(va, pszFormat); in SyntaxError()
[all …]
/dports/devel/shapelib/shapelib-1.5.0/
H A Dshptreedump.c274 const char *pszFormat; in EmitCoordinate() local
277 pszFormat = "%.9f"; in EmitCoordinate()
279 pszFormat = "%.2f"; in EmitCoordinate()
281 printf( pszFormat, padfCoord[0] ); in EmitCoordinate()
283 printf( pszFormat, padfCoord[1] ); in EmitCoordinate()
288 printf( pszFormat, padfCoord[2] ); in EmitCoordinate()
293 printf( pszFormat, padfCoord[3] ); in EmitCoordinate()

12345678910>>...23