Home
last modified time | relevance | path

Searched refs:i (Results 251 – 275 of 1753) sorted by relevance

1...<<11121314151617181920>>...71

/PHP-5.5/ext/session/tests/
H A Dbug72562.phpt21 for ($i = 0; $i < 5; $i++) {
22 $v[$i] = $fakezval.$i;
31 for ($i = 0; $i < 8; $i++) {
H A Dsession_encode_variation4.phpt33 string(52) "foo|a:3:{i:0;i:1;i:1;i:2;i:2;i:3;}guff|R:1;blah|R:1;"
/PHP-5.5/ext/readline/
H A Dreadline_cli.c212 int i; in cli_is_valid_code() local
217 for (i = 0; i < len; ++i) { in cli_is_valid_code()
220 switch(code[i]) { in cli_is_valid_code()
260 i++; in cli_is_valid_code()
268 i++; in cli_is_valid_code()
281 i++; in cli_is_valid_code()
289 if (i + 2 < len && code[i+1] == '<' && code[i+2] == '<') { in cli_is_valid_code()
290 i += 2; in cli_is_valid_code()
330 if (code[i-1] == '*' && code[i] == '/') { in cli_is_valid_code()
356 …lse if (code[i - (heredoc_len + 2)] == '\n' && !strncmp(code + i - heredoc_len - 1, heredoc_tag, h… in cli_is_valid_code()
[all …]
/PHP-5.5/ext/mcrypt/tests/
H A Dmcrypt_ecb_3des_decrypt.phpt53 for ($i = 0; $i < sizeof($keys); $i++) {
54 echo "\nkey length=".strlen($keys[$i])."\n";
55 special_var_dump(mcrypt_ecb($cipher, $keys[$i], base64_decode($data1[$i]), $mode, $iv));
60 for ($i = 0; $i < sizeof($ivs); $i++) {
61 echo "\niv length=".strlen($ivs[$i])."\n";
62 special_var_dump(mcrypt_ecb($cipher, $key, base64_decode($data2[$i]), $mode, $ivs[$i]));
H A Dbug55169.phpt9 for( $i=1; $i<=64; $i = $i*2 ){
10 echo 'Input: '. $i . PHP_EOL;
11 $random = mcrypt_create_iv( $i, MCRYPT_DEV_URANDOM );
/PHP-5.5/ext/standard/
H A Darray.c974 for (i = 1; i < argc; i++) { in PHP_FUNCTION()
1025 for (i = 1; i < argc; i++) { in PHP_FUNCTION()
1916 for (i = 0; i < argc; i++) { in PHP_FUNCTION()
2354 for (i = 0; i < argc; i++) { in php_array_merge_or_replace_wrapper()
2370 for (i = 0; i < argc; i++) { in php_array_merge_or_replace_wrapper()
2855 arTmp[i].i = i; in PHP_FUNCTION()
2986 for (i = 0; i < argc; i++) { in php_array_intersect_key()
2999 for (i = 1; i < argc; i++) { in php_array_intersect_key()
3014 for (i = 1; i < argc; i++) { in php_array_intersect_key()
3404 for (i = 0; i < argc; i++) { in php_array_diff_key()
[all …]
H A Dcyr_convert.c208 int i; in php_convert_cyr_string() local
261 for( i = 0; i<length; i++) in php_convert_cyr_string()
263 tmp = (from_table == NULL)? str[i] : from_table[ str[i] ]; in php_convert_cyr_string()
264 str[i] = (to_table == NULL) ? tmp : to_table[tmp + 256]; in php_convert_cyr_string()
/PHP-5.5/ext/wddx/
H A Dwddx.c234 for (i = 0; i < stack->top; i++) { in wddx_stack_destroy()
747 if (atts) for (i=0; atts[i]; i++) { in php_wddx_push_element()
775 if (atts) for (i = 0; atts[i]; i++) { in php_wddx_push_element()
796 if (atts) for (i = 0; atts[i]; i++) { in php_wddx_push_element()
837 if (atts) for (i = 0; atts[i]; i++) { in php_wddx_push_element()
838 if (!strcmp(atts[i], EL_NAME) && atts[++i] && atts[i][0]) { in php_wddx_push_element()
851 if (atts) for (i = 0; atts[i]; i++) { in php_wddx_push_element()
887 if (atts) for (i = 0; atts[i]; i++) { in php_wddx_push_element()
888 if (!strcmp(atts[i], EL_NAME) && atts[++i] && atts[i][0]) { in php_wddx_push_element()
1218 for (i=0; i<num_args; i++) { in PHP_FUNCTION()
[all …]
/PHP-5.5/Zend/tests/
H A Danonymous_func_001.phpt6 for ($i = 0; $i < 10; $i++) {
7 $a = create_function('', 'return '. $i .';');
10 $b = "\0lambda_". ($i + 1);
/PHP-5.5/tests/lang/
H A D027.phpt5 $i=3;
7 echo $i;
8 $i--;
9 } while($i>0);
/PHP-5.5/ext/standard/tests/strings/
H A Dbug72433.phpt7 for($i = 0; $i < 100; $i++)
10 $serialized_payload = 'a:3:{i:0;r:1;i:1;r:1;i:2;C:11:"ArrayObject":19:{x:i:0;r:1;;m:a:0:{}}}';
/PHP-5.5/ext/reflection/tests/
H A DReflectionProperty_getModifiers_basic.phpt24 for ($i = 1;$i <= 6;$i++) {
25 $rp = new ReflectionProperty("C", "a$i");
26 echo "C::a$i: ";
28 $rp = new ReflectionProperty("D", "a$i");
29 echo "D::a$i: ";
/PHP-5.5/ext/dba/tests/
H A Ddba005.phpt19 $i=0;
22 $i++;
24 echo $i;
25 for ($i=1; $i<6; $i++) {
26 echo dba_exists("key$i", $db_file) ? "Y" : "N";
H A Ddba010.phpt20 $i=0;
23 $i++;
25 echo $i;
27 for ($i=1; $i<5; $i++) {
28 echo dba_exists("[key$i]name$i", $db_file) ? "Y" : "N";
/PHP-5.5/ext/curl/tests/
H A Dbug45161.phpt24 $i = $start = $end = 100000.00;
25 for ($i = 0; $i < 100; $i++) {
34 for($i = 0; $i < 1024; $i++) {
/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_max_links.phpt22 for ($i = 1; $i <= 5; $i++)
23 if ($links[$i] = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))
25 $i, mysqli_connect_errno(), mysqli_connect_error(),
26 mysqli_errno($links[$i]), mysqli_error($links[$i]));
28 for ($i = 1; $i <= 5; $i++) {
29 if ($res = mysqli_query($links[$i], 'SELECT id FROM test LIMIT 1')) {
30 printf("[%03d] Can run query on link %d\n", 5 + $i, $i);
33 mysqli_close($links[$i]);
/PHP-5.5/ext/pcre/pcrelib/
H A Dpcre_exec.c2792 for (i = 1; i <= min; i++) in match()
2835 for (i = min; i < max; i++) in match()
2924 for (i = 1; i <= min; i++) in match()
2944 for (i = 1; i <= min; i++) in match()
3148 for (i = 1; i <= min; i++) in match()
3423 for (i = 1; i <= min; i++) in match()
3540 for (i = 1; i <= min; i++) in match()
3603 for (i = 1; i <= min; i++) in match()
3812 for (i = 1; i <= min; i++) in match()
3827 for (i = 1; i <= min; i++) in match()
[all …]
/PHP-5.5/ext/ereg/regex/
H A Dengine.c152 for (i = 1; i <= m->g->nsub; i++)
184 for (i = 1; i <= m->g->nsub; i++) {
209 for (i = 1; i < nmatch; i++)
211 pmatch[i] = m->pmatch[i];
396 assert(0 < i && i <= m->g->nsub);
401 assert(0 < i && i <= m->g->nsub);
527 assert(0 < i && i <= m->g->nsub);
588 assert(0 < i && i <= m->g->nsub);
669 for (; i > 0; i--)
758 for (; i > 0; i--)
[all …]
/PHP-5.5/tests/basic/
H A D012.phpt15 for ($i=1; $i<$argc; $i++) {
16 echo ($i-1).": ".$argv[$i]."\n";
/PHP-5.5/sapi/apache2filter/
H A Dphp_apache.h67 int i; \
69 for (i = 0; i < arr->nelts; i++) { \
70 key = elts[i].key; \
71 val = elts[i].val;
/PHP-5.5/ext/gmp/tests/
H A D020.phpt20 for ($i = -1; $i < 12; $i++) {
21 var_dump(gmp_prob_prime((773*$i)-($i*7)-1, $i));
23 var_dump(gmp_prob_prime(gmp_add($n, $i-1), $i));
/PHP-5.5/build/
H A Dbuild.mk50 for i in $(SUBDIRS); do \
51 test -d $$i || (test -d ../$$i && cp -rp ../$$i $$i); \
65 @for i in `find . -name .cvsignore`; do \
66 …(cd `dirname $$i` 2>/dev/null && rm -rf `cat .cvsignore | grep -v config.nice | sed 's/[[:space:]]…
70 @for i in `find . -type d ! -path '*/.svn/*' | grep -v '.svn'`; do \
71 …(cd $$i 2>/dev/null && rm -rf `svn propget svn:ignore . | grep -v config.nice` *.o *.a *.lo *.la *…
/PHP-5.5/ext/pcre/pcrelib/testdata/
H A Dtestinput204 /^\x{ffff}+/i
7 /^\x{ffff}?/i
10 /^\x{ffff}*/i
13 /^\x{ffff}{3}/i
16 /^\x{ffff}{0,3}/i
/PHP-5.5/ext/filter/
H A Dsanitizing_filters.c113 int i, c; in php_filter_strip() local
123 for (i = 0; i < Z_STRLEN_P(value); i++) { in php_filter_strip()
124 if ((str[i] >= 127) && (flags & FILTER_FLAG_STRIP_HIGH)) { in php_filter_strip()
128 buf[c] = str[i]; in php_filter_strip()
148 int l, i; in filter_map_update() local
151 for (i = 0; i < l; ++i) { in filter_map_update()
152 (*map)[allowed_list[i]] = flag; in filter_map_update()
159 int i, c; in filter_map_apply() local
164 for (i = 0; i < Z_STRLEN_P(value); i++) { in filter_map_apply()
165 if ((*map)[str[i]]) { in filter_map_apply()
[all …]
/PHP-5.5/sapi/fpm/fpm/events/
H A Ddevpoll.c75 int i; in fpm_event_devpoll_init() local
97 for (i = 0; i < max; i++) { in fpm_event_devpoll_init()
98 pollfds[i].fd = -1; in fpm_event_devpoll_init()
150 int ret, i; in fpm_event_devpoll_wait() local
172 for (i = 0; i < ret; i++) { in fpm_event_devpoll_wait()
179 if (q->ev && q->ev->fd == active_pollfds[i].fd) { in fpm_event_devpoll_wait()

Completed in 84 milliseconds

1...<<11121314151617181920>>...71