Home
last modified time | relevance | path

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

/PHP-5.3/ext/pspell/
H A Dpspell.c892 int repl_len; in PHP_FUNCTION() local
895 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ls", &conf, &repl, &repl_len) == FAILURE) { in PHP_FUNCTION()
903 if (strlen(repl) != repl_len) { in PHP_FUNCTION()
/PHP-5.3/ext/standard/
H A Dstring.c2281 int repl_len = 0; local
2319 repl_len = Z_STRLEN_PP(tmp_repl);
2322 repl_len = Z_STRLEN_PP(repl);
2324 result_len = Z_STRLEN_PP(str) - l + repl_len;
2328 if (repl_len) {
2329 …(result + f), (Z_TYPE_PP(repl) == IS_ARRAY ? Z_STRVAL_PP(tmp_repl) : Z_STRVAL_PP(repl)), repl_len);
2331 memcpy((result + f + repl_len), Z_STRVAL_PP(str) + f + l, Z_STRLEN_PP(str) - f - l);
4004 size_t repl_len = is_xhtml ? (sizeof("<br />") - 1) : (sizeof("<br>") - 1); local
4006 new_length = str_len + repl_cnt * repl_len;
4007 tmp = target = safe_emalloc(repl_cnt, repl_len, str_len + 1);

Completed in 24 milliseconds