/PHP-5.3/ext/standard/ |
H A D | crypt_sha256.c | 361 size_t cnt; in php_sha256_crypt_r() local 434 for (cnt = key_len; cnt > 32; cnt -= 32) { in php_sha256_crypt_r() 441 for (cnt = key_len; cnt > 0; cnt >>= 1) { in php_sha256_crypt_r() 456 for (cnt = 0; cnt < key_len; ++cnt) { in php_sha256_crypt_r() 465 for (cnt = key_len; cnt >= 32; cnt -= 32) { in php_sha256_crypt_r() 474 for (cnt = 0; cnt < 16 + alt_result[0]; ++cnt) { in php_sha256_crypt_r() 483 for (cnt = salt_len; cnt >= 32; cnt -= 32) { in php_sha256_crypt_r() 490 for (cnt = 0; cnt < rounds; ++cnt) { in php_sha256_crypt_r() 705 int cnt, i; in main() local 711 for (cnt = 0; cnt < (int) ntests; ++cnt) { in main() [all …]
|
H A D | crypt_sha512.c | 468 for (cnt = key_len; cnt > 64; cnt -= 64) { in php_sha512_crypt_r() 475 for (cnt = key_len; cnt > 0; cnt >>= 1) { in php_sha512_crypt_r() 490 for (cnt = 0; cnt < key_len; ++cnt) { in php_sha512_crypt_r() 499 for (cnt = key_len; cnt >= 64; cnt -= 64) { in php_sha512_crypt_r() 509 for (cnt = 0; cnt < 16 + alt_result[0]; ++cnt) { in php_sha512_crypt_r() 518 for (cnt = salt_len; cnt >= 64; cnt -= 64) { in php_sha512_crypt_r() 525 for (cnt = 0; cnt < rounds; ++cnt) { in php_sha512_crypt_r() 769 int cnt; in main() local 778 for (cnt = 0; cnt < (int) ntests; ++cnt) { in main() 812 for (cnt = 0; cnt < ntests2; ++cnt) { in main() [all …]
|
/PHP-5.3/ext/sqlite/libsqlite/src/ |
H A D | encode.c | 126 int cnt[256]; in sqlite_encode_binary() local 134 memset(cnt, 0, sizeof(cnt)); in sqlite_encode_binary() 135 for(i=n-1; i>=0; i--){ cnt[in[i]]++; } in sqlite_encode_binary() 140 sum = cnt[i] + cnt[(i+1)&0xff] + cnt[(i+'\'')&0xff]; in sqlite_encode_binary()
|
H A D | os.c | 319 pLock->cnt = 0; in findLockInfo() 1324 if( id->pLock->cnt>0 ){ 1326 id->pLock->cnt++; 1346 id->pLock->cnt = 1; 1361 int cnt = 100; local 1397 int cnt = 5; local 1442 if( id->pLock->cnt==0 || (id->pLock->cnt==1 && id->locked==1) ){ 1471 int cnt = 100; local 1505 int cnt = 5; local 1554 if( id->pLock->cnt>1 ){ [all …]
|
H A D | func.c | 410 int cnt; /* Number of elements summed */ member 422 p->cnt++; in sumStep() 433 if( p && p->cnt>0 ){ in avgFinalize() 434 sqlite_set_result_double(context, p->sum/(double)p->cnt); in avgFinalize() 446 int cnt; /* Number of terms counted */ member 462 p->cnt++; 468 if( p && p->cnt>1 ){ 469 double rCnt = cnt;
|
H A D | vdbe.h | 43 int cnt; /* Number of times this instruction was executed */ member
|
H A D | vdbe.c | 1779 int i, cnt; in sqliteVdbeExec() local 1781 cnt = pOp->p1; in sqliteVdbeExec() 1782 if( cnt<0 ) cnt = -cnt; in sqliteVdbeExec() 1802 int i, cnt; in sqliteVdbeExec() local 1803 cnt = pOp->p1; in sqliteVdbeExec() 1804 if( cnt<0 ) cnt = -cnt; in sqliteVdbeExec() 1806 for(i=0; i<cnt && (pTos[1+i-cnt].flags & MEM_Null)==0; i++){} in sqliteVdbeExec() 2836 cnt = 0; in sqliteVdbeExec() 2863 cnt = 0; in sqliteVdbeExec() 2876 cnt++; in sqliteVdbeExec() [all …]
|
H A D | date.c | 100 int cnt = 0; in getDigits() local 111 return cnt; in getDigits() 117 return cnt; in getDigits() 121 cnt++; in getDigits() 123 return cnt; in getDigits()
|
/PHP-5.3/ext/standard/tests/filters/ |
H A D | bug22538.phpt | 21 $cnt = $size; 22 while (($cnt -= $str_len) > 0) { 25 $cnt = $size - ($str_len + $cnt); 33 var_dump($cnt);
|
/PHP-5.3/scripts/dev/ |
H A D | search_underscores.php | 71 $cnt = $cnt_modules + $cnt_classes + $cnt_methods; variable 78 printf("Names: %5d\n", $cnt); 79 printf("Errors: %5d (%.1f%%)\n", $err, round($err * 100 / $cnt, 1));
|
/PHP-5.3/ext/gd/tests/ |
H A D | imagefttext.phpt | 27 $cnt = 0; 31 ++$cnt; 39 return ($cnt < ($sx * $sy));
|
/PHP-5.3/tests/classes/ |
H A D | factory_and_singleton_001.phpt | 11 static private $cnt = 0; 23 test::$cnt++; 32 test::$cnt--; 48 return test::$cnt;
|
H A D | factory_and_singleton_002.phpt | 11 static private $cnt = 0; 23 test::$cnt++; 32 test::$cnt--; 48 return test::$cnt;
|
H A D | array_access_003.phpt | 30 $this->cnt = $newval;
|
H A D | array_access_004.phpt | 28 $this->cnt = $newval;
|
/PHP-5.3/ext/standard/tests/file/ |
H A D | proc_open01.phpt | 25 $cnt = ''; 45 $cnt .= $buf; 48 var_dump($cnt);
|
/PHP-5.3/Zend/tests/ |
H A D | bug43201.phpt | 18 for($cnt=0;$cnt<6;$cnt++) { 20 $c->arr[$cnt]["k2"] = $ref;
|
/PHP-5.3/ext/mysqli/tests/ |
H A D | 067.phpt | 53 $cnt = 0; 57 $cnt += $a[0] + $a[1] + $a[2]; 65 var_dump($cnt);
|
/PHP-5.3/ext/gd/libgd/ |
H A D | wbmp.c | 66 int cnt, l, accu; in putmbi() local 69 cnt = 0; in putmbi() 72 accu += i & 0x7f << 7 * cnt++; in putmbi() 75 for (l = cnt - 1; l > 0; l--) in putmbi()
|
/PHP-5.3/ext/intl/tests/ |
H A D | dateformat_localtime.phpt | 61 $cnt =0; 66 $res_str .= "\nIntlDateFormatter : ".$fmt_desc_array[$cnt]; 68 $cnt++;
|
H A D | dateformat_parse_localtime_parsepos.phpt | 51 $cnt =0; 54 $res_str .= "\nIntlDateFormatter : ".$fmt_desc_array[$cnt]; 55 $cnt++;
|
/PHP-5.3/ext/oci8/tests/ |
H A D | refcur_prefetch_2.phpt | 90 $cnt = (print_roundtrips($c) - $initial_rt); 91 echo "Number of roundtrips made with prefetch count 0 for 5 rows is $cnt\n"; 99 $cnt = (print_roundtrips($c) - $initial_rt ); 100 echo "Number of roundtrips made with prefetch count 5 for 5 rows is $cnt\n";
|
H A D | refcur_prefetch_3.phpt | 59 $cnt = (print_roundtrips($c) - $initial_rt); 60 echo "Number of roundtrips made with prefetch count 5 for 10 rows is $cnt\n";
|
/PHP-5.3/ext/fileinfo/libmagic/ |
H A D | compress.c | 193 int cnt; in sread() local 194 for (cnt = 0;; cnt++) { in sread() 210 } else if (selrv == 0 && cnt >= 5) { in sread()
|
/PHP-5.3/ext/iconv/ |
H A D | iconv.c | 588 unsigned int cnt; in _php_iconv_strlen() local 608 for (in_p = str, in_left = nbytes, cnt = 0; in_left > 0; cnt+=2) { in _php_iconv_strlen() 638 *pretval = cnt; in _php_iconv_strlen() 646 *pretval = cnt; in _php_iconv_strlen() 672 unsigned int cnt; in _php_iconv_substr() local 729 for (in_p = str, in_left = nbytes, cnt = 0; in_left > 0 && len > 0; ++cnt) { in _php_iconv_substr() 742 if (cnt >= (unsigned int)offset) { in _php_iconv_substr() 820 unsigned int cnt; in _php_iconv_strpos() local 861 for (in_p = haystk, in_left = haystk_nbytes, cnt = 0; in_left > 0; ++cnt) { in _php_iconv_strpos() 895 match_ofs = cnt; in _php_iconv_strpos() [all …]
|