Home
last modified time | relevance | path

Searched refs:idx (Results 1 – 25 of 104) sorted by relevance

12345

/PHP-8.3/sapi/phpdbg/
H A Dphpdbg_btree.h25 zend_ulong idx; member
50 phpdbg_btree_result *phpdbg_btree_find(phpdbg_btree *tree, zend_ulong idx);
51 phpdbg_btree_result *phpdbg_btree_find_closest(phpdbg_btree *tree, zend_ulong idx);
54 int phpdbg_btree_delete(phpdbg_btree *tree, zend_ulong idx);
60 int phpdbg_btree_insert_or_update(phpdbg_btree *tree, zend_ulong idx, void *ptr, int flags);
61 #define phpdbg_btree_insert(tree, idx, ptr) phpdbg_btree_insert_or_update(tree, idx, ptr, PHPDBG_BT… argument
62 #define phpdbg_btree_update(tree, idx, ptr) phpdbg_btree_insert_or_update(tree, idx, ptr, PHPDBG_BT… argument
63 #define phpdbg_btree_overwrite(tree, idx, ptr) phpdbg_btree_insert_or_update(tree, idx, ptr, PHPDBG… argument
H A Dphpdbg_btree.c49 if ((idx >> i) % 2 == 1) { in phpdbg_btree_find()
77 if ((idx >> i) % 2 == 0) { in phpdbg_btree_find_closest()
135 if (result == NULL || result->idx < pos->end) { in phpdbg_btree_next()
139 pos->cur = result->idx - 1; in phpdbg_btree_next()
152 branch = &(*branch)->branches[(idx >> i) % 2]; in phpdbg_btree_insert_or_update()
163 (*branch)->branches[!((idx >> i) % 2)] = NULL; in phpdbg_btree_insert_or_update()
164 branch = &(*branch)->branches[(idx >> i) % 2]; in phpdbg_btree_insert_or_update()
173 (*branch)->result.idx = idx; in phpdbg_btree_insert_or_update()
179 int phpdbg_btree_delete(phpdbg_btree *tree, zend_ulong idx) { in phpdbg_btree_delete() argument
190 last_dual_branch_branch = (idx >> i) % 2; in phpdbg_btree_delete()
[all …]
/PHP-8.3/Zend/
H A Dzend_hash.c2067 for (idx = 0; idx < ht->nNumUsed; idx++) { in zend_hash_apply()
2082 for (idx = 0; idx < ht->nNumUsed; idx++) { in zend_hash_apply()
2107 for (idx = 0; idx < ht->nNumUsed; idx++) { in zend_hash_apply_with_argument()
2121 for (idx = 0; idx < ht->nNumUsed; idx++) { in zend_hash_apply_with_argument()
2148 for (idx = 0; idx < ht->nNumUsed; idx++) { in zend_hash_apply_with_arguments()
2169 for (idx = 0; idx < ht->nNumUsed; idx++) { in zend_hash_apply_with_arguments()
2251 for (idx = 0; idx < source->nNumUsed; idx++) { in zend_hash_copy()
2263 for (idx = 0; idx < source->nNumUsed; idx++) { in zend_hash_copy()
2573 for (idx = 0; idx < source->nNumUsed; idx++) { in zend_hash_merge()
2655 for (idx = 0; idx < source->nNumUsed; idx++) { in zend_hash_merge_ex()
[all …]
H A Dzend_gc.c167 #define GC_IDX2PTR(idx) (GC_G(buf) + (idx)) argument
669 idx = gc_compress(idx); in gc_possible_root_when_full()
705 idx = gc_compress(idx); in gc_possible_root()
738 idx = gc_compress(idx); in gc_extra_root()
1376 idx++; in gc_scan_roots()
1388 idx++; in gc_scan_roots()
1412 idx = gc_compress(idx); in gc_add_garbage()
1639 idx++; in gc_collect_roots()
1862 idx++; in zend_gc_collect_cycles()
1876 idx++; in zend_gc_collect_cycles()
[all …]
H A Dzend_hash.h464 zend_ulong idx; in zend_symtable_add_new() local
475 zend_ulong idx; in zend_symtable_update() local
487 zend_ulong idx; in zend_symtable_update_ind() local
499 zend_ulong idx; in zend_symtable_del() local
511 zend_ulong idx; in zend_symtable_del_ind() local
523 zend_ulong idx; in zend_symtable_find() local
535 zend_ulong idx; in zend_symtable_find_ind() local
547 zend_ulong idx; in zend_symtable_exists() local
559 zend_ulong idx; in zend_symtable_exists_ind() local
571 zend_ulong idx; in zend_symtable_str_update() local
[all …]
/PHP-8.3/ext/pdo/tests/
H A Dpdo_016.phpt29 $stmt2 = $db->prepare('SELECT idx, txt FROM test ORDER by idx');
41 $stmt2->bindColumn('idx', $idx);
46 var_dump(array($idx=>$txt));
57 foreach($cont as $idx => $txt)
59 var_dump(array($idx=>$txt));
62 if ($idx == 0) {
71 if ($idx == 0) {
83 $stmt4->bindColumn('idx', $col1);
85 foreach($cont as $idx => $txt)
87 var_dump(array($idx=>$txt));
[all …]
H A Dpdo_016a.phpt29 $stmt2 = $db->prepare('SELECT idx, txt FROM test ORDER by idx');
41 $stmt2->bindColumn('idx', $idx);
46 var_dump(array($idx=>$txt));
57 foreach($cont as $idx => $txt)
59 var_dump(array($idx=>$txt));
62 if ($idx == 0) {
71 if ($idx == 0) {
83 $stmt4->bindColumn('idx', $col1);
85 foreach($cont as $idx => $txt)
87 var_dump(array($idx=>$txt));
[all …]
H A Dpdo_019.phpt18 $db->exec('CREATE TABLE test(idx int NOT NULL PRIMARY KEY, txt VARCHAR(20))');
27 $stmt = $db->prepare('SELECT idx, txt FROM test ORDER by idx');
35 $stmt->bindColumn('idx', $idx);
40 var_dump(array($idx=>$txt));
/PHP-8.3/ext/mysqli/tests/
H A Dmysqli_result_references_mysqlnd.phpt19 $idx = 0;
22 $references[$idx]['row_ref'] = &$row;
23 $references[$idx]['row_copy'] = $row;
24 $references[$idx]['id_ref'] = &$row['id'];
25 $references[$idx++]['id_copy'] = $row['id'];
38 $references[$idx]['row_ref'] = &$rows[$i];
39 $references[$idx]['row_copy'] = $rows[$i];
40 $references[$idx]['id_ref'] = &$rows[$i]['id'];
41 $references[$idx]['id_copy'] = $rows[$i]['id'];
43 $references[$idx]['id_copy_mod']= $rows[$i]['id'] + 0;
H A Dmysqli_result_references.phpt22 $idx = 0;
25 $references[$idx] = array(
28 $references[$idx++]['id'] += 0;
36 $references[$idx] = array(
39 $references[$idx++]['id'] += 0;
54 $references[$idx] = array(
57 $references[$idx]['id2'] = &$references[$idx]['id'];
58 $references[$idx]['id'] += 1;
59 $references[$idx++]['id2'] += 1;
62 $references[$idx++] = &$res;
/PHP-8.3/ext/pdo_firebird/tests/
H A Dbug_47415.phpt17 $dbh->exec('CREATE TABLE testz (idx int NOT NULL PRIMARY KEY, txt VARCHAR(20))');
22 $query = "SELECT idx, txt FROM testz ORDER by idx";
23 $idx = $txt = 0;
25 $stmt->bindColumn('idx', $idx);
/PHP-8.3/win32/
H A Dcodepage.c133 ch_err |= *idx; in php_win32_cp_conv_ascii_to_w()
134 idx++; in php_win32_cp_conv_ascii_to_w()
146 idx += 16; in php_win32_cp_conv_ascii_to_w()
157 idx += 16; in php_win32_cp_conv_ascii_to_w()
166 while (idx < end) { in php_win32_cp_conv_ascii_to_w()
167 ch_err |= *idx; in php_win32_cp_conv_ascii_to_w()
168 idx++; in php_win32_cp_conv_ascii_to_w()
181 idx = in; in php_win32_cp_conv_ascii_to_w()
205 idx += 16; in php_win32_cp_conv_ascii_to_w()
220 idx += 16; in php_win32_cp_conv_ascii_to_w()
[all …]
/PHP-8.3/ext/xmlreader/tests/
H A D003-mb.phpt10 <books><book num="1" idx="2">book1</book></books>';
36 echo "2nd attr (idx) failed\n";
48 $attr = $reader->moveToAttribute('idx');
52 if ($reader->getAttribute('idx') == $reader->value) {
53 echo "attr idx failed\n";
77 idx: 2
79 idx: 2
81 idx: 2
H A D003.phpt10 <books><book num="1" idx="2">book1</book></books>';
36 echo "2nd attr (idx) failed\n";
48 $attr = $reader->moveToAttribute('idx');
52 if ($reader->getAttribute('idx') == $reader->value) {
53 echo "attr idx failed\n";
84 idx: 2
86 idx: 2
88 idx: 2
H A D015.phpt11 …rg/" xmlns:ns2="http://www.ns2.namespace.org/"><book ns1:num="1" ns2:idx="2" ns1:idx="3" ns2:isbn=…
27 $attr = $reader->moveToAttributeNs('idx', 'http://www.ns1.namespace.org/');
31 $attr = $reader->moveToAttributeNs('idx', 'http://www.ns2.namespace.org/');
60 ns1:idx: 3
61 ns2:idx: 2
H A D015-move-errors.phpt11 …rg/" xmlns:ns2="http://www.ns2.namespace.org/"><book ns1:num="1" ns2:idx="2" ns1:idx="3" ns2:isbn=…
28 $reader->moveToAttributeNs('idx', null);
/PHP-8.3/ext/standard/tests/file/
H A Duserdirstream.phpt6 public $idx = 0;
11 $this->idx = 0;
19 if ($this->idx >= count($sample)) return false;
20 else return $sample[$this->idx++];
24 $this->idx = 0;
/PHP-8.3/scripts/dev/
H A Dcheck_parameters.php129 function check_param($db, $idx, $exp, $optional, $allow_uninit = false) argument
133 if ($idx >= count($db)) {
139 } elseif ($db[$idx][0] === '**dummy**') {
143 if ($db[$idx][1] != $exp) {
144 error("{$db[$idx][0]}: expected '$exp' but got '{$db[$idx][1]}' [".($idx+1).']');
147 if (!$optional && $db[$idx][2]) {
148 error("not optional var is initialized: {$db[$idx][0]} [".($idx+1).']', 2);
150 if (!$allow_uninit && $optional && !$db[$idx][2]) {
151 error("optional var not initialized: {$db[$idx][0]} [".($idx+1).']', 1);
/PHP-8.3/ext/opcache/jit/
H A Dzend_jit_vm_helpers.c399 idx++; \
411 idx++; \
429 trace_buffer[idx].start = trace_buffer[idx].start; \
501 if (idx < 0) { in zend_jit_trace_record_fake_init_call_ex()
502 return idx; in zend_jit_trace_record_fake_init_call_ex()
535 return idx; in zend_jit_trace_record_fake_init_call_ex()
545 int idx; in zend_jit_trace_subtrace() local
598 int idx, count; local
666 idx = ret;
1014 idx = ret;
[all …]
/PHP-8.3/ext/intl/dateformat/
H A Ddateformat_format_object.cpp100 uint32_t idx = 0; in PHP_FUNCTION() local
104 if (idx == 0) { in PHP_FUNCTION()
109 ZEND_ASSERT(idx == 1 && "We checked that there are two elements above"); in PHP_FUNCTION()
116 if (idx == 0) { in PHP_FUNCTION()
119 ZEND_ASSERT(idx == 1 && "We checked that there are two elements above"); in PHP_FUNCTION()
122 idx++; in PHP_FUNCTION()
124 ZEND_ASSERT(idx == 2 && "We checked that there are two elements above"); in PHP_FUNCTION()
/PHP-8.3/tests/lang/
H A Dbug19943.phpt8 @$ar[$count]['0idx'] = "$count";
12 echo $ar[$count]." -- ".@$ar[$count]['0idx']."\n";
/PHP-8.3/ext/spl/tests/
H A Dbug36287.phpt8 $idx = 0;
15 if (++$idx > 1)
/PHP-8.3/ext/standard/
H A Dmetaphone.c133 int idx; in Lookahead() local
134 for (idx = 0; word[idx] != '\0' && idx < how_far; idx++); in Lookahead()
137 return word[idx]; /* idx will be either == to how_far or in Lookahead()
/PHP-8.3/ext/zip/tests/
H A Doo_getcomment.phpt16 $idx = $zip->locateName('foo');
18 var_dump($zip->getCommentIndex($idx));
/PHP-8.3/ext/opcache/jit/libudis86/
H A Ddecode.c1076 uint8_t idx; in decode_ssepfx() local
1087 idx = ((pfx & 0xf) + 1) / 2; in decode_ssepfx()
1089 idx = 0; in decode_ssepfx()
1091 if (idx && u->le->table[idx] != 0) { in decode_ssepfx()
1148 uint8_t idx = 0; in decode_ext() local
1175 idx = modrm(u) - 0xC0; in decode_ext()
1180 idx = (u->le->table[idx] != 0) ? 0 : 1; in decode_ext()
1182 idx = 0; in decode_ext()
1184 idx = 1; in decode_ext()
1198 idx = vex_w(u); in decode_ext()
[all …]

Completed in 59 milliseconds

12345