cost_rep         1556 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, cost_rep)
cost_rep           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_rep           56 ext/standard/levenshtein.c 			c0 = p1[i2] + ((s1[i1] == s2[i2]) ? 0 : cost_rep);
cost_rep           99 ext/standard/levenshtein.c 	zend_long cost_ins, cost_rep, cost_del;
cost_rep          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_rep          114 ext/standard/levenshtein.c 			distance = reference_levdist(str1, str1_len, str2, str2_len, cost_ins, cost_rep, cost_del);