cost_ins         1565 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, cost_ins)
cost_ins           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_ins           36 ext/standard/levenshtein.c 		return l2 * cost_ins;
cost_ins           49 ext/standard/levenshtein.c 		p1[i2] = i2 * cost_ins;
cost_ins           60 ext/standard/levenshtein.c 			c2 = p2[i2] + cost_ins;
cost_ins           98 ext/standard/levenshtein.c 	long cost_ins, cost_rep, cost_del;
cost_ins          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_ins          113 ext/standard/levenshtein.c 			distance = reference_levdist(str1, str1_len, str2, str2_len, cost_ins, cost_rep, cost_del);