Searched refs:out_buf (Results 1 – 5 of 5) sorted by relevance
/PHP-8.2/ext/iconv/ |
H A D | iconv.c | 445 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-8.2/ext/standard/ |
H A D | filters.c | 1342 char *out_buf = NULL; in strfilter_convert_append_bucket() local 1358 out_buf = pemalloc(out_buf_size, persistent); in strfilter_convert_append_bucket() 1360 pd = out_buf; in strfilter_convert_append_bucket() 1412 pd = out_buf; in strfilter_convert_append_bucket() 1415 pd = new_out_buf + (pd - out_buf); in strfilter_convert_append_bucket() 1417 out_buf = new_out_buf; in strfilter_convert_append_bucket() 1474 pd = out_buf; in strfilter_convert_append_bucket() 1477 pd = new_out_buf + (pd - out_buf); in strfilter_convert_append_bucket() 1479 out_buf = new_out_buf; in strfilter_convert_append_bucket() 1502 pefree(out_buf, persistent); in strfilter_convert_append_bucket() [all …]
|
/PHP-8.2/main/ |
H A D | fastcgi.c | 224 unsigned char out_buf[1024*8]; member 898 req->out_pos = req->out_buf; 1053 req->out_pos = req->out_buf; 1515 len = (int)(req->out_pos - req->out_buf); 1529 if (safe_write(req, req->out_buf, len) != len) { 1531 req->out_pos = req->out_buf; 1535 req->out_pos = req->out_buf; 1554 limit = sizeof(req->out_buf) - (req->out_pos - req->out_buf); 1564 limit = sizeof(req->out_buf) - (req->out_pos - req->out_buf); 1581 limit = (int)(sizeof(req->out_buf) - (req->out_pos - req->out_buf)); [all …]
|
/PHP-8.2/ext/mbstring/ |
H A D | php_mbregex.c | 999 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-8.2/ext/zlib/ |
H A D | zlib.c | 472 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 488 switch (status = php_zlib_inflate_rounds(&Z, max_len, out_buf, out_len)) { in php_zlib_decode() 505 *out_buf = NULL; in php_zlib_decode() 740 char *in_buf, *out_buf; \ 751 if (SUCCESS != php_zlib_decode(in_buf, in_len, &out_buf, &out_len, encoding, max_len)) { \ 754 RETVAL_STRINGL(out_buf, out_len); \ 755 efree(out_buf); \
|
Completed in 56 milliseconds