Searched refs:chunks (Results 1 – 18 of 18) sorted by relevance
/php-src/ext/fileinfo/ |
H A D | create_data_file.php | 39 $chunks = str_split($dta, CHUNK_SIZE); variable 40 $chunks[count($chunks) - 1] = str_pad($chunks[count($chunks) - 1], CHUNK_SIZE, chr(0)); 42 echo 'const unsigned char php_magic_database[' . count($chunks) . '][' . CHUNK_SIZE . "] = {\n"; 43 foreach ($chunks as $chunk) {
|
/php-src/ext/standard/tests/streams/ |
H A D | bug78326.phpt | 10 $chunks = array(); 13 $chunks[] = stream_get_contents($f, 1000000); 15 var_dump(count($chunks));
|
H A D | gh10031.phpt | 17 $chunks = floor($fsize / $chunksize); // 10 chunks * 99 bytes 18 $lastchunksize = $fsize - $chunksize * $chunks; // 1 chunk * 10 bytes 22 for ($chunk = 1; $chunk <= $chunks; $chunk++) {
|
H A D | stream_set_chunk_size.phpt | 32 * the writes are made in chunks of size 1 (business as usual)
|
/php-src/ext/soap/tests/bugs/ |
H A D | bug47021.phpt | 18 $chunks = str_split($body, $n); 19 $chunks[] = ''; 21 foreach ($chunks as $k => $v) { 22 $chunks[$k] = sprintf("%08x\r\n%s\r\n", strlen($v), $v); 25 return join('', $chunks);
|
/php-src/ext/dom/tests/modern/html/parser/ |
H A D | HTMLDocument_fromFile_with_working_stream_wrapper.phpt | 40 echo "--- Stream wrapper in two chunks case ---\n"; 57 --- Stream wrapper in two chunks case ---
|
/php-src/ext/dom/tests/ |
H A D | DOMDocumentFragment_appendXML_error_003.phpt | 2 DOMDocumentFragment::appendXML() with unbalanced chunks.
|
/php-src/ext/standard/tests/strings/ |
H A D | chunk_split_variation3.phpt | 2 Test chunk_split() function : usage variations - unexpected large number of chunks
|
/php-src/ext/mbstring/tests/ |
H A D | mb_str_split_ru.phpt | 31 /* check chunks number */
|
H A D | mb_str_split_jp.phpt | 38 /* check chunks number */
|
H A D | mb_decode_numericentity.phpt | 111 // (mb_decode_numericentity splits its input into 'chunks' and processes it one
|
/php-src/ext/mysqli/tests/ |
H A D | mysqli_stmt_send_long_data_packet_size_mysqlnd.phpt | 65 …t_size is smaller than the data. You have to increase it or send smaller chunks of data. Answer wa…
|
/php-src/ext/standard/ |
H A D | string.c | 2162 size_t chunks; local 2166 chunks = srclen / chunklen; 2167 restlen = srclen - chunks * chunklen; /* srclen % chunklen */ 2171 chunks++; 2174 dest = zend_string_safe_alloc(chunks, endlen, srclen, 0);
|
/php-src/ext/mbstring/ |
H A D | mbstring.c | 1667 unsigned int chunks = ((ZSTR_LEN(str) / chunk_len) + split_len - 1) / split_len; /* round up */ in PHP_FUNCTION() local 1668 array_init_size(return_value, chunks); in PHP_FUNCTION()
|
/php-src/ |
H A D | php.ini-development | 207 ; will send that data in chunks of roughly the size you specify. 264 ; outputs chunks that are few hundreds bytes each as a result of
|
H A D | php.ini-production | 207 ; will send that data in chunks of roughly the size you specify. 264 ; outputs chunks that are few hundreds bytes each as a result of
|
/php-src/ext/fileinfo/tests/ |
H A D | magic私はガラスを食べられます | 753 >20 lelong x \b %d input chunks. 1691 # Note that title and author appear in the two 20-byte chunks 8886 # NOTE: The UNIF format uses chunks instead of a fixed header, 34201 # but data chunks remain proprietary. 38844 >0x2a leshort x \b, %d chunks
|
H A D | magic | 753 >20 lelong x \b %d input chunks. 1691 # Note that title and author appear in the two 20-byte chunks 8886 # NOTE: The UNIF format uses chunks instead of a fixed header, 34201 # but data chunks remain proprietary. 38844 >0x2a leshort x \b, %d chunks
|
Completed in 235 milliseconds