Home
last modified time | relevance | path

Searched refs:chunks (Results 1 – 25 of 30) sorted by relevance

12

/PHP-7.4/ext/standard/tests/streams/
H A Dbug78326.phpt10 $chunks = array();
13 $chunks[] = stream_get_contents($f, 1000000);
15 var_dump(count($chunks));
H A Dproc_open_bug51800.phpt16 after taking inappropriately long. Pipes have to be read simultaneously in smaller chunks,
H A Dstream_set_chunk_size.phpt31 * the writes are made in chunks of size 1 (business as usual)
/PHP-7.4/ext/soap/tests/
H A Dbug47021.phpt19 $chunks = str_split($body, $n);
20 $chunks[] = '';
22 foreach ($chunks as $k => $v) {
23 $chunks[$k] = sprintf("%08x\r\n%s\r\n", strlen($v), $v);
26 return join('', $chunks);
/PHP-7.4/ext/standard/tests/array/
H A Darray_chunk_variation7.phpt6 * Description: Split array into chunks
7 * : Chunks an array into size large chunks
H A Darray_chunk_basic1.phpt6 * Description: Split array into chunks
7 * Chunks an array into size large chunks.
H A Darray_chunk_variation6.phpt6 * Description: Split array into chunks
7 * : Chunks an array into size large chunks
H A Darray_chunk_variation4.phpt6 * Description: Split array into chunks
7 * : Chunks an array into size large chunks
H A Darray_chunk_basic2.phpt6 * Description: Split array into chunks
7 * Chunks an array into size large chunks.
H A Darray_chunk_variation5.phpt6 * Description: Split array into chunks
7 * : Chunks an array into size large chunks
/PHP-7.4/ext/dom/tests/
H A DDOMDocumentFragment_appendXML_error_003.phpt2 DOMDocumentFragment::appendXML() with unbalanced chunks.
/PHP-7.4/ext/oci8/tests/
H A Dlob_030.phpt51 echo "Test 4: A CLOB of 1049028 bytes (the value used for chunks in the code)\n";
72 Test 4: A CLOB of 1049028 bytes (the value used for chunks in the code)
H A Dbug70700.phpt2 Tests for LOBs with multibyte strings, reading them out in chunks
/PHP-7.4/ext/standard/tests/strings/
H A Dstr_split_basic.phpt7 specified, break the string down into chunks each
H A Dstr_split_variation3.phpt7 specified, break the string down into chunks each
H A Dstr_split_variation7_64bit.phpt11 specified, break the string down into chunks each
H A Dstr_split_variation4.phpt7 specified, break the string down into chunks each
H A Dstr_split_variation5.phpt7 specified, break the string down into chunks each
H A Dstr_split_variation6.phpt11 specified, break the string down into chunks each
H A Dstr_split_variation6_64bit.phpt11 specified, break the string down into chunks each
H A Dstr_split_variation7.phpt11 specified, break the string down into chunks each
/PHP-7.4/ext/mbstring/tests/
H A Dmb_str_split_jp.phpt32 /* check chunks number */
H A Dmb_str_split_ru.phpt32 /* check chunks number */
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_stmt_send_long_data_packet_size_mysqlnd.phpt70 …t_size is smaller than the data. You have to increase it or send smaller chunks of data. Answer wa…
/PHP-7.4/ext/mbstring/
H A Dmbstring.c2349 size_t mb_len, chunks, chunk_len; in PHP_FUNCTION() local
2469 chunks = (mb_len + split_length - 1) / split_length; /* (round up idiom) */ in PHP_FUNCTION()
2470 array_init_size(return_value, chunks); in PHP_FUNCTION()
2471 if (chunks != 0) { in PHP_FUNCTION()
2474 for (i = 0; i < chunks - 1; p += chunk_len, ++i) { in PHP_FUNCTION()

Completed in 87 milliseconds

12