Home
last modified time | relevance | path

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

/php-src/ext/standard/tests/serialize/
H A Dbug72229.phpt18 $txt1 = serialize($Obj1);
19 $Obj2 = unserialize($txt1);
/php-src/ext/standard/
H A Dstring.c3617 static void php_similar_str(const char *txt1, size_t len1, const char *txt2, size_t len2, size_t *p… argument
3620 const char *end1 = (char *) txt1 + len1;
3626 for (p = (char *) txt1; p < end1; p++) {
3632 *pos1 = p - txt1;
3641 static size_t php_similar_char(const char *txt1, size_t len1, const char *txt2, size_t len2) argument
3646 php_similar_str(txt1, len1, txt2, len2, &pos1, &pos2, &max, &count);
3649 sum += php_similar_char(txt1, pos1,
3653 sum += php_similar_char(txt1 + pos1 + max, len1 - pos1 - max,

Completed in 49 milliseconds