Searched refs:phoned_word (Results 1 – 1 of 1) sorted by relevance
/PHP-7.3/ext/standard/ |
H A D | metaphone.c | 26 …ned char *word, size_t word_len, zend_long max_phonemes, zend_string **phoned_word, int traditiona… 145 *phoned_word = zend_string_extend(*phoned_word, 2 * sizeof(char) + max_buffer_len, 0); \ 148 ZSTR_VAL(*phoned_word)[p_idx++] = c; \ 149 ZSTR_LEN(*phoned_word) = p_idx; \ 154 *phoned_word = zend_string_extend(*phoned_word, 1 * sizeof(char) + max_buffer_len, 0); \ 157 ZSTR_VAL(*phoned_word)[p_idx] = '\0'; \ 158 ZSTR_LEN(*phoned_word) = p_idx; \ 168 …ned char *word, size_t word_len, zend_long max_phonemes, zend_string **phoned_word, int traditiona… in metaphone() argument 190 *phoned_word = zend_string_alloc(sizeof(char) * word_len + 1, 0); in metaphone() 193 *phoned_word = zend_string_alloc(sizeof(char) * max_phonemes + 1, 0); in metaphone()
|
Completed in 12 milliseconds