Home
last modified time | relevance | path

Searched refs:count (Results 176 – 200 of 1230) sorted by relevance

12345678910>>...50

/PHP-5.5/ext/standard/
H A Dsha1.c167 context->count[0] = context->count[1] = 0; in PHP_SHA1Init()
194 context->count[1]++; in PHP_SHA1Update()
195 context->count[1] += ((php_uint32) inputLen >> 29); in PHP_SHA1Update()
230 bits[7] = context->count[0] & 0xFF; in PHP_SHA1Final()
231 bits[6] = (context->count[0] >> 8) & 0xFF; in PHP_SHA1Final()
232 bits[5] = (context->count[0] >> 16) & 0xFF; in PHP_SHA1Final()
233 bits[4] = (context->count[0] >> 24) & 0xFF; in PHP_SHA1Final()
234 bits[3] = context->count[1] & 0xFF; in PHP_SHA1Final()
235 bits[2] = (context->count[1] >> 8) & 0xFF; in PHP_SHA1Final()
236 bits[1] = (context->count[1] >> 16) & 0xFF; in PHP_SHA1Final()
[all …]
H A Dcrypt_freesec.c465 int count, struct php_crypt_extended_data *data) in do_des() argument
474 if (count == 0) { in do_des()
476 } else if (count > 0) { in do_des()
486 count = -count; in do_des()
512 while (count--) { in do_des()
620 uint32_t count, salt, l, r0, r1, keybuf[2]; in _crypt_extended_r() local
645 for (i = 1, count = 0; i < 5; i++) { in _crypt_extended_r()
649 count |= value << (i - 1) * 6; in _crypt_extended_r()
651 if (!count) in _crypt_extended_r()
687 count = 25; in _crypt_extended_r()
[all …]
/PHP-5.5/ext/mcrypt/
H A Dmcrypt.c513 int i, count; in PHP_MINFO_FUNCTION() local
518 if (count == 0) { in PHP_MINFO_FUNCTION()
521 for (i = 0; i < count; i++) { in PHP_MINFO_FUNCTION()
529 if (count == 0) { in PHP_MINFO_FUNCTION()
532 for (i = 0; i < count; i++) { in PHP_MINFO_FUNCTION()
769 int i, count = 0; in PHP_FUNCTION() local
994 int i, count = 0; in PHP_FUNCTION() local
1016 int i, count; in PHP_FUNCTION() local
1026 if (count == 0) { in PHP_FUNCTION()
1043 int i, count; in PHP_FUNCTION() local
[all …]
/PHP-5.5/ext/spl/tests/
H A Dbug67360.phpt10 var_dump(count($Iterator) === count($array));
H A Ddllist_001.phpt38 echo count($dll)."\n";
39 echo $dll->count()."\n";
47 echo count($dll)."\n";
H A Dspl_iterator_caching_count_error.phpt2 SPL: Caching iterator count() cache failure
11 $i->count();
/PHP-5.5/ext/pdo_oci/tests/
H A Dpdo_oci_attr_client.phpt21 if (count($s) > 1 && (($s[0] == 10 && $s[1] >= 2) || $s[0] >= 11)) {
22 if (count($s) != 5) {
29 if (count($s) != 2) {
/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/standard/tests/strings/
H A Dstr_split_variation1.phpt85 for($count = 0; $count < count($values); $count++) {
86 echo "-- Iteration ".($count+1)." --\n";
87 var_dump( str_split($values[$count], $split_length) );
H A Dget_html_translation_table_basic9.phpt12 var_dump( count($tt) );
18 var_dump( count($tt) );
23 var_dump( count($tt) );
29 var_dump( count($tt) );
H A Dnumber_format_basic.phpt27 for ($i = 0; $i < count($values); $i++) {
33 for ($i = 0; $i < count($values); $i++) {
39 for ($i = 0; $i < count($values); $i++) {
45 for ($i = 0; $i < count($values); $i++) {
H A Dvfprintf_error2.phpt40 Warning: Wrong parameter count for vfprintf() in %s on line %d
43 Warning: Wrong parameter count for vfprintf() in %s on line %d
46 Warning: Wrong parameter count for vfprintf() in %s on line %d
H A Dstrtr_variation1.phpt18 $count = 1;
44 for($index = 0; $index < count($str_arr); $index++) {
45 echo "-- Iteration $count --\n";
55 $count++;
H A Dstrtr_variation2.phpt19 $count = 1;
48 for($index = 0; $index < count($str_arr); $index++) {
49 echo "-- Iteration $count --\n";
59 $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_variation2.phpt27 for($count = 0; $count < count($source); $count++) {
28 echo "-- Iteration ".($count + 1)." --\n";
29 var_dump( token_get_all($source[$count]));
/PHP-5.5/scripts/dev/generate-phpt/src/testcase/
H A DgtVariationContainerFunction.php32 …$numberOfArguments = count($this->function->getMandatoryArgumentNames()) + count($this->function->…
H A DgtVariationContainerMethod.php31 …$numberOfArguments = count($this->method->getMandatoryArgumentNames()) + count($this->method->getO…
/PHP-5.5/ext/spl/
H A Dspl_dllist.c79 int count; member
129 llist->count = 0; in spl_ptr_llist_init()
202 llist->count++; in spl_ptr_llist_unshift()
226 llist->count++; in spl_ptr_llist_push()
250 llist->count--; in spl_ptr_llist_pop()
305 llist->count--; in spl_ptr_llist_shift()
497 *count = 0; in spl_dllist_object_count_elements()
693 long count; in SPL_METHOD() local
701 RETURN_LONG(count); in SPL_METHOD()
709 long count; in SPL_METHOD() local
[all …]
/PHP-5.5/ext/ldap/tests/
H A Dldap_explode_dn.phpt43 ["count"]=>
53 ["count"]=>
65 ["count"]=>
75 ["count"]=>
/PHP-5.5/ext/gd/libgd/
H A Dgd_gif_in.c331 unsigned char count; in GetDataBlock_() local
333 if (! ReadOK(fd,&count,1)) { in GetDataBlock_()
337 *ZeroDataBlockP = count == 0; in GetDataBlock_()
339 if ((count != 0) && (! ReadOK(fd, buf, count))) { in GetDataBlock_()
343 return count; in GetDataBlock_()
375 unsigned char count; in GetCode_() local
398 scd->last_byte = 2 + count; in GetCode_()
400 scd->lastbit = (2+count)*8 ; in GetCode_()
482 int count; in LWZReadByte_() local
488 while ((count = GetDataBlock(fd, buf, ZeroDataBlockP)) > 0) in LWZReadByte_()
[all …]
/PHP-5.5/ext/mbstring/tests/
H A Dmb_split-compat-01.phpt13 echo count($a) . "\n";
14 for ($i = 0; $i < count($a); $i++) {
/PHP-5.5/ext/standard/tests/array/
H A Dbug43505.phpt10 public function count() {
21 $t = count($obj);
/PHP-5.5/ext/hash/
H A Dphp_hash_md.h64 php_hash_uint32 count[2]; /* number of bits, modulo 2^64 (lsb first) */ member
80 php_hash_uint32 count[2]; member
/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()

Completed in 122 milliseconds

12345678910>>...50