Searched refs:maxsizeP (Results 1 - 2 of 2) sorted by relevance

/haiku-fatelf/src/apps/poorman/libhttpd/
H A Dlibhttpd.h277 extern void httpd_realloc_str( char** strP, size_t* maxsizeP, size_t size );
H A Dlibhttpd.c700 httpd_realloc_str( char** strP, size_t* maxsizeP, size_t size ) argument
702 if ( *maxsizeP == 0 )
704 *maxsizeP = MAX( 200, size + 100 );
705 *strP = NEW( char, *maxsizeP + 1 );
707 str_alloc_size += *maxsizeP;
709 else if ( size > *maxsizeP )
711 str_alloc_size -= *maxsizeP;
712 *maxsizeP = MAX( *maxsizeP * 2, size * 5 / 4 );
713 *strP = RENEW( *strP, char, *maxsizeP
[all...]

Completed in 92 milliseconds