Home
last modified time | relevance | path

Searched refs:new_size (Results 1 – 25 of 27) sorted by relevance

12

/PHP-7.4/ext/standard/tests/file/
H A Duserstreams_005.phpt15 function stream_truncate($new_size) {
16 echo "truncation with new_size=$new_size\n";
21 function stream_truncate($new_size) {
22 echo "truncation with new_size=$new_size\n";
52 truncation with new_size=0
55 truncation with new_size=10
62 truncation with new_size=0
H A Dftruncate_variation3-win32.phpt55 $new_size = filesize($filename)/2;
58 var_dump( ftruncate($file_handle, $new_size) ); // truncate it
63 var_dump( filesize($filename) ); // new file size = $new_size
H A Dftruncate_variation3.phpt55 $new_size = filesize($filename)/2;
58 var_dump( ftruncate($file_handle, $new_size) ); // truncate it
63 var_dump( filesize($filename) ); // new file size = $new_size
H A Dftruncate_variation6-win32.phpt58 $new_size = 15;
61 if(ftruncate($file_handle, $new_size) ){// truncate it
62 echo "File content after truncating file to $new_size size : ";
H A Dftruncate_variation6.phpt58 $new_size = 15;
61 if(ftruncate($file_handle, $new_size) ){// truncate it
62 echo "File content after truncating file to $new_size size : ";
H A Dftruncate_variation1-win32-mb.phpt55 $new_size = 0;
58 var_dump( ftruncate($file_handle, $new_size) ); // truncate it
H A Dftruncate_variation1-win32.phpt55 $new_size = 0;
58 var_dump( ftruncate($file_handle, $new_size) ); // truncate it
H A Dftruncate_variation1.phpt55 $new_size = 0;
58 var_dump( ftruncate($file_handle, $new_size) ); // truncate it
H A Dftruncate_variation2.phpt56 $new_size = filesize($filename);
59 var_dump( ftruncate($file_handle, $new_size) ); // truncate it
H A Dftruncate_variation2-win32.phpt56 $new_size = filesize($filename);
59 var_dump( ftruncate($file_handle, $new_size) ); // truncate it
H A Dftruncate_variation7-win32.phpt57 $new_size = 200;
60 var_dump( ftruncate($file_handle, $new_size) ); // truncate it
H A Dftruncate_variation7.phpt57 $new_size = 200;
60 var_dump( ftruncate($file_handle, $new_size) ); // truncate it
H A Dftruncate_variation5-win32.phpt56 $new_size = filesize($filename) + 100;
59 var_dump( ftruncate($file_handle, $new_size) ); // truncate it
H A Dftruncate_variation5.phpt56 $new_size = filesize($filename) + 100;
59 var_dump( ftruncate($file_handle, $new_size) ); // truncate it
H A Dftruncate_variation4-win32.phpt56 $new_size = -1000;
59 var_dump( ftruncate($file_handle, $new_size) ); // truncate it
/PHP-7.4/ext/mysqlnd/
H A Dmysqlnd_alloc.h34 void * (*m_erealloc)(void *ptr, size_t new_size MYSQLND_MEM_D);
35 void * (*m_perealloc)(void *ptr, size_t new_size, zend_bool persistent MYSQLND_MEM_D);
40 void * (*m_realloc)(void *ptr, size_t new_size MYSQLND_MEM_D);
56 #define mnd_erealloc(ptr, new_size) mysqlnd_allocator.m_erealloc((ptr), (new_size) MYSQLND_MEM_C) argument
57 #define mnd_perealloc(ptr, new_size, p) mysqlnd_allocator.m_perealloc((ptr), (new_size), (p) MYSQLN… argument
62 #define mnd_realloc(ptr, new_size) mysqlnd_allocator.m_realloc((ptr), (new_size) MYSQLND_MEM_C) argument
H A Dmysqlnd_alloc.c248 ret = erealloc_rel(REAL_PTR(ptr), REAL_SIZE(new_size)); in _mysqlnd_erealloc()
254 ret = erealloc_rel(REAL_PTR(ptr), REAL_SIZE(new_size)); in _mysqlnd_erealloc()
259 *(size_t *) ret = new_size; in _mysqlnd_erealloc()
300 *(size_t *) ret = new_size; in _mysqlnd_perealloc()
454 TRACE_ALLOC_INF_FMT("ptr=%p new_size=%lu ", new_size, ptr); in _mysqlnd_realloc()
460 ret = realloc(REAL_PTR(ptr), REAL_SIZE(new_size)); in _mysqlnd_realloc()
467 ret = realloc(REAL_PTR(ptr), REAL_SIZE(new_size)); in _mysqlnd_realloc()
473 *(size_t *) ret = new_size; in _mysqlnd_realloc()
687 return erealloc_rel(ptr, new_size); in mysqlnd_zend_mm_erealloc()
695 return perealloc_rel(ptr, new_size, persistent); in mysqlnd_zend_mm_perealloc()
[all …]
/PHP-7.4/Zend/
H A Dzend_alloc.c749 zend_mm_munmap((char*)addr + new_size, old_size - new_size);
1429 size_t new_size; local
1452 if (new_size == old_size) {
1459 } else if (new_size < old_size) {
1466 heap->size -= old_size - new_size;
1517 size_t new_size; local
1596 if (new_size == old_size) {
1606 } else if (new_size < old_size) {
1764 if (UNEXPECTED(new_size < size)) {
1818 heap->real_size += new_size;
[all …]
H A Dzend_objects_API.c129 uint32_t new_size = 2 * EG(objects_store).size; in zend_objects_store_put_cold() local
131 …t_buckets = (zend_object **) erealloc(EG(objects_store).object_buckets, new_size * sizeof(zend_obj… in zend_objects_store_put_cold()
133 EG(objects_store).size = new_size; in zend_objects_store_put_cold()
H A Dzend_gc.c529 size_t new_size; in gc_grow_root_buffer() local
541 new_size = GC_G(buf_size) * 2; in gc_grow_root_buffer()
543 new_size = GC_G(buf_size) + GC_BUF_GROW_STEP; in gc_grow_root_buffer()
545 if (new_size > GC_MAX_BUF_SIZE) { in gc_grow_root_buffer()
546 new_size = GC_MAX_BUF_SIZE; in gc_grow_root_buffer()
548 GC_G(buf) = perealloc(GC_G(buf), sizeof(gc_root_buffer) * new_size, 1); in gc_grow_root_buffer()
549 GC_G(buf_size) = new_size; in gc_grow_root_buffer()
H A Dzend_alloc.h298 …zend_mm_chunk_truncate_t)(zend_mm_storage *storage, void *chunk, size_t old_size, size_t new_size);
299 …(*zend_mm_chunk_extend_t)(zend_mm_storage *storage, void *chunk, size_t old_size, size_t new_size);
/PHP-7.4/main/streams/
H A Dplain_wrapper.c890 ptrdiff_t new_size = *(ptrdiff_t*)ptrparam; in php_stdiop_set_option() local
891 if (new_size < 0) { in php_stdiop_set_option()
908 sz.QuadPart = new_size; in php_stdiop_set_option()
911 sz.LowPart = new_size; in php_stdiop_set_option()
924 … return ftruncate(fd, new_size) == 0 ? PHP_STREAM_OPTION_RETURN_OK : PHP_STREAM_OPTION_RETURN_ERR; in php_stdiop_set_option()
H A Duserspace.c1013 ptrdiff_t new_size = *(ptrdiff_t*) ptrparam; in php_userstreamop_set_option() local
1014 if (new_size >= 0 && new_size <= (ptrdiff_t)LONG_MAX) { in php_userstreamop_set_option()
1015 ZVAL_LONG(&args[0], (zend_long)new_size); in php_userstreamop_set_option()
/PHP-7.4/ext/standard/
H A Dhtml.c1056 size_t new_size; in php_unescape_html_entities() local
1070 new_size = TRAVERSE_FOR_ENTITIES_EXPAND_SIZE(ZSTR_LEN(str)); in php_unescape_html_entities()
1071 if (ZSTR_LEN(str) > new_size) { in php_unescape_html_entities()
1076 ret = zend_string_alloc(new_size, 0); in php_unescape_html_entities()
/PHP-7.4/ext/exif/
H A Dexif.c2872 size_t new_size, new_move, new_value; in exif_thumbnail_build() local
2896 new_size = 8 + 2 + info_list->count * 12 + 4; in exif_thumbnail_build()
2898 …nfo, E_NOTICE, "Thumbnail: size of signature + directory(%d): 0x%02X", info_list->count, new_size); in exif_thumbnail_build()
2900 new_value= new_size; /* offset for ifd values outside ifd directory */ in exif_thumbnail_build()
2905 new_size += byte_count; in exif_thumbnail_build()
2908 new_move = new_size; in exif_thumbnail_build()
2909 new_data = safe_erealloc(ImageInfo->Thumbnail.data, 1, ImageInfo->Thumbnail.size, new_size); in exif_thumbnail_build()
2912 ImageInfo->Thumbnail.size += new_size; in exif_thumbnail_build()

Completed in 90 milliseconds

12