/PHP-8.3/ext/dba/libflatfile/ |
H A D | flatfile.c | 105 char *buf = emalloc(buf_size); in flatfile_delete() 116 if (num >= buf_size) { in flatfile_delete() 139 if (num >= buf_size) { in flatfile_delete() 154 char *buf = emalloc(buf_size); in flatfile_findkey() 166 if (num >= buf_size) { in flatfile_findkey() 182 if (num >= buf_size) { in flatfile_findkey() 198 char *buf = emalloc(buf_size); in flatfile_firstkey() 206 if (num >= buf_size) { in flatfile_firstkey() 222 if (num >= buf_size) { in flatfile_firstkey() 248 if (num >= buf_size) { in flatfile_nextkey() [all …]
|
/PHP-8.3/sapi/fpm/fpm/ |
H A D | zlog.c | 135 return buf_size - space_left; in zlog_truncate_buf() 146 len = vsnprintf(buf, buf_size, fmt, ap); in zlog_external() 149 if (len >= buf_size) { in zlog_external() 150 len = zlog_truncate_buf(buf, buf_size, 0); in zlog_external() 177 len = zlog_print_time(&tv, buf, buf_size); in zlog_buf_prefix() 201 size_t buf_size = MAX_BUF_LENGTH; in vzlog() local 207 zlog_external(flags, buf, buf_size, fmt, args); in vzlog() 217 if (len > buf_size - 1) { in vzlog() 221 if (len >= buf_size) { in vzlog() 228 len += snprintf(buf + len, buf_size - len, in vzlog() [all …]
|
/PHP-8.3/ext/standard/ |
H A D | quot_print.c | 57 size_t decoded_len, buf_size; in php_quot_print_decode() local 83 i = length, p1 = str; buf_size = length; in php_quot_print_decode() 87 buf_size -= 2; in php_quot_print_decode() 95 retval = zend_string_alloc(buf_size, 0); in php_quot_print_decode()
|
/PHP-8.3/Zend/ |
H A D | zend_gc.c | 236 (GC_G(first_unused) != GC_G(buf_size)) 482 gc_globals->buf_size = GC_INVALID; in gc_globals_ctor_ex() 555 GC_G(buf_size) = GC_DEFAULT_BUF_SIZE; in gc_enable() 583 if (GC_G(buf_size) >= GC_MAX_BUF_SIZE) { in gc_grow_root_buffer() 592 if (GC_G(buf_size) < GC_BUF_GROW_STEP) { in gc_grow_root_buffer() 593 new_size = GC_G(buf_size) * 2; in gc_grow_root_buffer() 595 new_size = GC_G(buf_size) + GC_BUF_GROW_STEP; in gc_grow_root_buffer() 601 GC_G(buf_size) = new_size; in gc_grow_root_buffer() 618 if (new_threshold > GC_G(buf_size)) { in gc_adjust_threshold() 621 if (new_threshold <= GC_G(buf_size)) { in gc_adjust_threshold() [all …]
|
H A D | zend_gc.h | 38 uint32_t buf_size; member
|
H A D | zend_builtin_functions.c | 149 add_assoc_long_ex(return_value, "buffer_size", sizeof("buffer_size")-1, (long)status.buf_size); in ZEND_FUNCTION()
|
/PHP-8.3/ext/mysqlnd/ |
H A D | mysqlnd_vio.c | 700 unsigned int buf_size; in MYSQLND_METHOD() local 703 buf_size = MYSQLND_G(net_read_buffer_size); /* this is long, cast to unsigned int*/ in MYSQLND_METHOD() 704 net->data->m.set_client_option(net, MYSQLND_OPT_NET_READ_BUFFER_SIZE, (char *)&buf_size); in MYSQLND_METHOD() 706 buf_size = MYSQLND_G(net_read_timeout); /* this is long, cast to unsigned int*/ in MYSQLND_METHOD() 707 net->data->m.set_client_option(net, MYSQL_OPT_READ_TIMEOUT, (char *)&buf_size); in MYSQLND_METHOD()
|
H A D | mysqlnd_protocol_frame_codec.c | 445 unsigned int buf_size; in MYSQLND_METHOD() local 448 buf_size = MYSQLND_G(net_cmd_buffer_size); /* this is long, cast to unsigned int*/ in MYSQLND_METHOD() 449 pfc->data->m.set_client_option(pfc, MYSQLND_OPT_NET_CMD_BUFFER_SIZE, (char *) &buf_size); in MYSQLND_METHOD()
|
H A D | mysqlnd_wireprotocol.c | 289 zend_uchar * const buf, const size_t buf_size, in mysqlnd_read_packet_header_and_body() argument 294 DBG_INF_FMT("buf=%p size=%zu", buf, buf_size); in mysqlnd_read_packet_header_and_body() 301 if (buf_size < packet_header->size) { in mysqlnd_read_packet_header_and_body() 303 buf_size, packet_header->size, packet_header->size - buf_size); in mysqlnd_read_packet_header_and_body()
|
/PHP-8.3/ext/soap/ |
H A D | php_xml.c | 133 xmlDocPtr soap_xmlParseMemory(const void *buf, size_t buf_size) in soap_xmlParseMemory() argument 142 ctxt = xmlCreateMemoryParserCtxt(buf, buf_size); in soap_xmlParseMemory()
|
H A D | php_http.c | 1468 int buf_size = 0; in get_http_body() local 1471 if (sscanf(headerbuf, "%x", &buf_size) > 0 ) { in get_http_body() 1472 if (buf_size > 0) { in get_http_body() 1475 if (http_buf_size + buf_size + 1 < 0) { in get_http_body() 1483 http_buf = zend_string_realloc(http_buf, http_buf_size + buf_size, 0); in get_http_body() 1485 http_buf = zend_string_alloc(buf_size, 0); in get_http_body() 1488 while (len_size < buf_size) { in get_http_body() 1489 … ssize_t len_read = php_stream_read(stream, http_buf->val + http_buf_size, buf_size - len_size); in get_http_body() 1519 if (buf_size == 0) { in get_http_body()
|
H A D | soap.c | 2097 int buf_size; local 2104 xmlDocDumpMemory(request, (xmlChar**)&buf, &buf_size); 2114 ZVAL_STRINGL(Z_CLIENT_LAST_REQUEST_P(this_ptr), buf, buf_size); 2118 ZVAL_STRINGL(¶ms[0], buf, buf_size);
|
/PHP-8.3/ext/exif/ |
H A D | exif.c | 1374 static char *exif_get_tagname_key(int tag_num, char *buf, size_t buf_size, tag_table_type tag_table) in exif_get_tagname_key() argument 1380 snprintf(buf, buf_size, "UndefinedTag:0x%04X", tag_num); in exif_get_tagname_key()
|