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

/PHP_TRUNK/ext/mbstring/
H A Dmbstring.c2718 zval **z_len = NULL; local
2721 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sl|Zs", &str, &str_len, &from, &z_len, &encoding, &encoding_len) == FAILURE) {
2740 if (argc < 3 || Z_TYPE_PP(z_len) == IS_NULL) {
2743 convert_to_long_ex(z_len);
2744 len = Z_LVAL_PP(z_len);
2795 zval **z_len = NULL; local
2802 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sl|Zs", (char **)&string.val, (int **)&string.len, &from, &z_len, &encoding, &encoding_len) == FAILURE) {
2814 if (argc < 3 || Z_TYPE_PP(z_len) == IS_NULL) {
2817 convert_to_long_ex(z_len);
2818 len = Z_LVAL_PP(z_len);
[all...]
/PHP_TRUNK/ext/pgsql/
H A Dpgsql.c3272 long z_len; local
3278 if (zend_parse_parameters(argc TSRMLS_CC, "rs|l", &pgsql_id, &str, &str_len, &z_len) == FAILURE) {
3283 if (z_len > str_len) {
3284 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Cannot write more than buffer size %d. Tried to write %ld", str_len, z_len);
3287 if (z_len < 0) {
3288 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Buffer size must be larger than 0, but %ld was specified", z_len);
3291 len = z_len;

Completed in 15 milliseconds