Home
last modified time | relevance | path

Searched refs:size (Results 451 – 475 of 697) sorted by relevance

1...<<11121314151617181920>>...28

/PHP-8.1/ext/mysqli/tests/
H A Dmysqli_phpinfo.phpt49 'size',
/PHP-8.1/Zend/
H A Dzend_modules.h72 unsigned short size; member
H A Dzend_execute.h210 ZEND_API void* zend_vm_stack_extend(size_t size);
212 static zend_always_inline zend_vm_stack zend_vm_stack_new_page(size_t size, zend_vm_stack prev) { in zend_vm_stack_new_page() argument
213 zend_vm_stack page = (zend_vm_stack)emalloc(size); in zend_vm_stack_new_page()
216 page->end = (zval*)((char*)page + size); in zend_vm_stack_new_page()
/PHP-8.1/ext/gd/libgd/
H A Dgd_tga.c43 gdImagePtr gdImageCreateFromTgaPtr(int size, void *data) in gdImageCreateFromTgaPtr() argument
46 gdIOCtx *in = gdNewDynamicCtxEx (size, data, 0); in gdImageCreateFromTgaPtr()
/PHP-8.1/ext/curl/
H A Dinterface.c1349 return size * nmemb; in curl_write_nothing()
1358 size_t length = size * nmemb; in curl_write()
1370 return fwrite(data, size, nmemb, t->fp); in curl_write()
1386 fci.size = sizeof(fci); in curl_write()
1431 fci.size = sizeof(fci); in curl_fnmatch()
1479 fci.size = sizeof(fci); in curl_progress()
1530 ZVAL_LONG(&argv[2], (int)size * nmemb); in curl_read()
1532 fci.size = sizeof(fci); in curl_read()
1572 size_t length = size * nmemb; in curl_write_header()
1585 return fwrite(data, size, nmemb, t->fp); in curl_write_header()
[all …]
/PHP-8.1/ext/pcre/pcre2lib/sljit/
H A DsljitNativeMIPS_common.c298 compiler->size++; in push_inst()
549 if (label && label->size == word_count) { in sljit_generate_code()
551 label->size = code_ptr - code; in sljit_generate_code()
585 if (label && label->size == word_count) { in sljit_generate_code()
587 label->size = code_ptr - code; in sljit_generate_code()
1515 void *instruction, sljit_s32 size) in sljit_emit_op_custom() argument
1790 if (compiler->last_label && compiler->last_label->size == compiler->size) in sljit_emit_label()
1910 jump->addr = compiler->size; in sljit_emit_jump()
2048 jump->addr = compiler->size; in sljit_emit_cmp()
2092 jump->addr = compiler->size; in sljit_emit_ijump()
[all …]
H A DsljitLir.h355 sljit_uw size; member
409 sljit_uw size; member
535 SLJIT_API_FUNC_ATTRIBUTE void* sljit_alloc_memory(struct sljit_compiler *compiler, sljit_s32 size);
1519 void *instruction, sljit_s32 size);
/PHP-8.1/sapi/fpm/fpm/
H A Dzlog.h61 size_t size; member
/PHP-8.1/Zend/tests/
H A Dbug55509.phpt81 Fatal error: Allowed memory size of %d bytes exhausted%s(tried to allocate %d bytes) in %sbug55509.…
H A Dbug47596.phpt2 Bug #47596 (Bus error on parsing file, when file size is equal to page size)
/PHP-8.1/ext/standard/tests/file/
H A Dfread_variation3-win32-mb.phpt2 Test fread() function : usage variations - read beyond file size, read/write mode
15 Description : Read data from file of size $read_size and verifies that $expected_size no. of
27 // read the data of size $read_size
31 // check if data read is of expected size
78 // read file by giving size more than its size
H A Dfread_variation3-win32.phpt2 Test fread() function : usage variations - read beyond file size, read/write mode
15 Description : Read data from file of size $read_size and verifies that $expected_size no. of
27 // read the data of size $read_size
31 // check if data read is of expected size
78 // read file by giving size more than its size
H A Dfread_variation3.phpt2 Test fread() function : usage variations - read beyond file size, read/write mode
15 Description : Read data from file of size $read_size and verifies that $expected_size no. of
27 // read the data of size $read_size
31 // check if data read is of expected size
78 // read file by giving size more than its size
H A D007_variation10.phpt25 var_dump( fwrite($file_handle, $string) ); //Check for write operation; passes; expected:size of t…
H A D007_variation18.phpt25 var_dump( fwrite($file_handle, $string) ); //Check for write operation; passes; expected:size of t…
H A D007_variation2.phpt25 var_dump( fwrite($file_handle, $string) ); //Check for write operation; passes; expected:size of t…
H A D001.phpt66 echo "test.file size is " . filesize('test.file') . "\n";
136 test.file size is 0
H A Dfseek_ftell_rewind_variation7.phpt29 ,7,"bytes",".tmp"); //create a file with 512 bytes size
42 //close the file and check the size, the size will have increased
/PHP-8.1/Zend/asm/
H A Dmake_i386_ms_pe_masm.asm54 ; second arg of make_fcontext() == size of context-stack
56 ; negate stack size for LEA instruction (== substraction)
/PHP-8.1/ext/opcache/jit/
H A Dzend_jit_disasm.c45 uint64_t size);
108 uint64_t size) in zend_jit_disasm_add_symbol() argument
118 sym->end = (addr + size - 1); in zend_jit_disasm_add_symbol()
299 size_t size) argument
301 const void *end = (void *)((char *)start + size);
H A Dzend_jit.h151 ZEND_EXT_API int zend_jit_startup(void *jit_buffer, size_t size, bool reattached);
/PHP-8.1/ext/gmp/tests/
H A Dgmp_export.phpt10 // format is [output, size, options, expected]
/PHP-8.1/ext/dba/libinifile/
H A Dinifile.c306 static int inifile_truncate(inifile *dba, size_t size) in inifile_truncate() argument
310 if ((res=php_stream_truncate_set_size(dba->fp, size)) != 0) { in inifile_truncate()
314 php_stream_seek(dba->fp, size, SEEK_SET); in inifile_truncate()
/PHP-8.1/ext/dom/
H A Ddocument.c1464 int size, format, saveempty = 0; in PHP_METHOD() local
1510 xmlDocDumpFormatMemory(docp, &mem, &size, format); in PHP_METHOD()
1514 if (!size || !mem) { in PHP_METHOD()
1517 RETVAL_STRINGL((char *) mem, size); in PHP_METHOD()
2063 int size = xmlBufferLength(buf); in PHP_METHOD() local
2064 RETVAL_STRINGL((const char*) mem, size); in PHP_METHOD()
2073 int size = 0; in PHP_METHOD() local
2074 htmlDocDumpMemoryFormat(docp, &mem, &size, format); in PHP_METHOD()
2075 if (!size || !mem) { in PHP_METHOD()
2078 RETVAL_STRINGL((const char*) mem, size); in PHP_METHOD()
/PHP-8.1/sapi/phpdbg/
H A Dphpdbg_watch.c222 …dary(watch->addr.ptr) + phpdbg_get_total_page_size(watch->addr.ptr, watch->size) < (char *) addr) { in phpdbg_check_for_watchpoint()
232 …_page_boundary(watch->addr.ptr), phpdbg_get_total_page_size(watch->addr.ptr, watch->size), access); in phpdbg_change_watchpoint_access()
283 void phpdbg_set_addr_watchpoint(void *addr, size_t size, phpdbg_watchpoint_t *watch) { argument
285 watch->size = size;
311 memcpy(&watch->backup, watch->addr.ptr, watch->size);
321 memcpy((char *) &watch->backup + HT_WATCH_OFFSET, watch->addr.ptr, watch->size);
1070 if ((char *) page < (char *) watch->addr.ptr + watch->size) {
1103 if ((char *) page < (char *) watch->addr.ptr + watch->size) {

Completed in 146 milliseconds

1...<<11121314151617181920>>...28