Lines Matching refs:new_prefix

170 			zend_string *new_prefix;  in php_url_encode_hash_ex()  local
180new_prefix = zend_string_concat3(ZSTR_VAL(key_prefix), ZSTR_LEN(key_prefix), ZSTR_VAL(encoded_key)… in php_url_encode_hash_ex()
182new_prefix = zend_string_concat2(ZSTR_VAL(encoded_key), ZSTR_LEN(encoded_key), "%5B", strlen("%5B"… in php_url_encode_hash_ex()
194 new_prefix = zend_string_alloc(len, 0); in php_url_encode_hash_ex()
196 memcpy(ZSTR_VAL(new_prefix), ZSTR_VAL(key_prefix), ZSTR_LEN(key_prefix)); in php_url_encode_hash_ex()
197 memcpy(ZSTR_VAL(new_prefix) + ZSTR_LEN(key_prefix), num_prefix, num_prefix_len); in php_url_encode_hash_ex()
198 …memcpy(ZSTR_VAL(new_prefix) + ZSTR_LEN(key_prefix) + num_prefix_len, index_int_as_str, index_int_a… in php_url_encode_hash_ex()
199 …memcpy(ZSTR_VAL(new_prefix) + ZSTR_LEN(key_prefix) + num_prefix_len +index_int_as_str_len, "%5D%5B… in php_url_encode_hash_ex()
200 ZSTR_VAL(new_prefix)[len] = '\0'; in php_url_encode_hash_ex() local
202new_prefix = zend_string_concat3(ZSTR_VAL(key_prefix), ZSTR_LEN(key_prefix), index_int_as_str, ind… in php_url_encode_hash_ex()
204new_prefix = zend_string_concat3(num_prefix, num_prefix_len, index_int_as_str, index_int_as_str_le… in php_url_encode_hash_ex()
206 new_prefix = zend_string_concat2(index_int_as_str, index_int_as_str_len, "%5B", strlen("%5B")); in php_url_encode_hash_ex()
211 …php_url_encode_hash_ex(HASH_OF(zdata), formstr, NULL, 0, new_prefix, (Z_TYPE_P(zdata) == IS_OBJECT… in php_url_encode_hash_ex()
213 zend_string_release_ex(new_prefix, false); in php_url_encode_hash_ex()