Lines Matching refs:hash_entry
789 zval **hash_entry; in php_mb_parse_encoding_array() local
813 if (zend_hash_get_current_data(target_hash, (void **) &hash_entry) == FAILURE) { in php_mb_parse_encoding_array()
816 convert_to_string_ex(hash_entry); in php_mb_parse_encoding_array()
817 if (strcasecmp(Z_STRVAL_PP(hash_entry), "auto") == 0) { in php_mb_parse_encoding_array()
829 no_encoding = mbfl_name2no_encoding(Z_STRVAL_PP(hash_entry)); in php_mb_parse_encoding_array()
2867 zval **hash_entry; in PHP_FUNCTION() local
2883 if (zend_hash_get_current_data(target_hash, (void **) &hash_entry) == FAILURE) { in PHP_FUNCTION()
2887 convert_to_string_ex(hash_entry); in PHP_FUNCTION()
2891 n = strlen(Z_STRVAL_PP(hash_entry)); in PHP_FUNCTION()
2894 strcpy(_from_encodings+l+1, Z_STRVAL_PP(hash_entry)); in PHP_FUNCTION()
2896 _from_encodings = estrdup(Z_STRVAL_PP(hash_entry)); in PHP_FUNCTION()
3311 zval ***args, ***stack, **var, **hash_entry, **zfrom_enc; in PHP_FUNCTION() local
3382 while (zend_hash_get_current_data(target_hash, (void **) &hash_entry) != FAILURE) { in PHP_FUNCTION()
3384 if (Z_TYPE_PP(hash_entry) == IS_ARRAY || Z_TYPE_PP(hash_entry) == IS_OBJECT) { in PHP_FUNCTION()
3392 var = hash_entry; in PHP_FUNCTION()
3398 } else if (Z_TYPE_PP(hash_entry) == IS_STRING) { in PHP_FUNCTION()
3399 string.val = (unsigned char *)Z_STRVAL_PP(hash_entry); in PHP_FUNCTION()
3400 string.len = Z_STRLEN_PP(hash_entry); in PHP_FUNCTION()
3463 while (zend_hash_get_current_data(target_hash, (void **) &hash_entry) != FAILURE) { in PHP_FUNCTION()
3465 if (Z_TYPE_PP(hash_entry) == IS_ARRAY || Z_TYPE_PP(hash_entry) == IS_OBJECT) { in PHP_FUNCTION()
3473 var = hash_entry; in PHP_FUNCTION()
3474 SEPARATE_ZVAL(hash_entry); in PHP_FUNCTION()
3480 } else if (Z_TYPE_PP(hash_entry) == IS_STRING) { in PHP_FUNCTION()
3481 string.val = (unsigned char *)Z_STRVAL_PP(hash_entry); in PHP_FUNCTION()
3482 string.len = Z_STRLEN_PP(hash_entry); in PHP_FUNCTION()
3485 if (Z_REFCOUNT_PP(hash_entry) > 1) { in PHP_FUNCTION()
3486 Z_DELREF_PP(hash_entry); in PHP_FUNCTION()
3487 MAKE_STD_ZVAL(*hash_entry); in PHP_FUNCTION()
3489 zval_dtor(*hash_entry); in PHP_FUNCTION()
3491 ZVAL_STRINGL(*hash_entry, (char *)ret->val, ret->len, 0); in PHP_FUNCTION()
3530 zval *zconvmap, **hash_entry; in php_mb_numericentity_exec() local
3569 if (zend_hash_get_current_data(target_hash, (void **) &hash_entry) == FAILURE) { in php_mb_numericentity_exec()
3572 convert_to_long_ex(hash_entry); in php_mb_numericentity_exec()
3573 *mapelm++ = Z_LVAL_PP(hash_entry); in php_mb_numericentity_exec()