Home
last modified time | relevance | path

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

/PHP-5.5/ext/pcre/
H A Dphp_pcre.c1044 int alloc_len; /* Actual allocated length */ in php_pcre_replace_impl() local
1109 alloc_len = 2 * subject_len + 1; in php_pcre_replace_impl()
1110 result = safe_emalloc(alloc_len, sizeof(char), 0); in php_pcre_replace_impl()
1174 if (new_len + 1 > alloc_len) { in php_pcre_replace_impl()
1175 alloc_len = 1 + alloc_len + 2 * new_len; in php_pcre_replace_impl()
1176 new_buf = emalloc(alloc_len); in php_pcre_replace_impl()
1238 if (new_len + 1 > alloc_len) { in php_pcre_replace_impl()
1239 alloc_len = new_len + 1; /* now we know exactly how long it is */ in php_pcre_replace_impl()
1240 new_buf = safe_emalloc(alloc_len, sizeof(char), 0); in php_pcre_replace_impl()
/PHP-5.5/ext/oci8/
H A Doci8_lob.c172 if ((*(ctx->lob_len) + lenp) > (ctx->alloc_len)) { in php_oci_lob_callback()
185 if ((*(ctx->lob_len) + lenp) > ctx->alloc_len) { in php_oci_lob_callback()
259 ctx.alloc_len = 0; in php_oci_lob_read()
324 ctx.alloc_len = (requested_len + 1) * bytes_per_char; in php_oci_lob_read()
H A Dphp_oci8_int.h166 ub4 alloc_len; member

Completed in 1669 milliseconds