Home
last modified time | relevance | path

Searched refs:alloced (Results 1 – 3 of 3) sorted by relevance

/PHP-5.3/ext/reflection/
H A Dphp_reflection.c112 int alloced; member
119 str->alloced = 1024; in string_init()
133 if (str->alloced < nlen) { in string_printf()
134 str->alloced = nlen; in string_printf()
135 str->string = erealloc(str->string, str->alloced); in string_printf()
148 if (str->alloced < nlen) { in string_write()
149 str->alloced = nlen; in string_write()
150 str->string = erealloc(str->string, str->alloced); in string_write()
170 str->alloced = 0; in string_free()
/PHP-5.3/ext/pdo_odbc/
H A Dodbc_stmt.c617 unsigned long alloced = 4096; in odbc_stmt_get_col() local
/PHP-5.3/ext/standard/
H A Dstring.c808 size_t alloced; in PHP_FUNCTION() local
858 alloced = textlen + chk * breakcharlen + 1; in PHP_FUNCTION()
861 alloced = textlen * (breakcharlen + 1) + 1; in PHP_FUNCTION()
871 alloced += (int) (((textlen - current + 1)/linelength + 1) * breakcharlen) + 1; in PHP_FUNCTION()
872 newtext = erealloc(newtext, alloced); in PHP_FUNCTION()

Completed in 46 milliseconds