/PHP-8.2/ext/standard/tests/file/ |
H A D | userstreams_005.phpt | 16 function stream_truncate($new_size) { 17 echo "truncation with new_size=$new_size\n"; 22 function stream_truncate($new_size) { 23 echo "truncation with new_size=$new_size\n"; 58 truncation with new_size=0 61 truncation with new_size=10 66 truncation with new_size=0
|
H A D | ftruncate_variation3.phpt | 50 $new_size = (int)(filesize($filename)/2); 53 var_dump( ftruncate($file_handle, $new_size) ); // truncate it 58 var_dump( filesize($filename) ); // new file size = $new_size
|
H A D | ftruncate_variation3-win32.phpt | 50 $new_size = (int)(filesize($filename)/2); 53 var_dump( ftruncate($file_handle, $new_size) ); // truncate it 58 var_dump( filesize($filename) ); // new file size = $new_size
|
H A D | ftruncate_variation6-win32.phpt | 53 $new_size = 15; 56 if(ftruncate($file_handle, $new_size) ){// truncate it 57 echo "File content after truncating file to $new_size size : ";
|
H A D | ftruncate_variation6.phpt | 53 $new_size = 15; 56 if(ftruncate($file_handle, $new_size) ){// truncate it 57 echo "File content after truncating file to $new_size size : ";
|
H A D | ftruncate_variation7-win32.phpt | 52 $new_size = 200; 55 var_dump( ftruncate($file_handle, $new_size) ); // truncate it
|
H A D | ftruncate_variation1-win32-mb.phpt | 50 $new_size = 0; 53 var_dump( ftruncate($file_handle, $new_size) ); // truncate it
|
H A D | ftruncate_variation1-win32.phpt | 50 $new_size = 0; 53 var_dump( ftruncate($file_handle, $new_size) ); // truncate it
|
H A D | ftruncate_variation1.phpt | 50 $new_size = 0; 53 var_dump( ftruncate($file_handle, $new_size) ); // truncate it
|
H A D | ftruncate_variation7.phpt | 52 $new_size = 200; 55 var_dump( ftruncate($file_handle, $new_size) ); // truncate it
|
H A D | ftruncate_variation5-win32.phpt | 51 $new_size = filesize($filename) + 100; 54 var_dump( ftruncate($file_handle, $new_size) ); // truncate it
|
H A D | ftruncate_variation5.phpt | 51 $new_size = filesize($filename) + 100; 54 var_dump( ftruncate($file_handle, $new_size) ); // truncate it
|
H A D | ftruncate_variation2-win32.phpt | 51 $new_size = filesize($filename); 54 var_dump( ftruncate($file_handle, $new_size) ); // truncate it
|
H A D | ftruncate_variation2.phpt | 51 $new_size = filesize($filename); 54 var_dump( ftruncate($file_handle, $new_size) ); // truncate it
|
/PHP-8.2/ext/odbc/ |
H A D | odbc_utils.c | 62 size_t new_size = php_odbc_connstr_estimate_quote_length(ZSTR_VAL(str)); in PHP_FUNCTION() local 63 zend_string *new_string = zend_string_alloc(new_size, 0); in PHP_FUNCTION() 64 php_odbc_connstr_quote(ZSTR_VAL(new_string), ZSTR_VAL(str), new_size); in PHP_FUNCTION()
|
/PHP-8.2/ext/mysqlnd/ |
H A D | mysqlnd_alloc.c | 153 static void * _mysqlnd_erealloc(void *ptr, size_t new_size MYSQLND_MEM_D) in _mysqlnd_erealloc() 159 TRACE_ALLOC_INF_FMT("ptr=%p old_size=%zu, new_size=%zu", ptr, old_size, new_size); in _mysqlnd_erealloc() 160 ret = erealloc_rel(REAL_PTR(ptr), REAL_SIZE(new_size)); in _mysqlnd_erealloc() 164 *(size_t *) ret = new_size; in _mysqlnd_erealloc() 173 static void * _mysqlnd_perealloc(void *ptr, size_t new_size, bool persistent MYSQLND_MEM_D) in _mysqlnd_perealloc() argument 180 ret = perealloc_rel(REAL_PTR(ptr), REAL_SIZE(new_size), persistent); in _mysqlnd_perealloc() 187 *(size_t *) ret = new_size; in _mysqlnd_perealloc() 188 MYSQLND_INC_GLOBAL_STATISTIC_W_VALUE2(s1, 1, s2, new_size); in _mysqlnd_perealloc() 398 static void * mysqlnd_zend_mm_erealloc(void *ptr, size_t new_size MYSQLND_MEM_D) in mysqlnd_zend_mm_erealloc() 400 return erealloc_rel(ptr, new_size); in mysqlnd_zend_mm_erealloc() [all …]
|
H A D | mysqlnd_alloc.h | 32 void * (*m_erealloc)(void *ptr, size_t new_size MYSQLND_MEM_D); 33 void * (*m_perealloc)(void *ptr, size_t new_size, bool persistent MYSQLND_MEM_D); 47 #define mnd_erealloc(ptr, new_size) mysqlnd_allocator.m_erealloc((ptr), (new_size) MYSQLND_MEM_C) argument 48 #define mnd_perealloc(ptr, new_size, p) mysqlnd_allocator.m_perealloc((ptr), (new_size), (p) MYSQLN… argument
|
/PHP-8.2/Zend/ |
H A D | zend_alloc.c | 807 zend_mm_munmap((char*)addr + new_size, old_size - new_size); 1487 size_t new_size; local 1510 if (new_size == old_size) { 1517 } else if (new_size < old_size) { 1575 size_t new_size; local 1654 if (new_size == old_size) { 1822 if (UNEXPECTED(new_size < size)) { 1876 heap->real_size += new_size; 2863 if (new_size > old_size) { 2873 tracked_add(heap, ptr, new_size); [all …]
|
H A D | zend_objects_API.c | 134 uint32_t new_size = 2 * EG(objects_store).size; in zend_objects_store_put_cold() local 136 …t_buckets = (zend_object **) erealloc(EG(objects_store).object_buckets, new_size * sizeof(zend_obj… in zend_objects_store_put_cold() 138 EG(objects_store).size = new_size; in zend_objects_store_put_cold()
|
H A D | zend_gc.c | 530 size_t new_size; in gc_grow_root_buffer() local 542 new_size = GC_G(buf_size) * 2; in gc_grow_root_buffer() 544 new_size = GC_G(buf_size) + GC_BUF_GROW_STEP; in gc_grow_root_buffer() 546 if (new_size > GC_MAX_BUF_SIZE) { in gc_grow_root_buffer() 547 new_size = GC_MAX_BUF_SIZE; in gc_grow_root_buffer() 549 GC_G(buf) = perealloc(GC_G(buf), sizeof(gc_root_buffer) * new_size, 1); in gc_grow_root_buffer() 550 GC_G(buf_size) = new_size; in gc_grow_root_buffer()
|
H A D | zend_alloc.h | 295 …zend_mm_chunk_truncate_t)(zend_mm_storage *storage, void *chunk, size_t old_size, size_t new_size); 296 …(*zend_mm_chunk_extend_t)(zend_mm_storage *storage, void *chunk, size_t old_size, size_t new_size);
|
/PHP-8.2/main/streams/ |
H A D | plain_wrapper.c | 943 ptrdiff_t new_size = *(ptrdiff_t*)ptrparam; in php_stdiop_set_option() local 944 if (new_size < 0) { in php_stdiop_set_option() 961 sz.QuadPart = new_size; in php_stdiop_set_option() 964 sz.LowPart = new_size; in php_stdiop_set_option() 977 … return ftruncate(fd, new_size) == 0 ? PHP_STREAM_OPTION_RETURN_OK : PHP_STREAM_OPTION_RETURN_ERR; in php_stdiop_set_option()
|
H A D | userspace.c | 971 ptrdiff_t new_size = *(ptrdiff_t*) ptrparam; in php_userstreamop_set_option() local 972 if (new_size >= 0 && new_size <= (ptrdiff_t)LONG_MAX) { in php_userstreamop_set_option() 973 ZVAL_LONG(&args[0], (zend_long)new_size); in php_userstreamop_set_option()
|
/PHP-8.2/ext/standard/ |
H A D | html.c | 985 size_t new_size; in php_unescape_html_entities() local 999 new_size = TRAVERSE_FOR_ENTITIES_EXPAND_SIZE(ZSTR_LEN(str)); in php_unescape_html_entities() 1000 if (ZSTR_LEN(str) > new_size) { in php_unescape_html_entities() 1005 ret = zend_string_alloc(new_size, 0); in php_unescape_html_entities()
|
/PHP-8.2/ext/exif/ |
H A D | exif.c | 2881 size_t new_size, new_move, new_value; in exif_thumbnail_build() local 2902 new_size = 8 + 2 + info_list->count * 12 + 4; in exif_thumbnail_build() 2904 …nfo, E_NOTICE, "Thumbnail: size of signature + directory(%d): 0x%02X", info_list->count, new_size); in exif_thumbnail_build() 2906 new_value= new_size; /* offset for ifd values outside ifd directory */ in exif_thumbnail_build() 2911 new_size += byte_count; in exif_thumbnail_build() 2914 new_move = new_size; in exif_thumbnail_build() 2915 new_data = safe_erealloc(ImageInfo->Thumbnail.data, 1, ImageInfo->Thumbnail.size, new_size); in exif_thumbnail_build() 2918 ImageInfo->Thumbnail.size += new_size; in exif_thumbnail_build()
|