Home
last modified time | relevance | path

Searched refs:str (Results 1 – 8 of 8) sorted by relevance

/libtiff-4.0.7/port/
H A Dsnprintf.c14 int _TIFF_vsnprintf_f(char* str, size_t size, const char* format, va_list ap) in _TIFF_vsnprintf_f() argument
19 count = _vsnprintf_s(str, size, _TRUNCATE, format, ap); in _TIFF_vsnprintf_f()
26 int _TIFF_snprintf_f(char* str, size_t size, const char* format, ...) in _TIFF_snprintf_f() argument
32 count = vsnprintf(str, size, format, ap); in _TIFF_snprintf_f()
H A Dlibport.h57 int snprintf(char* str, size_t size, const char* format, ...);
/libtiff-4.0.7/contrib/stream/
H A Dtiffstream.cpp27 TiffStream::makeFileStream(istream* str) in makeFileStream() argument
29 m_inStream = str; in makeFileStream()
48 TiffStream::makeFileStream(ostream* str) in makeFileStream() argument
51 m_outStream = str; in makeFileStream()
69 TiffStream::makeFileStream(iostream* str) in makeFileStream() argument
73 m_ioStream = str; in makeFileStream()
H A Dtiffstream.h26 TIFF* makeFileStream(iostream* str);
27 TIFF* makeFileStream(istream* str);
28 TIFF* makeFileStream(ostream* str);
/libtiff-4.0.7/contrib/iptcutil/
H A Diptcutil.c203 *str; in formatIPTC() local
296 str = (char *) malloc((unsigned int) (taglen+1)); in formatIPTC()
297 if (str == (char *) NULL) in formatIPTC()
307 free(str); in formatIPTC()
310 str[tagindx] = c; in formatIPTC()
312 str[ taglen ] = 0; in formatIPTC()
319 formatString( ofile, str, taglen ); in formatIPTC()
320 free(str); in formatIPTC()
/libtiff-4.0.7/config/
H A Dltmain.sh6170 assert (str != NULL);
6173 len = strlen (str);
6178 str += len - patlen;
6179 if (STREQ (str, pat))
6180 *str = '\0';
6182 return str;
6241 char *str = xstrdup (value);
6242 setenv (name, str, 1);
6245 char *str = XMALLOC (char, len);
6247 if (putenv (str) != EXIT_SUCCESS)
[all …]
/libtiff-4.0.7/libtiff/
H A Dtiffiop.h63 extern int snprintf(char* str, size_t size, const char* format, ...);
/libtiff-4.0.7/
H A DChangeLog2718 * contrib/iptcutil/iptcutil.c: Fixed memory leak of str.