cost_del 1567 ext/standard/basic_functions.c ZEND_ARG_INFO(0, cost_del) cost_del 30 ext/standard/levenshtein.c static int reference_levdist(const char *s1, int l1, const char *s2, int l2, int cost_ins, int cost_rep, int cost_del ) cost_del 39 ext/standard/levenshtein.c return l1 * cost_del; cost_del 52 ext/standard/levenshtein.c p2[0] = p1[0] + cost_del; cost_del 56 ext/standard/levenshtein.c c1 = p1[i2 + 1] + cost_del; cost_del 98 ext/standard/levenshtein.c long cost_ins, cost_rep, cost_del; cost_del 110 ext/standard/levenshtein.c if (zend_parse_parameters(5 TSRMLS_CC, "sslll", &str1, &str1_len, &str2, &str2_len, &cost_ins, &cost_rep, &cost_del) == FAILURE) { cost_del 113 ext/standard/levenshtein.c distance = reference_levdist(str1, str1_len, str2, str2_len, cost_ins, cost_rep, cost_del);