Lines Matching refs:total_bytes
629 size_t total_bytes=0, read_bytes=0; in multipart_buffer_read_body() local
632 out = erealloc(out, total_bytes + read_bytes + 1); in multipart_buffer_read_body()
633 memcpy(out + total_bytes, buf, read_bytes); in multipart_buffer_read_body()
634 total_bytes += read_bytes; in multipart_buffer_read_body()
638 out[total_bytes] = '\0'; in multipart_buffer_read_body()
640 *len = total_bytes; in multipart_buffer_read_body()
658 int64_t total_bytes = 0, max_file_size = 0; local
963 total_bytes = cancel_upload = 0;
1031 if (upload_max_filesize > 0 && (zend_long)(total_bytes+blen) > upload_max_filesize) {
1036 } else if (max_file_size && ((zend_long)(total_bytes+blen) > max_file_size)) {
1060 total_bytes += wlen;
1080 if (filename[0] != '\0' && total_bytes == 0 && !cancel_upload) {
1226 if (total_bytes > ZEND_LONG_MAX) {
1228 if (_i64toa_s(total_bytes, file_size_buf, 65, 10)) {
1234 int __len = snprintf(file_size_buf, 65, "%" PRId64, total_bytes);
1241 ZVAL_LONG(&file_size, total_bytes);