Home
last modified time | relevance | path

Searched refs:count (Results 201 – 225 of 1230) sorted by relevance

12345678910>>...50

/PHP-5.5/ext/standard/tests/file/
H A Dreadfile_variation2.phpt43 $count = readfile($linkname); // with default args
45 var_dump($count);
54 $count = readfile($linkname); // default args
56 var_dump($count);
H A Dcopy_variation5.phpt40 $count = 1;
43 echo "\n-- Iteration $count --\n";
64 $count++;
67 $count = 1;
70 $count++;
/PHP-5.5/ext/standard/tests/array/
H A Darray_shuffle_basic.phpt32 echo "this should be 0->...." . count(array_diff($arr1, $arr2)) . "\n";
33 echo "this should be 4->...." . count(array_intersect($arr1, $arr2)) . "\n";
36 echo "this should be 400->...." . count($bigarray) . "\n";
41 if (count($diffarray) < 350) {
/PHP-5.5/ext/spl/tests/
H A Dobserver_002.phpt82 function count()
84 return $this->observers->count();
119 var_dump($sub->count());
124 var_dump($sub->count());
130 var_dump($sub->count());
135 var_dump($sub->count());
H A Dobserver_009.phpt11 echo ("Count storage A: " . count($storageA));
19 echo ("Count storage B: " . count($storageB));
/PHP-5.5/ext/standard/tests/strings/
H A Dchunk_split_variation3.phpt84 for($count = 0; $count < count($values); $count++) {
85 echo "-- Iteration ".($count+1)." --\n";
86 var_dump( chunk_split($str, $chunklen, $values[$count]) );
H A Dchunk_split_variation8.phpt47 for($count = 0; $count < count($values); $count++) {
48 echo "-- Iteration ".($count+1). " --\n";
49 var_dump( chunk_split($heredoc_str, $values[$count], $ending) );
H A Dconvert_uudecode_basic.phpt33 $count = 1;
41 exit("TEST FAILED on iteration $count\n");
44 $count ++;
H A Dstrrpos_variation8.phpt19 $count = 1;
21 echo "-- Iteration $count --\n";
23 $count++;
H A Dnl2br_variation2.phpt38 $count = 1;
40 echo "-- Iteration $count --\n";
42 $count ++ ;
H A Ducwords_variation2.phpt63 $count = 1;
64 for($index =0; $index < count($heredoc_strings); $index ++) {
65 echo "-- Iteration $count --\n";
67 $count ++;
H A Dbin2hex_basic.phpt28 $count = 1;
30 echo "-- Iteration $count --\n";
32 $count ++;
H A Dsprintf_variation14.phpt28 $count = 1;
30 echo "\n-- Iteration $count --\n";
35 $count++;
H A Dsprintf_variation45.phpt28 $count = 1;
30 echo "\n-- Iteration $count --\n";
35 $count++;
H A Dsprintf_variation5.phpt32 $count = 1;
34 echo "\n-- Iteration $count --\n";
39 $count++;
H A Dstrncmp_variation9.phpt48 $count = 1;
49 for($index1 = 0; $index1 < count($strings); $index1++) {
51 $count ++;
H A Dsprintf_variation33.phpt28 $count = 1;
30 echo "\n-- Iteration $count --\n";
35 $count++;
/PHP-5.5/ext/standard/tests/general_functions/
H A Ddebug_zval_dump_v.phpt14 /* function to dump reference count of global variable,$global_var
23 /* dump value and reference count of $global_var using debug_zval_dump() */
27 /* calling function dump_globalvar() to check the reference count of local
31 /* dump value and reference count of $global_var after exiting function
33 expected: reference count of $global_var should remain the same as
40 /* dump value and reference count of $first_var */
54 /* dump value and reference count of $first_var, $ref_first_var
110 /* loop to display the variables and its reference count using
/PHP-5.5/ext/hash/
H A Dhash_haval.c260 { int i; context->count[0] = context->count[1] = 0; \
290 index = (unsigned int) ((context->count[0] >> 3) & 0x7F); in PHP_HAVALUpdate()
293 context->count[1]++; in PHP_HAVALUpdate()
295 context->count[1] += ((php_hash_uint32) inputLen >> 29); in PHP_HAVALUpdate()
335 Encode(bits + 2, context->count, 8); in PHP_HAVAL128Final()
339 index = (unsigned int) ((context->count[0] >> 3) & 0x7f); in PHP_HAVAL128Final()
389 Encode(bits + 2, context->count, 8); in PHP_HAVAL160Final()
393 index = (unsigned int) ((context->count[0] >> 3) & 0x7f); in PHP_HAVAL160Final()
443 Encode(bits + 2, context->count, 8); in PHP_HAVAL192Final()
483 Encode(bits + 2, context->count, 8); in PHP_HAVAL224Final()
[all …]
/PHP-5.5/ext/simplexml/tests/
H A D034.phpt19 echo count($p);
21 echo count($p);
/PHP-5.5/ext/standard/tests/network/
H A Dgetmxrr.phpt18 echo "Hosts: " . count( $hosts ) . ", weights: " . count( $weights ) . "\n";
/PHP-5.5/main/
H A Dphp_ticks.c72 void php_run_ticks(int count) in php_run_ticks() argument
76 …h_argument(&PG(tick_functions), (llist_apply_with_arg_func_t) php_tick_iterator, &count TSRMLS_CC); in php_run_ticks()
/PHP-5.5/ext/zlib/
H A Dzlib_fopen_wrapper.c33 static size_t php_gziop_read(php_stream *stream, char *buf, size_t count TSRMLS_DC) in php_gziop_read()
38 read = gzread(self->gz_file, buf, count); in php_gziop_read()
47 static size_t php_gziop_write(php_stream *stream, const char *buf, size_t count TSRMLS_DC) in php_gziop_write()
52 wrote = gzwrite(self->gz_file, (char *) buf, count); in php_gziop_write()
/PHP-5.5/ext/standard/tests/math/
H A Dnumber_format_multichar.phpt19 for ($i = 0; $i < count($values); $i++) {
25 for ($i = 0; $i < count($values); $i++) {
31 for ($i = 0; $i < count($values); $i++) {
/PHP-5.5/ext/dba/tests/
H A Ddba_cdb_read.phpt16 $count= 0;
21 $count++;
24 echo $count;

Completed in 68 milliseconds

12345678910>>...50