Home
last modified time | relevance | path

Searched refs:zend_hash_index_find (Results 1 – 25 of 52) sorted by relevance

123

/PHP-8.0/Zend/
H A Dzend_vm_execute.skl106 zv = zend_hash_index_find(zend_handlers_table, (zend_long)(zend_uintptr_t)op->handler);
126 zv = zend_hash_index_find(zend_handlers_table, (zend_long)(zend_uintptr_t)op->handler);
H A Dzend_weakrefs.c90 zval *zv = zend_hash_index_find(&EG(weakrefs), obj_addr); in zend_weakref_register()
155 zval *zv = zend_hash_index_find(ht, (zend_ulong) key); in zend_weakrefs_hash_del()
321 zval *zv = zend_hash_index_find(&wm->ht, (zend_ulong) obj_key); in zend_weakmap_read_dimension()
354 zval *zv = zend_hash_index_find(&wm->ht, (zend_ulong) obj_key); in zend_weakmap_write_dimension()
379 zval *zv = zend_hash_index_find(&wm->ht, (zend_ulong) Z_OBJ_P(offset)); in zend_weakmap_has_dimension()
H A Dzend_hash.h175 ZEND_API zval* ZEND_FASTCALL zend_hash_index_find(const HashTable *ht, zend_ulong h);
222 return zend_hash_index_find(ht, h) != NULL; in zend_hash_index_exists()
492 return zend_hash_index_find(ht, idx); in zend_symtable_find()
504 return zend_hash_index_find(ht, idx); in zend_symtable_find_ind()
588 return zend_hash_index_find(ht, idx); in zend_symtable_str_find()
880 zv = zend_hash_index_find(ht, h); in zend_hash_index_find_ptr()
891 zval *zv = zend_hash_index_find(ht, h); in zend_hash_index_find_deref()
H A Dzend_ts_hash.c227 retval = zend_hash_index_find(TS_HASH(ht), h); in zend_ts_hash_index_find()
/PHP-8.0/ext/pdo/
H A Dpdo_dbh.c158 if ((item = zend_hash_index_find(Z_ARRVAL(info), 1)) != NULL in pdo_handle_error()
163 if ((item = zend_hash_index_find(Z_ARRVAL(info), 2)) != NULL) { in pdo_handle_error()
515 …if (options && (value = zend_hash_index_find(Z_ARRVAL_P(options), PDO_ATTR_STATEMENT_CLASS)) != NU… in PHP_METHOD()
521 if ((item = zend_hash_index_find(Z_ARRVAL_P(value), 0)) == NULL) { in PHP_METHOD()
539 if ((item = zend_hash_index_find(Z_ARRVAL_P(value), 1)) != NULL) { in PHP_METHOD()
733 if ((tmp = zend_hash_index_find(Z_ARRVAL_P(value), 0)) != NULL && Z_TYPE_P(tmp) == IS_LONG) { in pdo_dbh_attribute_set()
773 if ((item = zend_hash_index_find(Z_ARRVAL_P(value), 0)) == NULL) { in pdo_dbh_attribute_set()
795 if ((item = zend_hash_index_find(Z_ARRVAL_P(value), 1)) != NULL) { in pdo_dbh_attribute_set()
H A Dphp_pdo_driver.h206 if (options && (v = zend_hash_index_find(Z_ARRVAL_P(options), option_name))) { in pdo_attr_lval()
215 if (options && (v = zend_hash_index_find(Z_ARRVAL_P(options), option_name))) { in pdo_attr_strval()
/PHP-8.0/ext/dom/
H A Dnodelist.c139 zval *entry = zend_hash_index_find(nodeht, index); in PHP_METHOD()
/PHP-8.0/ext/hash/
H A Dhash.c290 elt = zend_hash_index_find(Z_ARRVAL_P(zv), j); in php_hash_unserialize_spec()
300 elt = zend_hash_index_find(Z_ARRVAL_P(zv), j); in php_hash_unserialize_spec()
307 elt = zend_hash_index_find(Z_ARRVAL_P(zv), j); in php_hash_unserialize_spec()
1499 algo_zv = zend_hash_index_find(data, 0); in PHP_METHOD()
1500 options_zv = zend_hash_index_find(data, 1); in PHP_METHOD()
1501 hash_zv = zend_hash_index_find(data, 2); in PHP_METHOD()
1502 magic_zv = zend_hash_index_find(data, 3); in PHP_METHOD()
1503 members_zv = zend_hash_index_find(data, 4); in PHP_METHOD()
/PHP-8.0/ext/tokenizer/
H A Dtokenizer.c421 id_zv = zend_hash_index_find(Z_ARRVAL_P(token_zv), 0); in extract_token_id_to_replace()
422 text_zv = zend_hash_index_find(Z_ARRVAL_P(token_zv), 1); in extract_token_id_to_replace()
/PHP-8.0/ext/pspell/
H A Dpspell.c77 zval *res = zend_hash_index_find(&EG(regular_list), conf); \
86 zval *res = zend_hash_index_find(&EG(regular_list), scin); \
/PHP-8.0/ext/spl/
H A Dspl_array.c356 if ((retval = zend_hash_index_find(ht, index)) == NULL) { in spl_array_get_dimension_ptr()
652 if ((tmp = zend_hash_index_find(ht, index)) != NULL) { in spl_array_has_dimension_ex()
1828 flags_zv = zend_hash_index_find(data, 0); in PHP_METHOD()
1829 storage_zv = zend_hash_index_find(data, 1); in PHP_METHOD()
1830 members_zv = zend_hash_index_find(data, 2); in PHP_METHOD()
1831 iterator_class_zv = zend_hash_index_find(data, 3); in PHP_METHOD()
H A Dspl_dllist.c1211 flags_zv = zend_hash_index_find(data, 0); in PHP_METHOD()
1212 storage_zv = zend_hash_index_find(data, 1); in PHP_METHOD()
1213 members_zv = zend_hash_index_find(data, 2); in PHP_METHOD()
H A Dspl_observer.c843 storage_zv = zend_hash_index_find(data, 0); in PHP_METHOD()
844 members_zv = zend_hash_index_find(data, 1); in PHP_METHOD()
/PHP-8.0/ext/com_dotnet/
H A Dcom_wrapper.c255 if (NULL != (name = zend_hash_index_find(disp->dispid_to_name, id))) { in disp_invokeex()
382 if (NULL != (name = zend_hash_index_find(disp->dispid_to_name, id))) { in disp_getmembername()
H A Dcom_com.c710 if ((tmp = zend_hash_index_find(sink_ht, 0)) != NULL && Z_TYPE_P(tmp) == IS_STRING) in PHP_FUNCTION()
712 if ((tmp = zend_hash_index_find(sink_ht, 1)) != NULL && Z_TYPE_P(tmp) == IS_STRING) in PHP_FUNCTION()
/PHP-8.0/ext/opcache/jit/
H A Dzend_jit_disasm_x86.c317 z = zend_hash_index_find(&labels, addr); in zend_jit_disasm()
329 z = zend_hash_index_find(&labels, addr); in zend_jit_disasm()
H A Dzend_jit_helpers.c242 return zend_hash_index_find(ht, idx); in zend_jit_symtable_find()
267 zval *retval = zend_hash_index_find(ht, idx); in zend_jit_hash_index_lookup_rw()
351 retval = zend_hash_index_find(ht, idx); in zend_jit_symtable_lookup_rw()
405 retval = zend_hash_index_find(ht, idx); in zend_jit_symtable_lookup_w()
/PHP-8.0/ext/opcache/Optimizer/
H A Dsccp.c422 *result = zend_hash_index_find(Z_ARR_P(op1), 0); in fetch_array_elem()
425 *result = zend_hash_index_find(Z_ARR_P(op1), 1); in fetch_array_elem()
428 *result = zend_hash_index_find(Z_ARR_P(op1), Z_LVAL_P(op2)); in fetch_array_elem()
431 *result = zend_hash_index_find(Z_ARR_P(op1), zend_dval_to_lval(Z_DVAL_P(op2))); in fetch_array_elem()
1978 ? zend_hash_index_find(jmptable, Z_LVAL_P(op1)) in sccp_mark_feasible_successors()
2018 val2 = zend_hash_index_find(ht2, index); in join_hash_tables()
/PHP-8.0/ext/gd/
H A Dgd.c2672 if ((var = zend_hash_index_find(Z_ARRVAL_P(POINTS), (i * 2))) != NULL) { in php_imagepolygon()
2675 if ((var = zend_hash_index_find(Z_ARRVAL_P(POINTS), (i * 2) + 1)) != NULL) { in php_imagepolygon()
2744 zval *zv = zend_hash_index_find(&EG(regular_list), size - 5); in php_find_gd_font()
3495 …if ((var = zend_hash_index_find(Z_ARRVAL_P(hash_matrix), (i))) != NULL && Z_TYPE_P(var) == IS_ARRA… in PHP_FUNCTION()
3502 if ((var2 = zend_hash_index_find(Z_ARRVAL_P(var), j)) != NULL) { in PHP_FUNCTION()
3758 if ((zval_affine_elem = zend_hash_index_find(Z_ARRVAL_P(z_affine), i)) != NULL) { in PHP_FUNCTION()
3922 if ((tmp = zend_hash_index_find(Z_ARRVAL_P(z_m1), i)) != NULL) { in PHP_FUNCTION()
3939 if ((tmp = zend_hash_index_find(Z_ARRVAL_P(z_m2), i)) != NULL) { in PHP_FUNCTION()
/PHP-8.0/ext/soap/
H A Dphp_http.c850 if ((value = zend_hash_index_find(Z_ARRVAL_P(data), 0)) != NULL && in make_http_soap_request()
853 if (((tmp = zend_hash_index_find(Z_ARRVAL_P(data), 1)) == NULL || in make_http_soap_request()
856 ((tmp = zend_hash_index_find(Z_ARRVAL_P(data), 2)) == NULL || in make_http_soap_request()
859 (use_ssl || (tmp = zend_hash_index_find(Z_ARRVAL_P(data), 3)) == NULL)) { in make_http_soap_request()
/PHP-8.0/ext/ldap/
H A Dldap.c412 if ((attr = zend_hash_index_find(Z_ARRVAL_P(tmp), i)) == NULL) { in _php_ldap_control_from_array()
455 if ((sortkey = zend_hash_index_find(Z_ARRVAL_P(val), i)) == NULL) { in _php_ldap_control_from_array()
1468 if ((attr = zend_hash_index_find(Z_ARRVAL_P(attrs), i)) == NULL) { in php_ldap_do_search()
2257 if ((ivalue = zend_hash_index_find(Z_ARRVAL_P(value), j)) == NULL) { in php_ldap_do_modify()
2597 if ((fetched = zend_hash_index_find(Z_ARRVAL_P(mods), i)) == NULL) { in PHP_FUNCTION()
2701 if ((fetched = zend_hash_index_find(Z_ARRVAL_P(modinfo), k)) == NULL) { in PHP_FUNCTION()
2723 fetched = zend_hash_index_find(Z_ARRVAL_P(mods), i); in PHP_FUNCTION()
2766 fetched = zend_hash_index_find(Z_ARRVAL_P(vals), j); in PHP_FUNCTION()
/PHP-8.0/ext/standard/
H A Dvar.c657 zv = zend_hash_index_find(&data->ht, key); in php_add_var_hash()
1050 zval *var_idx = zend_hash_index_find(&var_hash->ht, in php_var_serialize_intern()
/PHP-8.0/ext/pcntl/
H A Dpcntl.c983 if ((prev_handle = zend_hash_index_find(&PCNTL_G(php_signal_table), signo)) != NULL) { in PHP_FUNCTION()
1354 if ((handle = zend_hash_index_find(&PCNTL_G(php_signal_table), queue->signo)) != NULL) { in pcntl_signal_dispatch()
/PHP-8.0/ext/xml/
H A Dxml.c478 (obj = zend_hash_index_find(Z_ARRVAL_P(handler), 0)) != NULL && in xml_call_handler()
479 (method = zend_hash_index_find(Z_ARRVAL_P(handler), 1)) != NULL && in xml_call_handler()
/PHP-8.0/ext/fileinfo/libmagic/
H A Dsoftmagic.c2253 if ((pzval = zend_hash_index_find(ht, 0)) != NULL && Z_TYPE_P(pzval) == IS_ARRAY) { in magiccheck()
2259 if ((match = zend_hash_index_find(Z_ARRVAL_P(pzval), 0)) && in magiccheck()
2260 (offset = zend_hash_index_find(Z_ARRVAL_P(pzval), 1))) { in magiccheck()

Completed in 227 milliseconds

123