Home
last modified time | relevance | path

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

/PHP-7.1/ext/pcre/
H A Dphp_pcre.c1184 size_t alloc_len; /* Actual allocated length */ in php_pcre_replace_impl() local
1247 alloc_len = 0; in php_pcre_replace_impl()
1311 if (new_len >= alloc_len) { in php_pcre_replace_impl()
1312 alloc_len = zend_safe_address_guarded(2, new_len, alloc_len); in php_pcre_replace_impl()
1314 result = zend_string_alloc(alloc_len, 0); in php_pcre_replace_impl()
1316 result = zend_string_extend(result, alloc_len, 0); in php_pcre_replace_impl()
1356 if (new_len >= alloc_len) { in php_pcre_replace_impl()
1357 alloc_len = zend_safe_address_guarded(2, new_len, alloc_len); in php_pcre_replace_impl()
1359 result = zend_string_alloc(alloc_len, 0); in php_pcre_replace_impl()
1398 if (new_len >= alloc_len) { in php_pcre_replace_impl()
[all …]
/PHP-7.1/ext/oci8/
H A Doci8_lob.c177 if ((*(ctx->lob_len) + lenp) > (ctx->alloc_len)) { in php_oci_lob_callback()
190 if ((*(ctx->lob_len) + lenp) > ctx->alloc_len) { in php_oci_lob_callback()
262 ctx.alloc_len = 0; in php_oci_lob_read()
327 ctx.alloc_len = ((ub4) requested_len + 1) * bytes_per_char; in php_oci_lob_read()
H A Dphp_oci8_int.h193 ub4 alloc_len; member

Completed in 28 milliseconds