Home
last modified time | relevance | path

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

/PHP-5.5/ext/mbstring/
H A Dmbstring.c2718 zval **z_len = NULL; in PHP_FUNCTION() local
2721 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sl|Zs", &str, &str_len, &from, &z_len, &enco… in PHP_FUNCTION()
2740 if (argc < 3 || Z_TYPE_PP(z_len) == IS_NULL) { in PHP_FUNCTION()
2743 convert_to_long_ex(z_len); in PHP_FUNCTION()
2744 len = Z_LVAL_PP(z_len); in PHP_FUNCTION()
2795 zval **z_len = NULL; in PHP_FUNCTION() local
2802 …() TSRMLS_CC, "sl|Zs", (char **)&string.val, (int **)&string.len, &from, &z_len, &encoding, &encod… in PHP_FUNCTION()
2814 if (argc < 3 || Z_TYPE_PP(z_len) == IS_NULL) { in PHP_FUNCTION()
2817 convert_to_long_ex(z_len); in PHP_FUNCTION()
2818 len = Z_LVAL_PP(z_len); in PHP_FUNCTION()
/PHP-5.5/ext/pgsql/
H A Dpgsql.c3402 long z_len; local
3408 if (zend_parse_parameters(argc TSRMLS_CC, "rs|l", &pgsql_id, &str, &str_len, &z_len) == FAILURE) {
3413 if (z_len > str_len) {
3414 …TSRMLS_CC, E_WARNING, "Cannot write more than buffer size %d. Tried to write %ld", str_len, z_len);
3417 if (z_len < 0) {
3418 …cref(NULL TSRMLS_CC, E_WARNING, "Buffer size must be larger than 0, but %ld was specified", z_len);
3421 len = z_len;

Completed in 55 milliseconds