Home
last modified time | relevance | path

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

/PHP-5.5/ext/pspell/
H A Dpspell.c874 int repl_len; in PHP_FUNCTION() local
877 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "lp", &conf, &repl, &repl_len) == FAILURE) { in PHP_FUNCTION()
/PHP-5.5/ext/standard/
H A Dstring.c2381 int repl_len = 0; local
2419 repl_len = Z_STRLEN_PP(tmp_repl);
2422 repl_len = Z_STRLEN_PP(repl);
2424 result_len = Z_STRLEN_PP(str) - l + repl_len;
2428 if (repl_len) {
2429 …(result + f), (Z_TYPE_PP(repl) == IS_ARRAY ? Z_STRVAL_PP(tmp_repl) : Z_STRVAL_PP(repl)), repl_len);
2431 memcpy((result + f + repl_len), Z_STRVAL_PP(str) + f + l, Z_STRLEN_PP(str) - f - l);
4306 size_t repl_len = is_xhtml ? (sizeof("<br />") - 1) : (sizeof("<br>") - 1); local
4308 new_length = str_len + repl_cnt * repl_len;
4312 tmp = target = safe_emalloc(repl_cnt, repl_len, str_len + 1);

Completed in 17 milliseconds