Lines Matching refs:n

302 		size_t n, size;  in php_mb_parse_encoding_list()  local
317 n = 0; in php_mb_parse_encoding_list()
341 n++; in php_mb_parse_encoding_list()
358 n++; in php_mb_parse_encoding_list()
360 if (n >= size || comma == NULL) { in php_mb_parse_encoding_list()
366 *return_size = n; in php_mb_parse_encoding_list()
385 size_t n = 0; in php_mb_parse_encoding_array() local
403 n++; in php_mb_parse_encoding_array()
410 n++; in php_mb_parse_encoding_array()
421 *return_size = n; in php_mb_parse_encoding_array()
1263 size_t type_len = 0, n; in PHP_FUNCTION() local
1299 n = MBSTRG(http_input_list_size); in PHP_FUNCTION()
1301 for (size_t i = 0; i < n; i++, entry++) { in PHP_FUNCTION()
1308 n = MBSTRG(http_input_list_size); in PHP_FUNCTION()
1309 if (n == 0) { in PHP_FUNCTION()
1314 for (size_t i = 0; i < n; i++, entry++) { in PHP_FUNCTION()
1377 size_t n = MBSTRG(current_detect_order_list_size); in PHP_FUNCTION() local
1380 for (size_t i = 0; i < n; i++) { in PHP_FUNCTION()
1985 size_t n = mb_find_strpos(haystack, needle, enc, offset, false); in PHP_FUNCTION() local
1986 if (!mbfl_is_error(n)) { in PHP_FUNCTION()
1987 RETVAL_LONG(n); in PHP_FUNCTION()
1989 handle_strpos_error(n); in PHP_FUNCTION()
2014 size_t n = mb_find_strpos(haystack, needle, enc, offset, true); in PHP_FUNCTION() local
2015 if (!mbfl_is_error(n)) { in PHP_FUNCTION()
2016 RETVAL_LONG(n); in PHP_FUNCTION()
2018 handle_strpos_error(n); in PHP_FUNCTION()
2044 size_t n = php_mb_stripos(false, haystack, needle, offset, enc); in PHP_FUNCTION() local
2046 if (!mbfl_is_error(n)) { in PHP_FUNCTION()
2047 RETVAL_LONG(n); in PHP_FUNCTION()
2049 handle_strpos_error(n); in PHP_FUNCTION()
2075 size_t n = php_mb_stripos(true, haystack, needle, offset, enc); in PHP_FUNCTION() local
2077 if (!mbfl_is_error(n)) { in PHP_FUNCTION()
2078 RETVAL_LONG(n); in PHP_FUNCTION()
2080 handle_strpos_error(n); in PHP_FUNCTION()
2152 size_t n; in php_mb_strstr_variants() local
2174 n = php_mb_stripos(reverse_mode, haystack, needle, 0, enc); in php_mb_strstr_variants()
2176 n = mb_find_strpos(haystack, needle, enc, 0, reverse_mode); in php_mb_strstr_variants()
2179 if (!mbfl_is_error(n)) { in php_mb_strstr_variants()
2181 RETVAL_STR(mb_get_substr(haystack, 0, n, enc)); in php_mb_strstr_variants()
2183 RETVAL_STR(mb_get_substr(haystack, n, MBFL_SUBSTR_UNTIL_END, enc)); in php_mb_strstr_variants()
3224 …mbfl_encoding **encodings, const unsigned char **in, size_t *in_len, size_t n, bool strict, bool o… in init_candidate_array() argument
3238 for (size_t k = 0; k < n; k++) { in init_candidate_array()
3342 …ding_for_strings(const unsigned char **strings, size_t *str_lengths, size_t n, const mbfl_encoding… in mb_guess_encoding_for_strings() argument
3349 while (n--) { in mb_guess_encoding_for_strings()
3350 if (!php_mb_check_encoding((const char*)strings[n], str_lengths[n], *elist)) { in mb_guess_encoding_for_strings()
3357 if (n == 1 && *str_lengths == 0) { in mb_guess_encoding_for_strings()
3363 …elist_size = init_candidate_array(array, elist_size, elist, strings, str_lengths, n, strict, order… in mb_guess_encoding_for_strings()
3365 while (n--) { in mb_guess_encoding_for_strings()
3366 start_string(array, elist_size, strings[n], str_lengths[n]); in mb_guess_encoding_for_strings()
3840 for (size_t n = 0; n < argc; n++) { in PHP_FUNCTION() local
3841 zval *zv = &args[n]; in PHP_FUNCTION()
3847 for (size_t n = 0; n < argc; n++) { in PHP_FUNCTION() local
3848 zval *zv = &args[n]; in PHP_FUNCTION()
3871 for (size_t n = 0; n < argc; n++) { in PHP_FUNCTION() local
3872 zval *zv = &args[n]; in PHP_FUNCTION()
4690 size_t n; in PHP_FUNCTION() local
4740 n = MBSTRG(current_detect_order_list_size); in PHP_FUNCTION()
4742 if (n > 0) { in PHP_FUNCTION()
4745 for (i = 0; i < n; i++) { in PHP_FUNCTION()
4806 n = MBSTRG(current_detect_order_list_size); in PHP_FUNCTION()
4808 if (n > 0) { in PHP_FUNCTION()
4811 for (i = 0; i < n; i++) { in PHP_FUNCTION()
6023 size_t n = mb_find_strpos(haystack_conv, needle_conv, &mbfl_encoding_utf8, offset, mode); in php_mb_stripos() local
6028 return n; in php_mb_stripos()
6327 unsigned int n = 12; in mb_mime_header_encode() local
6341 n = MIN(n, e - p); in mb_mime_header_encode()
6342 outcode->from_wchar(p, n, &tmpbuf, false); in mb_mime_header_encode()
6351 if (transfer_encoded_size(&tmpbuf, base64) <= space_available || (n == 1 && tmppos == 0)) { in mb_mime_header_encode()
6354 p += n; in mb_mime_header_encode()
6377 if (n == 1) { in mb_mime_header_encode()
6409 n = MAX(n >> 1, 1); in mb_mime_header_encode()