Home
last modified time | relevance | path

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

1...<<11121314151617181920>>...24

/PHP-5.5/ext/standard/tests/file/
H A Dfwrite_variation3-win32.phpt52 fill_buffer($data_to_be_written,$file_content_type,1024); //get the data of size 1024
70 // close the file, get the size and content of the file.
H A Dfwrite_variation3.phpt52 fill_buffer($data_to_be_written,$file_content_type,1024); //get the data of size 1024
71 // close the file, get the size and content of the file.
H A Dfgetcsv_variation17.phpt2 Test fgetcsv() : usage variations - with default enclosure & length less than line size
11 and length value less than the size of line being read
14 echo "*** Testing fgetcsv() : with default enclosure & length less than line size ***\n";
71 // use length as less than the actual size of the line
94 *** Testing fgetcsv() : with default enclosure & length less than line size ***
H A Dfseek_ftell_rewind_variation3.phpt41 3, "bytes", ".tmp"); //create a file with 512 bytes size
53 //close the file and check the size
H A Dfseek_ftell_rewind_variation4-win32.phpt48 fill_buffer($data_to_be_written, $file_content_type, 512); //get the data of size 512
59 //close the file and check the size
H A Dfseek_ftell_rewind_variation4.phpt48 fill_buffer($data_to_be_written, $file_content_type, 512); //get the data of size 512
59 //close the file and check the size
H A Dfseek_ftell_rewind_variation6-win32.phpt48 fill_buffer($data_to_be_written, $file_content_type, 512); //get the data of size 512
59 //close the file and check the size
H A Dfseek_ftell_rewind_variation6.phpt48 fill_buffer($data_to_be_written, $file_content_type, 512); //get the data of size 512
59 //close the file and check the size
H A Dfwrite_basic-win32.phpt45 fill_buffer($data_to_be_written, $file_content_type, 1024); //get the data of size 1024
65 // close the file, get the size and content of the file.
H A Dfwrite_basic.phpt45 fill_buffer($data_to_be_written, $file_content_type, 1024); //get the data of size 1024
65 // close the file, get the size and content of the file.
H A Dfseek_ftell_rewind_variation8-win32.phpt49 fill_buffer($data_to_be_written, $file_content_type, 512); //get the data of size 512
60 //close the file and check the size
H A Dfseek_ftell_rewind_variation8.phpt49 fill_buffer($data_to_be_written, $file_content_type, 512); //get the data of size 512
60 //close the file and check the size
/PHP-5.5/ext/ereg/regex/
H A Dregcomp.c1464 enlarge(p, size) in enlarge() argument
1466 register sopno size;
1470 if (p->ssize >= size)
1473 sp = (sop *)realloc(p->strip, size*sizeof(sop));
1479 p->ssize = size;
H A Dregcomp.ih45 static void enlarge(register struct parse *p, sopno size);
/PHP-5.5/ext/opcache/
H A Dshared_alloc_win32.c316 shared_segment->size = requested_size; in create_segments()
H A Dzend_accelerator_util_funcs.c824 …target, HashTable *source, unique_copy_ctor_func_t pCopyConstructor, uint size, int ignore_dups, v… argument
832 if (zend_hash_quick_add(target, p->arKey, p->nKeyLength, p->h, p->pData, size, &t) == SUCCESS) {
840 …if (zend_hash_quick_update(target, p->arKey, p->nKeyLength, p->h, p->pData, size, &t) == SUCCESS) {
853 …if (!zend_hash_index_exists(target, p->h) && zend_hash_index_update(target, p->h, p->pData, size, …
/PHP-5.5/ext/standard/
H A Darray.c2085 int size = length; in PHP_FUNCTION() local
2096 size = num_in - offset + length; in PHP_FUNCTION()
2098 size = num_in - offset; in PHP_FUNCTION()
2102 array_init_size(return_value, size > 0 ? size : 0); in PHP_FUNCTION()
4442 long size, current = 0; in PHP_FUNCTION() local
4456 if (size < 1) { in PHP_FUNCTION()
4463 if (size > num_in) { in PHP_FUNCTION()
4464 size = num_in > 0 ? num_in : 1; in PHP_FUNCTION()
4467 array_init_size(return_value, ((num_in - 1) / size) + 1); in PHP_FUNCTION()
4474 array_init_size(chunk, size); in PHP_FUNCTION()
[all …]
/PHP-5.5/ext/oci8/
H A Doci8_interface.c1739 long size; local
1741 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rl", &z_statement, &size) == FAILURE) {
1747 if (php_oci_statement_set_prefetch(statement, size TSRMLS_CC)) {
2289 sb4 size = 0; local
2304 if (php_oci_collection_size(collection, &size TSRMLS_CC)) {
2307 RETURN_LONG(size);
/PHP-5.5/Zend/
H A Dzend_API.h44 size_t size; member
231 #define ZEND_FCI_INITIALIZED(fci) ((fci).size != 0)
361 #define array_init_size(arg, size) _array_init((arg), (size) ZEND_FILE_LINE_CC) argument
365 ZEND_API int _array_init(zval *arg, uint size ZEND_FILE_LINE_DC);
/PHP-5.5/ext/pcre/pcrelib/testdata/
H A Dtestinput112 shown when the link size is 2. This is just a doublecheck test to ensure the
/PHP-5.5/ext/standard/tests/array/
H A Darray_pad_variation2.phpt6 * Description: Returns a copy of input array padded with pad_value to size pad_size
/PHP-5.5/ext/zip/
H A Dzip_stream.c154 ssb->sb.st_size = sb.size; in php_zip_ops_stat()
/PHP-5.5/ext/mysqlnd/
H A Dmysqlnd_structs.h51 MYSQLND_MEMORY_POOL_CHUNK* (*get_chunk)(MYSQLND_MEMORY_POOL * pool, unsigned int size TSRMLS_DC);
59 unsigned int size; member
60 enum_func_status (*resize_chunk)(MYSQLND_MEMORY_POOL_CHUNK * chunk, unsigned int size TSRMLS_DC);
270 size_t size; member
/PHP-5.5/ext/ftp/
H A Dphp_ftp.c109 ZEND_ARG_INFO(0, size)
631 long size, ret; in PHP_FUNCTION() local
634 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rl|z", &z_ftp, &size, &zresponse) == FAILURE… in PHP_FUNCTION()
640 ret = ftp_alloc(ftp, size, zresponse ? &response : NULL); in PHP_FUNCTION()
/PHP-5.5/
H A Dphp.ini-development215 ; will send that data in chunks of roughly the size you specify.
256 ; compression. If you prefer a larger chunk size for better
329 ; http://php.net/realpath-cache-size
656 ; Maximum size of POST data that PHP will accept.
659 ; http://php.net/post-max-size
790 ; Maximum allowed size for uploaded files.
958 ;stack size limit imposed by the Operating System).
1266 ; http://php.net/oci8.statement-cache-size
1812 ; A default size of the shared memory segment
1840 ; The OPcache shared memory storage size.
[all …]

Completed in 147 milliseconds

1...<<11121314151617181920>>...24