Home
last modified time | relevance | path

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

/php-src/ext/iconv/
H A Diconv.c445 zend_string *out_buf; in php_iconv_string() local
464 out_p = ZSTR_VAL(out_buf); in php_iconv_string()
485 out_buf = zend_string_extend(out_buf, bsz, 0); in php_iconv_string()
486 out_p = ZSTR_VAL(out_buf); in php_iconv_string()
507 out_buf = zend_string_extend(out_buf, bsz, 0); in php_iconv_string()
542 *out = out_buf; in php_iconv_string()
2352 char *out_buf = NULL; in php_iconv_stream_filter_append_bucket() local
2369 pd = out_buf; in php_iconv_stream_filter_append_bucket()
2419 pd = out_buf; in php_iconv_stream_filter_append_bucket()
2480 pd = out_buf; in php_iconv_stream_filter_append_bucket()
[all …]
/php-src/ext/standard/
H A Dfilters.c1326 char *out_buf = NULL; in strfilter_convert_append_bucket() local
1342 out_buf = pemalloc(out_buf_size, persistent); in strfilter_convert_append_bucket()
1344 pd = out_buf; in strfilter_convert_append_bucket()
1396 pd = out_buf; in strfilter_convert_append_bucket()
1399 pd = new_out_buf + (pd - out_buf); in strfilter_convert_append_bucket()
1401 out_buf = new_out_buf; in strfilter_convert_append_bucket()
1458 pd = out_buf; in strfilter_convert_append_bucket()
1461 pd = new_out_buf + (pd - out_buf); in strfilter_convert_append_bucket()
1463 out_buf = new_out_buf; in strfilter_convert_append_bucket()
1486 pefree(out_buf, persistent); in strfilter_convert_append_bucket()
[all …]
/php-src/main/
H A Dfastcgi.c222 unsigned char out_buf[1024*8]; member
891 req->out_pos = req->out_buf; in fcgi_init_request()
1046 req->out_pos = req->out_buf; in fcgi_read_request()
1516 len = (int)(req->out_pos - req->out_buf);
1530 if (safe_write(req, req->out_buf, len) != len) {
1532 req->out_pos = req->out_buf;
1536 req->out_pos = req->out_buf;
1555 limit = sizeof(req->out_buf) - (req->out_pos - req->out_buf);
1565 limit = sizeof(req->out_buf) - (req->out_pos - req->out_buf);
1582 limit = (int)(sizeof(req->out_buf) - (req->out_pos - req->out_buf));
[all …]
/php-src/ext/mbstring/
H A Dphp_mbregex.c999 smart_str out_buf = {0}; in _php_mb_regex_ereg_replace_exec() local
1057 pbuf = &out_buf; in _php_mb_regex_ereg_replace_exec()
1076 smart_str_appendl(&out_buf, (char *)pos, (size_t)((OnigUChar *)(string + regs->beg[0]) - pos)); in _php_mb_regex_ereg_replace_exec()
1106 smart_str_appendl(&out_buf, Z_STRVAL(retval), Z_STRLEN(retval)); in _php_mb_regex_ereg_replace_exec()
1124 smart_str_appendl(&out_buf, (char *)pos, 1); in _php_mb_regex_ereg_replace_exec()
1131 smart_str_appendl(&out_buf, (char *)pos, string_lim - pos); in _php_mb_regex_ereg_replace_exec()
1146 smart_str_free(&out_buf); in _php_mb_regex_ereg_replace_exec()
1150 RETURN_STR(smart_str_extract(&out_buf)); in _php_mb_regex_ereg_replace_exec()
/php-src/ext/zlib/
H A Dzlib.c470 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
486 switch (status = php_zlib_inflate_rounds(&Z, max_len, out_buf, out_len)) { in php_zlib_decode()
503 *out_buf = NULL; in php_zlib_decode()
738 char *in_buf, *out_buf; \
749 if (SUCCESS != php_zlib_decode(in_buf, in_len, &out_buf, &out_len, encoding, max_len)) { \
752 RETVAL_STRINGL(out_buf, out_len); \
753 efree(out_buf); \

Completed in 36 milliseconds