Home
last modified time | relevance | path

Searched refs:hval (Results 1 – 10 of 10) sorted by relevance

/PHP-7.0/ext/hash/
H A Dhash_joaat.c74 joaat_buf(void *buf, size_t len, php_hash_uint32 hval) in joaat_buf() argument
80 hval += input[i]; in joaat_buf()
81 hval += (hval << 10); in joaat_buf()
82 hval ^= (hval >> 6); in joaat_buf()
85 hval += (hval << 3); in joaat_buf()
86 hval ^= (hval >> 11); in joaat_buf()
87 hval += (hval << 15); in joaat_buf()
89 return hval; in joaat_buf()
H A Dhash_fnv.c151 fnv_32_buf(void *buf, size_t len, php_hash_uint32 hval, int alternate) in fnv_32_buf() argument
163 hval *= PHP_FNV_32_PRIME; in fnv_32_buf()
166 hval ^= (php_hash_uint32)*bp++; in fnv_32_buf()
169 hval ^= (php_hash_uint32)*bp++; in fnv_32_buf()
172 hval *= PHP_FNV_32_PRIME; in fnv_32_buf()
177 return hval; in fnv_32_buf()
205 hval *= PHP_FNV_64_PRIME; in fnv_64_buf()
208 hval ^= (php_hash_uint64)*bp++; in fnv_64_buf()
211 hval ^= (php_hash_uint64)*bp++; in fnv_64_buf()
214 hval *= PHP_FNV_64_PRIME; in fnv_64_buf()
[all …]
H A Dphp_hash_fnv.h67 static php_hash_uint32 fnv_32_buf(void *buf, size_t len, php_hash_uint32 hval, int alternate);
68 static php_hash_uint64 fnv_64_buf(void *buf, size_t len, php_hash_uint64 hval, int alternate);
H A Dphp_hash_joaat.h32 static php_hash_uint32 joaat_buf(void *buf, size_t len, php_hash_uint32 hval);
/PHP-7.0/Zend/tests/
H A Dbug72943.phpt2 Bug #72943 (assign_dim on string doesn't reset hval)
/PHP-7.0/Zend/
H A Dzend_vm_execute.h6138 hval = 0;
6141 hval = 1;
6423 hval = 0;
6426 hval = 1;
7979 hval = 0;
7982 hval = 1;
9881 hval = 0;
9884 hval = 1;
9986 hval = 0;
9989 hval = 1;
[all …]
H A Dzend_execute.c1551 zend_ulong hval; in zend_fetch_dimension_address_inner() local
1555 hval = Z_LVAL_P(dim); in zend_fetch_dimension_address_inner()
1557 retval = zend_hash_index_find(ht, hval); in zend_fetch_dimension_address_inner()
1561 zend_error(E_NOTICE,"Undefined offset: " ZEND_LONG_FMT, hval); in zend_fetch_dimension_address_inner()
1568 zend_error(E_NOTICE,"Undefined offset: " ZEND_LONG_FMT, hval); in zend_fetch_dimension_address_inner()
1569 retval = zend_hash_index_update(ht, hval, &EG(uninitialized_zval)); in zend_fetch_dimension_address_inner()
1579 if (ZEND_HANDLE_NUMERIC(offset_key, hval)) { in zend_fetch_dimension_address_inner()
1631 hval = zend_dval_to_lval(Z_DVAL_P(dim)); in zend_fetch_dimension_address_inner()
1635 hval = Z_RES_HANDLE_P(dim); in zend_fetch_dimension_address_inner()
1638 hval = 0; in zend_fetch_dimension_address_inner()
[all …]
H A Dzend_vm_def.h5236 zend_ulong hval; variable
5249 hval = Z_LVAL_P(offset);
5262 hval = 0;
5265 hval = 1;
5638 zend_ulong hval; variable
5690 hval = 0;
5693 hval = 1;
6535 zend_ulong hval; variable
6567 hval = Z_LVAL_P(offset);
6580 hval = 0;
[all …]
/PHP-7.0/ext/openssl/
H A Dopenssl.c4768 zval * hval; in PHP_FUNCTION() local
4838 ZEND_HASH_FOREACH_STR_KEY_VAL(Z_ARRVAL_P(zheaders), strindex, hval) { in PHP_FUNCTION()
4839 convert_to_string_ex(hval); in PHP_FUNCTION()
4842 BIO_printf(outfile, "%s: %s\n", ZSTR_VAL(strindex), Z_STRVAL_P(hval)); in PHP_FUNCTION()
4844 BIO_printf(outfile, "%s\n", Z_STRVAL_P(hval)); in PHP_FUNCTION()
/PHP-7.0/
H A DNEWS1074 . Fixed bug #72943 (assign_dim on string doesn't reset hval). (Laruence)

Completed in 192 milliseconds