Lines Matching refs:chunk_size

2 ob_start() chunk_size: confirm buffer is flushed after any output call that causes its length to eq…
8 * proto bool ob_start([ string|array user_function [, int chunk_size [, bool erase]]])
11 // In HEAD, $chunk_size value of 1 should not have any special behaviour (http://marc.info/?l=php-i…
20 echo "\n----( chunk_size: $cs, output append size: 1 )----\n";
28 echo "\n----( chunk_size: $cs, output append size: 4 )----\n";
37 ----( chunk_size: -1, output append size: 1 )----
40 ----( chunk_size: 0, output append size: 1 )----
43 ----( chunk_size: 1, output append size: 1 )----
54 ----( chunk_size: 2, output append size: 1 )----
61 ----( chunk_size: 3, output append size: 1 )----
66 ----( chunk_size: 4, output append size: 1 )----
71 ----( chunk_size: 5, output append size: 1 )----
75 ----( chunk_size: 6, output append size: 1 )----
79 ----( chunk_size: 7, output append size: 1 )----
83 ----( chunk_size: 8, output append size: 1 )----
87 ----( chunk_size: 9, output append size: 1 )----
90 ----( chunk_size: -1, output append size: 4 )----
93 ----( chunk_size: 0, output append size: 4 )----
96 ----( chunk_size: 1, output append size: 4 )----
101 ----( chunk_size: 2, output append size: 4 )----
106 ----( chunk_size: 3, output append size: 4 )----
111 ----( chunk_size: 4, output append size: 4 )----
116 ----( chunk_size: 5, output append size: 4 )----
120 ----( chunk_size: 6, output append size: 4 )----
124 ----( chunk_size: 7, output append size: 4 )----
128 ----( chunk_size: 8, output append size: 4 )----
132 ----( chunk_size: 9, output append size: 4 )----