Home
last modified time | relevance | path

Searched refs:cost_rep (Results 1 – 1 of 1) sorted by path

/php-src/ext/standard/
H A Dlevenshtein.c22 …ing *string1, const zend_string *string2, zend_long cost_ins, zend_long cost_rep, zend_long cost_d… in reference_levdist() argument
38 if (ZSTR_LEN(string1) < ZSTR_LEN(string2) && cost_ins == cost_rep && cost_rep == cost_del) { in reference_levdist()
54 c0 = p1[i2] + ((ZSTR_VAL(string1)[i1] == ZSTR_VAL(string2)[i2]) ? 0 : cost_rep); in reference_levdist()
83 zend_long cost_rep = 1; in PHP_FUNCTION() local
86 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "SS|lll", &string1, &string2, &cost_ins, &cost_rep, &co… in PHP_FUNCTION()
91 RETURN_LONG(reference_levdist(string1, string2, cost_ins, cost_rep, cost_del)); in PHP_FUNCTION()

Completed in 4 milliseconds