Home
last modified time | relevance | path

Searched refs:count (Results 251 – 275 of 1230) sorted by relevance

1...<<11121314151617181920>>...50

/PHP-5.5/ext/standard/tests/strings/
H A Dsprintf_variation48.phpt30 $count = 1;
32 echo "\n-- Iteration $count --\n";
37 $count++;
H A Dchunk_split_variation9.phpt45 for($count = 0; $count < count($values); $count++) {
46 echo "-- Iteration $count --\n";
47 var_dump( chunk_split($str, $chunklen, $values[$count]) );
H A Dstrtr_variation6.phpt79 $count = 1;
80 for($index = 0; $index < count($from_arr); $index++) {
81 echo "-- Iteration $count --\n";
84 $count ++;
H A Dchr_variation1.phpt70 $count = 1;
72 echo "-- Iteration $count --\n";
74 $count ++;
H A Dsprintf_variation36.phpt30 $count = 1;
32 echo "\n-- Iteration $count --\n";
37 $count++;
H A Dsprintf_variation51.phpt28 $count = 1;
30 echo "\n-- Iteration $count --\n";
35 $count++;
H A Dstrrev_variation1.phpt60 $count = 1;
61 for( $index = 0; $index < count($strings); $index++ ) {
62 echo "\n-- Iteration $count --\n";
64 $count ++;
H A Dstrrev_variation2.phpt60 $count = 1;
61 for( $index = 0; $index < count($strings); $index++ ) {
62 echo "\n-- Iteration $count --\n";
64 $count ++;
H A Dstrtr_variation3.phpt18 $count = 1;
53 for($index = 0; $index < count($str_arr); $index++) {
54 echo "-- Iteration $count --\n";
64 $count++;
H A Dhtmlspecialchars_decode_variation3.phpt65 $count = 1;
66 for($index =0; $index < count($res_heredoc_strings); $index ++) {
67 echo "-- Iteration $count --\n";
69 $count++;
H A Dstrip_tags_variation5.phpt71 $count = 1;
72 for($index =0; $index < count($res_heredoc_strings); $index ++) {
73 echo "-- Iteration $count --\n";
75 $count++;
/PHP-5.5/ext/spl/internal/
H A Dspldoublylinkedlist.inc53 if (count($this->_llist) == 0) {
64 if (count($this->_llist) == 0) {
104 public function count()
106 return count($this->_llist);
113 return ($this->count() == 0);
148 $this->_it_pos = count($this->_llist)-1;
217 $realOffset = count($this->_llist)-$offset;
243 $realOffset = count($this->_llist)-$offset;
264 $realOffset = count($this->_llist)-$offset;
/PHP-5.5/Zend/
H A Dzend_execute.h168 #define ZEND_VM_STACK_GROW_IF_NEEDED(count) \ argument
170 if (UNEXPECTED((count) > \
172 zend_vm_stack_extend((count) TSRMLS_CC); \
176 static zend_always_inline zend_vm_stack zend_vm_stack_new_page(int count) { in zend_vm_stack_new_page() argument
177 …m_stack page = (zend_vm_stack)emalloc(ZEND_MM_ALIGNED_SIZE(sizeof(*page)) + sizeof(void*) * count); in zend_vm_stack_new_page()
180 page->end = page->top + count; in zend_vm_stack_new_page()
201 static zend_always_inline void zend_vm_stack_extend(int count TSRMLS_DC) in zend_vm_stack_extend()
203 …zend_vm_stack p = zend_vm_stack_new_page(count >= ZEND_VM_STACK_PAGE_SIZE ? count : ZEND_VM_STACK_… in zend_vm_stack_extend()
/PHP-5.5/ext/spl/tests/
H A Dobserver_003.phpt23 var_dump(count($storage));
35 var_dump(count($storage2));
H A Dheap_002.phpt21 echo $h->count()."\n";
27 echo $h->count()."\n";
H A Dheap_001.phpt21 echo $h->count()."\n";
27 echo $h->count()."\n";
/PHP-5.5/ext/pcre/pcrelib/testdata/
H A Dtestoutput136 Capturing subpattern count = 0
15 Capturing subpattern count = 0
/PHP-5.5/scripts/dev/generate-phpt/src/setup/
H A DgtCommandLineOptions.php44 if(count($argv) < 2) {
48 for ($i=1; $i<count($argv); $i++) {
/PHP-5.5/ext/phar/
H A Dstream.h33 static size_t phar_stream_write(php_stream *stream, const char *buf, size_t count TSRMLS_DC);
34 static size_t phar_stream_read( php_stream *stream, char *buf, size_t count TSRMLS_DC);
/PHP-5.5/ext/standard/tests/general_functions/
H A Dget_defined_constants_basic.phpt19 $n1 = count(get_defined_constants());
22 $n2 = count($arr2);
/PHP-5.5/Zend/tests/
H A Dbug38779.phpt14 function stream_read($count) {
15 $ret = substr($this->data, $this->position, $count);
/PHP-5.5/ext/intl/msgformat/
H A Dmsgformat_format.c37 int count; in msgfmt_do_format() local
42 count = zend_hash_num_elements(Z_ARRVAL_P(args)); in msgfmt_do_format()
45 zend_hash_init(args_copy, count, NULL, ZVAL_PTR_DTOR, 0); in msgfmt_do_format()
/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_pconnect.phpt27 while (count($connections)) {
45 while (count($connections) && $left > 0) {
61 while (count($connections)) {
/PHP-5.5/ext/standard/tests/file/
H A Dis_dir_variation4.phpt37 $count = 1;
40 echo "\n-- Iteration $count --\n";
42 $count++;
/PHP-5.5/ext/standard/tests/array/
H A Darray_chunk_variation6.phpt35 $count = 1;
41 echo "\n-- Iteration $count --\n";
45 $count++;

Completed in 39 milliseconds

1...<<11121314151617181920>>...50