Home
last modified time | relevance | path

Searched refs:count (Results 76 – 100 of 1230) sorted by last modified time

12345678910>>...50

/PHP-5.5/ext/zlib/tests/
H A Dgzgetc_basic_1.phpt22 $count = 0;
24 $count++;
28 echo "\ncharacters counted=$count\n";
/PHP-5.5/ext/zip/tests/
H A Dbug51353.phpt35 echo count($a) . "\n";
/PHP-5.5/ext/zip/
H A Dzip_stream.c31 static size_t php_zip_ops_read(php_stream *stream, char *buf, size_t count TSRMLS_DC) in php_zip_ops_read()
37 n = zip_fread(self->zf, buf, count); in php_zip_ops_read()
47 if (n == 0 || n < (ssize_t)count) { in php_zip_ops_read()
58 static size_t php_zip_ops_write(php_stream *stream, const char *buf, size_t count TSRMLS_DC) in php_zip_ops_write()
64 return count; in php_zip_ops_write()
/PHP-5.5/ext/xmlrpc/libxmlrpc/
H A Dbase64.c122 int count; in base64_decode_xmlrpc() local
184 count = 0; in base64_decode_xmlrpc()
185 while (count < i) { in base64_decode_xmlrpc()
186 buffer_add(bfr, o[count++]); in base64_decode_xmlrpc()
/PHP-5.5/ext/xml/tests/
H A Dbug26614.phpt2 Bug #26614 (CDATA sections skipped on line count)
14 further investigation has shown that not only line count
H A Dbug26614_libxml.phpt2 Bug #26614 (CDATA sections skipped on line count)
14 further investigation has shown that not only line count
H A Dbug50576.phpt13 <ns1:count>
15 </ns1:count>
/PHP-5.5/ext/tokenizer/tests/
H A Dtoken_get_all_variation1.phpt85 for($count = 0; $count < count($source_values); $count++) {
86 echo "--Iteration ".($count + 1)." --\n";
87 var_dump( token_get_all($source_values[$count]));
H A Dtoken_get_all_variation10.phpt43 for($count = 0; $count < count($source); $count++) {
44 echo "-- Iteration ".($count + 1)." --\n";
45 var_dump( token_get_all($source[$count]));
H A Dtoken_get_all_variation11.phpt58 $source = '<?php for($count=0; $count < 5; $count++) {
59 echo $count;
691 string(6) "$count"
722 string(6) "$count"
771 string(6) "$count"
830 string(6) "$count"
H A Dtoken_get_all_variation2.phpt27 for($count = 0; $count < count($source); $count++) {
28 echo "-- Iteration ".($count + 1)." --\n";
29 var_dump( token_get_all($source[$count]));
H A Dtoken_get_all_variation3.phpt31 for($count = 0; $count < count($source); $count++) {
32 echo "-- Iteration ".($count + 1)." --\n";
33 var_dump( token_get_all($source[$count]));
/PHP-5.5/ext/tokenizer/
H A Dtokenizer.php15 $count = count($tokens); variable
17 for ($i = 0; $i < $count; $i++) {
/PHP-5.5/ext/sysvmsg/tests/
H A D004.phpt15 var_dump(count(array_diff_assoc($arr, msg_stat_queue($q))) == 0);
21 var_dump(count(array_diff_assoc($arr, msg_stat_queue($q))) == 0);
27 var_dump(count(array_diff_assoc($arr, msg_stat_queue($q))) == 0);
34 var_dump(count(array_diff_assoc($arr, msg_stat_queue($q))) == 0);
/PHP-5.5/ext/sysvsem/
H A Dphp_sysvsem.h43 int count; /* Acquire count for auto-release. */ member
H A Dsysvsem.c145 if (sem_ptr->count == -1 || !sem_ptr->auto_release) {
157 if (sem_ptr->count) {
160 sop[1].sem_op = sem_ptr->count;
193 int count; in PHP_FUNCTION() local
246 count = semctl(semid, SYSVSEM_USAGE, GETVAL, NULL); in PHP_FUNCTION()
247 if (count == -1) { in PHP_FUNCTION()
253 if (count == 1) { in PHP_FUNCTION()
289 sem_ptr->count = 0; in PHP_FUNCTION()
310 if (!acquire && sem_ptr->count == 0) { in php_sysvsem_semop()
326 sem_ptr->count -= acquire ? -1 : 1; in php_sysvsem_semop()
[all …]
/PHP-5.5/ext/tidy/examples/
H A Ddumpit5.php72 if(count($node->attribute)) {
/PHP-5.5/ext/standard/
H A Dvar.c620 int count; in php_var_serialize_class() local
626 count = zend_hash_num_elements(HASH_OF(retval_ptr)); in php_var_serialize_class()
628 --count; in php_var_serialize_class()
630 smart_str_append_long(buf, count); in php_var_serialize_class()
633 if (count > 0) { in php_var_serialize_class()
/PHP-5.5/ext/standard/tests/strings/
H A Dvsprintf_error.phpt39 Warning: Wrong parameter count for vsprintf() in %s on line %d
44 Warning: Wrong parameter count for vsprintf() in %s on line %d
H A Dwordwrap_variation1.phpt81 for($index = 0; $index < count($values); $index ++) {
H A Dwordwrap_variation2.phpt79 for($index = 0; $index < count($values); $index ++) {
H A Dwordwrap_variation3.phpt81 for($index = 0; $index < count($values); $index ++) {
H A Dwordwrap_variation4.phpt72 for($index = 0; $index < count($values); $index ++) {
H A Dvprintf_error.phpt39 Warning: Wrong parameter count for vprintf() in %s on line %d
44 Warning: Wrong parameter count for vprintf() in %s on line %d
H A Ducwords_basic.phpt36 for($index = 0; $index < count($str_array); $index++) {

Completed in 44 milliseconds

12345678910>>...50