Home
last modified time | relevance | path

Searched refs:out_buf (Results 1 – 5 of 5) sorted by relevance

/PHP-7.4/ext/iconv/
H A Diconv.c608 zend_string *out_buf; in php_iconv_string()
627 out_p = ZSTR_VAL(out_buf); in php_iconv_string()
648 out_buf = zend_string_extend(out_buf, bsz, 0); in php_iconv_string()
649 out_p = ZSTR_VAL(out_buf); in php_iconv_string()
670 out_buf = zend_string_extend(out_buf, bsz, 0); in php_iconv_string()
705 *out = out_buf; in php_iconv_string()
2624 char *out_buf = NULL; in php_iconv_stream_filter_append_bucket() local
2641 pd = out_buf; in php_iconv_stream_filter_append_bucket()
2692 pd = out_buf; in php_iconv_stream_filter_append_bucket()
2760 pd = out_buf; in php_iconv_stream_filter_append_bucket()
[all …]
/PHP-7.4/ext/standard/
H A Dfilters.c1474 char *out_buf = NULL; in strfilter_convert_append_bucket() local
1490 out_buf = pemalloc(out_buf_size, persistent); in strfilter_convert_append_bucket()
1492 pd = out_buf; in strfilter_convert_append_bucket()
1544 pd = out_buf; in strfilter_convert_append_bucket()
1547 pd = new_out_buf + (pd - out_buf); in strfilter_convert_append_bucket()
1549 out_buf = new_out_buf; in strfilter_convert_append_bucket()
1606 pd = out_buf; in strfilter_convert_append_bucket()
1609 pd = new_out_buf + (pd - out_buf); in strfilter_convert_append_bucket()
1611 out_buf = new_out_buf; in strfilter_convert_append_bucket()
1634 pefree(out_buf, persistent); in strfilter_convert_append_bucket()
[all …]
/PHP-7.4/ext/mbstring/
H A Dphp_mbregex.c1026 smart_str out_buf = {0}; in _php_mb_regex_ereg_replace_exec() local
1117 pbuf = &out_buf; in _php_mb_regex_ereg_replace_exec()
1166 smart_str_free(&out_buf); in _php_mb_regex_ereg_replace_exec()
1173 smart_str_appendl(&out_buf, Z_STRVAL(v), Z_STRLEN(v)); in _php_mb_regex_ereg_replace_exec()
1201 smart_str_appendl(&out_buf, Z_STRVAL(retval), Z_STRLEN(retval)); in _php_mb_regex_ereg_replace_exec()
1217 smart_str_appendl(&out_buf, (char *)pos, 1); in _php_mb_regex_ereg_replace_exec()
1224 smart_str_appendl(&out_buf, (char *)pos, string_lim - pos); in _php_mb_regex_ereg_replace_exec()
1239 smart_str_free(&out_buf); in _php_mb_regex_ereg_replace_exec()
1241 } else if (out_buf.s) { in _php_mb_regex_ereg_replace_exec()
1242 smart_str_0(&out_buf); in _php_mb_regex_ereg_replace_exec()
[all …]
/PHP-7.4/main/
H A Dfastcgi.c226 unsigned char out_buf[1024*8]; member
901 req->out_pos = req->out_buf; in fcgi_init_request()
1056 req->out_pos = req->out_buf; in fcgi_read_request()
1517 len = (int)(req->out_pos - req->out_buf);
1531 if (safe_write(req, req->out_buf, len) != len) {
1533 req->out_pos = req->out_buf;
1537 req->out_pos = req->out_buf;
1556 limit = sizeof(req->out_buf) - (req->out_pos - req->out_buf);
1566 limit = sizeof(req->out_buf) - (req->out_pos - req->out_buf);
1583 limit = (int)(sizeof(req->out_buf) - (req->out_pos - req->out_buf));
[all …]
/PHP-7.4/ext/zlib/
H A Dzlib.c422 static int php_zlib_decode(const char *in_buf, size_t in_len, char **out_buf, size_t *out_len, int … in php_zlib_decode() argument
438 switch (status = php_zlib_inflate_rounds(&Z, max_len, out_buf, out_len)) { in php_zlib_decode()
455 *out_buf = NULL; in php_zlib_decode()
695 char *in_buf, *out_buf; \
706 if (SUCCESS != php_zlib_decode(in_buf, in_len, &out_buf, &out_len, encoding, max_len)) { \
709 RETVAL_STRINGL(out_buf, out_len); \
710 efree(out_buf); \

Completed in 32 milliseconds