Home
last modified time | relevance | path

Searched refs:find_hash (Results 1 – 2 of 2) sorted by relevance

/php-src/ext/opcache/jit/ir/
H A Dgen_ir_fold_hash.c54 int find_hash(uint32_t *mask, uint32_t count) in find_hash() function
301 if (!find_hash(mask, rules)) { in main()
/php-src/ext/standard/
H A Dbasic_functions.c2434 zval hash, *find_hash; local
2444 if ((find_hash = zend_hash_index_find(Z_ARRVAL_P(arr), key)) == NULL) {
2446 find_hash = zend_hash_index_add_new(Z_ARRVAL_P(arr), key, &hash);
2449 if ((find_hash = zend_hash_find(Z_ARRVAL_P(arr), Z_STR_P(arg1))) == NULL) {
2451 find_hash = zend_hash_add_new(Z_ARRVAL_P(arr), Z_STR_P(arg1), &hash);
2455 if (Z_TYPE_P(find_hash) != IS_ARRAY) {
2456 zval_ptr_dtor_nogc(find_hash);
2457 array_init(find_hash);
2462 add_next_index_zval(find_hash, arg2);
2464 array_set_zval_key(Z_ARRVAL_P(find_hash), arg3, arg2);

Completed in 13 milliseconds