Home
last modified time | relevance | path

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

12

/PHP-7.3/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-win32.phpt56 $new_size = filesize($filename);
59 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_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
/PHP-7.3/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.c267 ret = erealloc_rel(REAL_PTR(ptr), REAL_SIZE(new_size)); in _mysqlnd_erealloc()
277 *(size_t *) ret = new_size; in _mysqlnd_erealloc()
308 ret = perealloc_rel(REAL_PTR(ptr), REAL_SIZE(new_size), persistent); in _mysqlnd_perealloc()
321 *(size_t *) ret = new_size; in _mysqlnd_perealloc()
322 MYSQLND_INC_GLOBAL_STATISTIC_W_VALUE2(s1, 1, s2, new_size); in _mysqlnd_perealloc()
486 TRACE_ALLOC_INF_FMT("ptr=%p new_size=%lu ", new_size, ptr); in _mysqlnd_realloc()
493 ret = realloc(REAL_PTR(ptr), REAL_SIZE(new_size)); in _mysqlnd_realloc()
504 *(size_t *) ret = new_size; in _mysqlnd_realloc()
718 return erealloc_rel(ptr, new_size); in mysqlnd_zend_mm_erealloc()
726 return perealloc_rel(ptr, new_size, persistent); in mysqlnd_zend_mm_perealloc()
[all …]
/PHP-7.3/Zend/
H A Dzend_alloc.c792 zend_mm_munmap((char*)addr + new_size, old_size - new_size);
1465 size_t new_size; local
1488 if (new_size == old_size) {
1495 } else if (new_size < old_size) {
1502 heap->size -= old_size - new_size;
1533 heap->size += new_size - old_size;
1553 size_t new_size; local
1634 if (new_size == old_size) {
1644 } else if (new_size < old_size) {
1802 if (UNEXPECTED(new_size < size)) {
[all …]
H A Dzend_objects_API.c143 uint32_t new_size = 2 * EG(objects_store).size; in zend_objects_store_put() local
144 …t_buckets = (zend_object **) erealloc(EG(objects_store).object_buckets, new_size * sizeof(zend_obj… in zend_objects_store_put()
146 EG(objects_store).size = new_size; in zend_objects_store_put()
H A Dzend_gc.c521 size_t new_size; in gc_grow_root_buffer() local
533 new_size = GC_G(buf_size) * 2; in gc_grow_root_buffer()
535 new_size = GC_G(buf_size) + GC_BUF_GROW_STEP; in gc_grow_root_buffer()
537 if (new_size > GC_MAX_BUF_SIZE) { in gc_grow_root_buffer()
538 new_size = GC_MAX_BUF_SIZE; in gc_grow_root_buffer()
540 GC_G(buf) = perealloc(GC_G(buf), sizeof(gc_root_buffer) * new_size, 1); in gc_grow_root_buffer()
541 GC_G(buf_size) = new_size; in gc_grow_root_buffer()
H A Dzend_alloc.h297 …zend_mm_chunk_truncate_t)(zend_mm_storage *storage, void *chunk, size_t old_size, size_t new_size);
298 …(*zend_mm_chunk_extend_t)(zend_mm_storage *storage, void *chunk, size_t old_size, size_t new_size);
/PHP-7.3/ext/mbstring/oniguruma/src/
H A Dst.c104 new_size(size) in new_size() function
156 size = new_size(size); /* round up to prime number */
327 new_num_bins = new_size(old_num_bins+1);
/PHP-7.3/main/streams/
H A Dplain_wrapper.c860 ptrdiff_t new_size = *(ptrdiff_t*)ptrparam; in php_stdiop_set_option() local
861 if (new_size < 0) { in php_stdiop_set_option()
878 sz.QuadPart = new_size; in php_stdiop_set_option()
881 sz.LowPart = new_size; in php_stdiop_set_option()
894 … return ftruncate(fd, new_size) == 0 ? PHP_STREAM_OPTION_RETURN_OK : PHP_STREAM_OPTION_RETURN_ERR; in php_stdiop_set_option()
H A Duserspace.c997 ptrdiff_t new_size = *(ptrdiff_t*) ptrparam; in php_userstreamop_set_option() local
998 if (new_size >= 0 && new_size <= (ptrdiff_t)LONG_MAX) { in php_userstreamop_set_option()
999 ZVAL_LONG(&args[0], (zend_long)new_size); in php_userstreamop_set_option()
/PHP-7.3/ext/standard/
H A Dhtml.c1101 size_t new_size; in php_unescape_html_entities() local
1115 new_size = TRAVERSE_FOR_ENTITIES_EXPAND_SIZE(ZSTR_LEN(str)); in php_unescape_html_entities()
1116 if (ZSTR_LEN(str) > new_size) { in php_unescape_html_entities()
1121 ret = zend_string_alloc(new_size, 0); in php_unescape_html_entities()
/PHP-7.3/ext/exif/
H A Dexif.c2835 size_t new_size, new_move, new_value; in exif_thumbnail_build() local
2859 new_size = 8 + 2 + info_list->count * 12 + 4; in exif_thumbnail_build()
2861 …nfo, E_NOTICE, "Thumbnail: size of signature + directory(%d): 0x%02X", info_list->count, new_size); in exif_thumbnail_build()
2863 new_value= new_size; /* offset for ifd values outside ifd directory */ in exif_thumbnail_build()
2868 new_size += byte_count; in exif_thumbnail_build()
2871 new_move = new_size; in exif_thumbnail_build()
2872 new_data = safe_erealloc(ImageInfo->Thumbnail.data, 1, ImageInfo->Thumbnail.size, new_size); in exif_thumbnail_build()
2875 ImageInfo->Thumbnail.size += new_size; in exif_thumbnail_build()

Completed in 561 milliseconds

12