Lines Matching refs:ZSTR_LEN

227 	if (ZSTR_LEN(new_value) >= ICONV_CSNMAXLEN) {  in PHP_INI_MH()
240 if (ZSTR_LEN(new_value) >= ICONV_CSNMAXLEN) { in PHP_INI_MH()
253 if (ZSTR_LEN(new_value) >= ICONV_CSNMAXLEN) { in PHP_INI_MH()
422 output_context->out.data = estrndup(ZSTR_VAL(out), ZSTR_LEN(out)); in php_iconv_output_handler()
423 output_context->out.used = ZSTR_LEN(out); in php_iconv_output_handler()
451 out_p = ZSTR_VAL((d)->s) + ZSTR_LEN((d)->s); in _php_iconv_appendl()
477 ZSTR_LEN((d)->s) += (buf_growth - out_left); in _php_iconv_appendl()
485 out_p = ZSTR_VAL((d)->s) + ZSTR_LEN((d)->s); in _php_iconv_appendl()
488 ZSTR_LEN((d)->s) += (buf_growth - out_left); in _php_iconv_appendl()
501 ZSTR_LEN((d)->s) += (buf_growth - out_left); in _php_iconv_appendl()
592 ZSTR_LEN(out_buffer) = out_size - out_left; in php_iconv_string()
704 ZSTR_LEN(out_buf) = out_size; in php_iconv_string()
997 ndl_buf_left = ZSTR_LEN(ndl_buf); in _php_iconv_strpos()
1065 ndl_buf_left = ZSTR_LEN(ndl_buf) - i; in _php_iconv_strpos()
1069 ndl_buf_left = ZSTR_LEN(ndl_buf); in _php_iconv_strpos()
1083 ndl_buf_left = ZSTR_LEN(ndl_buf); in _php_iconv_strpos()
1108 ndl_buf_left = ZSTR_LEN(ndl_buf) - i; in _php_iconv_strpos()
1112 ndl_buf_left = ZSTR_LEN(ndl_buf); in _php_iconv_strpos()
1318 if (char_cnt < ZSTR_LEN(encoded)) { in _php_iconv_mime_encode()
1324 smart_str_appendl(pretval, ZSTR_VAL(encoded), ZSTR_LEN(encoded)); in _php_iconv_mime_encode()
1325 char_cnt -= ZSTR_LEN(encoded); in _php_iconv_mime_encode()
1861 err = _php_iconv_appendl(pretval, ZSTR_VAL(decoded_text), ZSTR_LEN(decoded_text), cd); in _php_iconv_mime_decode()
2084 err = _php_iconv_strlen(&retval, ZSTR_VAL(str), ZSTR_LEN(str), charset); in PHP_FUNCTION()
2119 length = ZSTR_LEN(str); in PHP_FUNCTION()
2122 err = _php_iconv_substr(&retval, ZSTR_VAL(str), ZSTR_LEN(str), offset, length, charset); in PHP_FUNCTION()
2125 if (err == PHP_ICONV_ERR_SUCCESS && ZSTR_LEN(str) >= 0 && retval.s != NULL) { in PHP_FUNCTION()
2160 err = _php_iconv_strlen(&haystk_len, ZSTR_VAL(haystk), ZSTR_LEN(haystk), charset); in PHP_FUNCTION()
2172 if (ZSTR_LEN(ndl) < 1) { in PHP_FUNCTION()
2176 err = _php_iconv_strpos(&retval, ZSTR_VAL(haystk), ZSTR_LEN(haystk), ZSTR_VAL(ndl), ZSTR_LEN(ndl), in PHP_FUNCTION()
2207 if (ZSTR_LEN(ndl) < 1) { in PHP_FUNCTION()
2216 err = _php_iconv_strpos(&retval, ZSTR_VAL(haystk), ZSTR_LEN(haystk), ZSTR_VAL(ndl), ZSTR_LEN(ndl), in PHP_FUNCTION()
2309 err = _php_iconv_mime_encode(&retval, ZSTR_VAL(field_name), ZSTR_LEN(field_name), in PHP_FUNCTION()
2310 ZSTR_VAL(field_value), ZSTR_LEN(field_value), line_len, lfchars, scheme_id, in PHP_FUNCTION()
2355 …err = _php_iconv_mime_decode(&retval, ZSTR_VAL(encoded_str), ZSTR_LEN(encoded_str), charset, NULL,… in PHP_FUNCTION()
2398 enc_str_len_tmp = ZSTR_LEN(encoded_str); in PHP_FUNCTION()
2417 limit = ZSTR_VAL(decoded_header.s) + ZSTR_LEN(decoded_header.s); in PHP_FUNCTION()
2488 …err = php_iconv_string(ZSTR_VAL(in_buffer), (size_t)ZSTR_LEN(in_buffer), &out_buffer, out_charset,… in PHP_NAMED_FUNCTION()
2513 if (ZSTR_LEN(charset) >= ICONV_CSNMAXLEN) { in PHP_FUNCTION()