Home
last modified time | relevance | path

Searched refs:index (Results 51 – 75 of 483) sorted by relevance

12345678910>>...20

/PHP-8.1/ext/hash/
H A Dhash_haval.c293 partLen = 128 - index; in PHP_HAVALUpdate()
305 index = 0; in PHP_HAVALUpdate()
321 unsigned int index, padLen; in PHP_HAVAL128Final() local
335 padLen = (index < 118) ? (118 - index) : (246 - index); in PHP_HAVAL128Final()
374 unsigned int index, padLen; in PHP_HAVAL160Final() local
388 padLen = (index < 118) ? (118 - index) : (246 - index); in PHP_HAVAL160Final()
427 unsigned int index, padLen; in PHP_HAVAL192Final() local
441 padLen = (index < 118) ? (118 - index) : (246 - index); in PHP_HAVAL192Final()
466 unsigned int index, padLen; in PHP_HAVAL224Final() local
480 padLen = (index < 118) ? (118 - index) : (246 - index); in PHP_HAVAL224Final()
[all …]
H A Dhash_ripemd.c285 partLen = 64 - index; in PHP_RIPEMD128Update()
297 index = 0; in PHP_RIPEMD128Update()
383 partLen = 64 - index; in PHP_RIPEMD256Update()
395 index = 0; in PHP_RIPEMD256Update()
482 partLen = 64 - index; in PHP_RIPEMD160Update()
494 index = 0; in PHP_RIPEMD160Update()
602 index = 0; in PHP_RIPEMD320Update()
658 padLen = (index < 56) ? (56 - index) : (120 - index); in PHP_RIPEMD128Final()
695 padLen = (index < 56) ? (56 - index) : (120 - index); in PHP_RIPEMD256Final()
732 padLen = (index < 56) ? (56 - index) : (120 - index); in PHP_RIPEMD160Final()
[all …]
/PHP-8.1/ext/pdo/tests/
H A Dpdo_038.phpt2 PDOStatement::fetchColumn() invalid column index
17 function fetchColumn($stmt, $index) {
19 return $stmt->fetchColumn($index);
49 Column index must be greater than or equal to 0
51 Invalid column index
/PHP-8.1/ext/posix/tests/
H A Dposix_getgrgid.phpt12 die('Array index "name" does not exist.');
15 die('Array index "passwd" does not exist.');
18 die('Array index "members" does not exist.');
20 die('Array index "members" must be an array.');
34 die('Array index "gid" does not exist.');
/PHP-8.1/tests/classes/
H A Darray_access_001.phpt9 function offsetExists($index): bool {
10 echo __METHOD__ . "($index)\n";
13 function offsetGet($index): mixed {
14 echo __METHOD__ . "($index)\n";
15 return $this->a[$index];
17 function offsetSet($index, $newval): void {
18 echo __METHOD__ . "($index,$newval)\n";
19 $this->a[$index] = $newval;
21 function offsetUnset($index): void {
22 echo __METHOD__ . "($index)\n";
[all …]
H A Darray_access_002.phpt9 function offsetExists($index): bool {
10 echo __METHOD__ . "($index)\n";
13 function offsetGet($index): mixed {
14 echo __METHOD__ . "($index)\n";
15 return $this->a[$index];
17 function offsetSet($index, $newval): void {
18 echo __METHOD__ . "($index,$newval)\n";
19 $this->a[$index] = $newval;
21 function offsetUnset($index): void {
22 echo __METHOD__ . "($index)\n";
[all …]
/PHP-8.1/ext/dom/
H A Ddom_iterators.c30 int index; member
37 int index; member
49 if(priv->cur < priv->index) { in itemHashScanner()
83 xmlNode *php_dom_libxml_hash_iter(xmlHashTable *ht, int index) /* {{{ */ in php_dom_libxml_hash_iter() argument
89 if ((htsize = xmlHashSize(ht)) > 0 && index < htsize) { in php_dom_libxml_hash_iter()
92 iter->index = index; in php_dom_libxml_hash_iter()
110 if ((htsize = xmlHashSize(ht)) > 0 && index < htsize) { in php_dom_libxml_notation_iter()
113 iter->index = index; in php_dom_libxml_notation_iter()
161 ZVAL_LONG(key, iter->index); in php_dom_iterator_current_key()
229 curnode = php_dom_libxml_hash_iter(objmap->ht, iter->index); in php_dom_iterator_move_forward()
[all …]
H A Dnamednodemap.c133 xmlNodePtr php_dom_named_node_map_get_item(dom_nnodemap_object *objmap, zend_long index) in php_dom_named_node_map_get_item() argument
141 itemnode = php_dom_libxml_hash_iter(objmap->ht, index); in php_dom_named_node_map_get_item()
143 itemnode = php_dom_libxml_notation_iter(objmap->ht, index); in php_dom_named_node_map_get_item()
151 while (count < index && curnode != NULL) { in php_dom_named_node_map_get_item()
162 void php_dom_named_node_map_get_item_into_zval(dom_nnodemap_object *objmap, zend_long index, zval *… in php_dom_named_node_map_get_item_into_zval() argument
165 xmlNodePtr itemnode = php_dom_named_node_map_get_item(objmap, index); in php_dom_named_node_map_get_item_into_zval()
178 zend_long index; in PHP_METHOD() local
179 if (zend_parse_parameters(ZEND_NUM_ARGS(), "l", &index) == FAILURE) { in PHP_METHOD()
182 if (index < 0 || ZEND_LONG_INT_OVFL(index)) { in PHP_METHOD()
190 php_dom_named_node_map_get_item_into_zval(objmap, index, return_value); in PHP_METHOD()
/PHP-8.1/ext/mysqli/tests/
H A Dbug45019.phpt34 $index = 0;
37 if ($data[$index] != $column1) {
38 if ($IS_MYSQLND || $index != 1) {
40 $index + 1, gettype($data[$index]), $data[$index], gettype($column1), $column1);
46 $index++;
/PHP-8.1/ext/bcmath/libbcmath/src/
H A Doutput.c82 int index, fdigit; in bc_out_num() local
99 for (index=num->n_len; index>0; index--) in bc_out_num()
111 for (index=0; index<num->n_scale; index++) in bc_out_num()
/PHP-8.1/ext/standard/tests/url/
H A Dparse_url_basic_005.phpt34 --> http://www.php.net/index.php : NULL
39 --> http://www.php.net:80/index.php : NULL
40 --> http://www.php.net:80/foo/bar/index.php : NULL
48 --> http://www.php.net:80/index.php : NULL
49 --> http://www.php.net:80/index.php? : NULL
55 --> http://www.php.net:80/index.php?test=1& : NULL
56 --> http://www.php.net/index.php?& : NULL
57 --> http://www.php.net:80/index.php?foo& : NULL
58 --> http://www.php.net/index.php?&foo : NULL
59 --> http://www.php.net:80/index.php?test=1&test2=char&test3=mixesCI : NULL
[all …]
H A Dparse_url_basic_002.phpt35 --> http://www.php.net/index.php : string(4) "http"
40 --> http://www.php.net:80/index.php : string(4) "http"
41 --> http://www.php.net:80/foo/bar/index.php : string(4) "http"
49 --> http://www.php.net:80/index.php : string(4) "http"
50 --> http://www.php.net:80/index.php? : string(4) "http"
56 --> http://www.php.net:80/index.php?test=1& : string(4) "http"
57 --> http://www.php.net/index.php?& : string(4) "http"
58 --> http://www.php.net:80/index.php?foo& : string(4) "http"
59 --> http://www.php.net/index.php?&foo : string(4) "http"
60 --> http://www.php.net:80/index.php?test=1&test2=char&test3=mixesCI : string(4) "http"
[all …]
H A Dparse_url_basic_008.phpt34 --> http://www.php.net/index.php : NULL
39 --> http://www.php.net:80/index.php : NULL
40 --> http://www.php.net:80/foo/bar/index.php : NULL
48 --> http://www.php.net:80/index.php : NULL
49 --> http://www.php.net:80/index.php? : string(0) ""
55 --> http://www.php.net:80/index.php?test=1& : string(7) "test=1&"
56 --> http://www.php.net/index.php?& : string(1) "&"
57 --> http://www.php.net:80/index.php?foo& : string(4) "foo&"
58 --> http://www.php.net/index.php?&foo : string(4) "&foo"
59 --> http://www.php.net:80/index.php?test=1&test2=char&test3=mixesCI : string(31) "test=1&test2=ch…
[all …]
H A Dparse_url_basic_009.phpt34 --> http://www.php.net/index.php : NULL
39 --> http://www.php.net:80/index.php : NULL
40 --> http://www.php.net:80/foo/bar/index.php : NULL
48 --> http://www.php.net:80/index.php : NULL
49 --> http://www.php.net:80/index.php? : NULL
55 --> http://www.php.net:80/index.php?test=1& : NULL
56 --> http://www.php.net/index.php?& : NULL
57 --> http://www.php.net:80/index.php?foo& : NULL
58 --> http://www.php.net/index.php?&foo : NULL
59 --> http://www.php.net:80/index.php?test=1&test2=char&test3=mixesCI : NULL
[all …]
H A Dparse_url_basic_003.phpt34 --> http://www.php.net/index.php : string(11) "www.php.net"
39 --> http://www.php.net:80/index.php : string(11) "www.php.net"
40 --> http://www.php.net:80/foo/bar/index.php : string(11) "www.php.net"
48 --> http://www.php.net:80/index.php : string(11) "www.php.net"
49 --> http://www.php.net:80/index.php? : string(11) "www.php.net"
55 --> http://www.php.net:80/index.php?test=1& : string(11) "www.php.net"
56 --> http://www.php.net/index.php?& : string(11) "www.php.net"
57 --> http://www.php.net:80/index.php?foo& : string(11) "www.php.net"
58 --> http://www.php.net/index.php?&foo : string(11) "www.php.net"
59 --> http://www.php.net:80/index.php?test=1&test2=char&test3=mixesCI : string(11) "www.php.net"
[all …]
H A Dparse_url_basic_001.phpt138 string(10) "/index.php"
191 string(10) "/index.php"
292 string(10) "/index.php"
303 string(10) "/index.php"
381 string(10) "/index.php"
392 string(10) "/index.php"
405 string(10) "/index.php"
416 string(10) "/index.php"
429 string(10) "/index.php"
440 string(10) "/index.php"
[all …]
/PHP-8.1/ext/zip/tests/
H A Dutils.inc13 for ($index = 0; $index < $zip->numFiles; $index++) {
14 $stat = $zip->statIndex($index);
/PHP-8.1/sapi/cli/tests/
H A Dphp_cli_server_010.phpt32 GET /index.php/foo/bar/?foo=bar HTTP/1.0
54 string(18) "/index.php/foo/bar"
55 string(10) "/index.php"
65 string(19) "/index.php/foo/bar/"
66 string(10) "/index.php"
/PHP-8.1/ext/phar/tests/
H A Dfrontcontroller34.phpt9 REQUEST_URI=/frontcontroller34.php/start/index.php
10 PATH_INFO=/start/index.php
16 start/index.php
/PHP-8.1/ext/phar/tests/cache_list/files/
H A Dfrontcontroller14.phar4 return "/html/index.php";
8 Phar::webPhar("whatever", "/html/index.php", null, array(), "s");
12 <���������������������html/index.phpN���4WXN����o&�������<?php
H A Dfrontcontroller14.phar.inc4 $a['html/index.php'] = '<?php
11 return "/html/index.php";
15 Phar::webPhar("whatever", "/html/index.php", null, array(), "s");
/PHP-8.1/ext/phar/tests/cache_list/
H A Dfrontcontroller34.phpt10 REQUEST_URI=/frontcontroller34.php/start/index.php
11 PATH_INFO=/start/index.php
17 start/index.php
/PHP-8.1/ext/phar/tests/files/
H A Dfrontcontroller14.phar4 return "/html/index.php";
8 Phar::webPhar("whatever", "/html/index.php", null, array(), "s");
12 <���������������������html/index.phpN���XXN����o&�������<?php
H A Dfrontcontroller14.phar.inc4 $a['html/index.php'] = '<?php
11 return "/html/index.php";
15 Phar::webPhar("whatever", "/html/index.php", null, array(), "s");
/PHP-8.1/ext/tokenizer/tests/
H A Dbug76437.phpt12 foreach ($tests as [$code, $index]) {
13 $open_tag1 = token_get_all($code)[$index];
14 $open_tag2 = token_get_all($code, TOKEN_PARSE)[$index];

Completed in 32 milliseconds

12345678910>>...20