Home
last modified time | relevance | path

Searched refs:txt1 (Results 1 – 1 of 1) sorted by relevance

/PHP-5.4/ext/standard/
H A Dstring.c3250 static void php_similar_str(const char *txt1, int len1, const char *txt2, int len2, int *pos1, int … argument
3253 char *end1 = (char *) txt1 + len1;
3258 for (p = (char *) txt1; p < end1; p++) {
3263 *pos1 = p - txt1;
3273 static int php_similar_char(const char *txt1, int len1, const char *txt2, int len2) argument
3278 php_similar_str(txt1, len1, txt2, len2, &pos1, &pos2, &max);
3281 sum += php_similar_char(txt1, pos1,
3285 sum += php_similar_char(txt1 + pos1 + max, len1 - pos1 - max,

Completed in 35 milliseconds