Lines Matching refs:ZSTR_LEN

232 	if (ZSTR_LEN(new_value) >= ICONV_CSNMAXLEN) {  in PHP_INI_MH()
245 if (ZSTR_LEN(new_value) >= ICONV_CSNMAXLEN) { in PHP_INI_MH()
258 if (ZSTR_LEN(new_value) >= ICONV_CSNMAXLEN) { in PHP_INI_MH()
439 output_context->out.data = estrndup(ZSTR_VAL(out), ZSTR_LEN(out)); in php_iconv_output_handler()
440 output_context->out.used = ZSTR_LEN(out); in php_iconv_output_handler()
468 out_p = ZSTR_VAL((d)->s) + ZSTR_LEN((d)->s); in _php_iconv_appendl()
494 ZSTR_LEN((d)->s) += (buf_growth - out_left); in _php_iconv_appendl()
502 out_p = ZSTR_VAL((d)->s) + ZSTR_LEN((d)->s); in _php_iconv_appendl()
505 ZSTR_LEN((d)->s) += (buf_growth - out_left); in _php_iconv_appendl()
518 ZSTR_LEN((d)->s) += (buf_growth - out_left); in _php_iconv_appendl()
609 ZSTR_LEN(out_buffer) = out_size - out_left; in php_iconv_string()
721 ZSTR_LEN(out_buf) = out_size; in php_iconv_string()
1013 ndl_buf_left = ZSTR_LEN(ndl_buf); in _php_iconv_strpos()
1080 ndl_buf_left = ZSTR_LEN(ndl_buf) - i; in _php_iconv_strpos()
1084 ndl_buf_left = ZSTR_LEN(ndl_buf); in _php_iconv_strpos()
1098 ndl_buf_left = ZSTR_LEN(ndl_buf); in _php_iconv_strpos()
1123 ndl_buf_left = ZSTR_LEN(ndl_buf) - i; in _php_iconv_strpos()
1127 ndl_buf_left = ZSTR_LEN(ndl_buf); in _php_iconv_strpos()
1332 if (char_cnt < ZSTR_LEN(encoded)) { in _php_iconv_mime_encode()
1338 smart_str_appendl(pretval, ZSTR_VAL(encoded), ZSTR_LEN(encoded)); in _php_iconv_mime_encode()
1339 char_cnt -= ZSTR_LEN(encoded); in _php_iconv_mime_encode()
1875 err = _php_iconv_appendl(pretval, ZSTR_VAL(decoded_text), ZSTR_LEN(decoded_text), cd); in _php_iconv_mime_decode()
2091 err = _php_iconv_strlen(&retval, ZSTR_VAL(str), ZSTR_LEN(str), charset); in PHP_FUNCTION()
2126 length = ZSTR_LEN(str); in PHP_FUNCTION()
2129 err = _php_iconv_substr(&retval, ZSTR_VAL(str), ZSTR_LEN(str), offset, length, charset); in PHP_FUNCTION()
2132 if (err == PHP_ICONV_ERR_SUCCESS && ZSTR_LEN(str) >= 0 && retval.s != NULL) { in PHP_FUNCTION()
2167 err = _php_iconv_strlen(&haystk_len, ZSTR_VAL(haystk), ZSTR_LEN(haystk), charset); in PHP_FUNCTION()
2179 if (ZSTR_LEN(ndl) < 1) { in PHP_FUNCTION()
2183 err = _php_iconv_strpos(&retval, ZSTR_VAL(haystk), ZSTR_LEN(haystk), ZSTR_VAL(ndl), ZSTR_LEN(ndl), in PHP_FUNCTION()
2214 if (ZSTR_LEN(ndl) < 1) { in PHP_FUNCTION()
2223 err = _php_iconv_strpos(&retval, ZSTR_VAL(haystk), ZSTR_LEN(haystk), ZSTR_VAL(ndl), ZSTR_LEN(ndl), in PHP_FUNCTION()
2313 err = _php_iconv_mime_encode(&retval, ZSTR_VAL(field_name), ZSTR_LEN(field_name), in PHP_FUNCTION()
2314 ZSTR_VAL(field_value), ZSTR_LEN(field_value), line_len, lfchars, scheme_id, in PHP_FUNCTION()
2359 …err = _php_iconv_mime_decode(&retval, ZSTR_VAL(encoded_str), ZSTR_LEN(encoded_str), charset, NULL,… in PHP_FUNCTION()
2402 enc_str_len_tmp = ZSTR_LEN(encoded_str); in PHP_FUNCTION()
2421 limit = ZSTR_VAL(decoded_header.s) + ZSTR_LEN(decoded_header.s); in PHP_FUNCTION()
2492 …err = php_iconv_string(ZSTR_VAL(in_buffer), (size_t)ZSTR_LEN(in_buffer), &out_buffer, out_charset,… in PHP_NAMED_FUNCTION()
2517 if (ZSTR_LEN(charset) >= ICONV_CSNMAXLEN) { in PHP_FUNCTION()