repl_len          874 ext/pspell/pspell.c 	int repl_len;
repl_len          877 ext/pspell/pspell.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "lp", &conf, &repl, &repl_len) == FAILURE) {
repl_len         2373 ext/standard/string.c 			int repl_len = 0;
repl_len         2411 ext/standard/string.c 					repl_len = Z_STRLEN_PP(tmp_repl);
repl_len         2414 ext/standard/string.c 				repl_len = Z_STRLEN_PP(repl);
repl_len         2416 ext/standard/string.c 			result_len = Z_STRLEN_PP(str) - l + repl_len;
repl_len         2420 ext/standard/string.c 			if (repl_len) {
repl_len         2421 ext/standard/string.c 				memcpy((result + f), (Z_TYPE_PP(repl) == IS_ARRAY ? Z_STRVAL_PP(tmp_repl) : Z_STRVAL_PP(repl)), repl_len);
repl_len         2423 ext/standard/string.c 			memcpy((result + f + repl_len), Z_STRVAL_PP(str) + f + l, Z_STRLEN_PP(str) - f - l);
repl_len         4285 ext/standard/string.c 		size_t repl_len = is_xhtml ? (sizeof("<br />") - 1) : (sizeof("<br>") - 1);
repl_len         4287 ext/standard/string.c 		new_length = str_len + repl_cnt * repl_len;
repl_len         4288 ext/standard/string.c 		tmp = target = safe_emalloc(repl_cnt, repl_len, str_len + 1);