cost_ins         1555 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, cost_ins)
cost_ins           30 ext/standard/levenshtein.c static zend_long reference_levdist(const char *s1, size_t l1, const char *s2, size_t l2, zend_long cost_ins, zend_long cost_rep, zend_long cost_del )
cost_ins           37 ext/standard/levenshtein.c 		return l2 * cost_ins;
cost_ins           50 ext/standard/levenshtein.c 		p1[i2] = i2 * cost_ins;
cost_ins           61 ext/standard/levenshtein.c 			c2 = p2[i2] + cost_ins;
cost_ins           99 ext/standard/levenshtein.c 	zend_long cost_ins, cost_rep, cost_del;
cost_ins          111 ext/standard/levenshtein.c 			if (zend_parse_parameters(5, "sslll", &str1, &str1_len, &str2, &str2_len, &cost_ins, &cost_rep, &cost_del) == FAILURE) {
cost_ins          114 ext/standard/levenshtein.c 			distance = reference_levdist(str1, str1_len, str2, str2_len, cost_ins, cost_rep, cost_del);