Searched refs:txt1 (Results 1 – 2 of 2) sorted by relevance
/php-src/ext/standard/tests/serialize/ |
H A D | bug72229.phpt | 18 $txt1 = serialize($Obj1); 19 $Obj2 = unserialize($txt1);
|
/php-src/ext/standard/ |
H A D | string.c | 3585 static void php_similar_str(const char *txt1, size_t len1, const char *txt2, size_t len2, size_t *p… argument 3588 const char *end1 = (char *) txt1 + len1; 3594 for (p = (char *) txt1; p < end1; p++) { 3600 *pos1 = p - txt1; 3609 static size_t php_similar_char(const char *txt1, size_t len1, const char *txt2, size_t len2) argument 3614 php_similar_str(txt1, len1, txt2, len2, &pos1, &pos2, &max, &count); 3617 sum += php_similar_char(txt1, pos1, 3621 sum += php_similar_char(txt1 + pos1 + max, len1 - pos1 - max,
|
Completed in 30 milliseconds