Lines Matching refs:p

280 static size_t count_commas(const char *p, const char *end) {  in count_commas()  argument
282 while ((p = memchr(p, ',', end - p))) { in count_commas()
284 p++; in count_commas()
323 char *p = comma ? comma : endp; in php_mb_parse_encoding_list() local
324 *p = '\0'; in php_mb_parse_encoding_list()
326 while (p1 < p && (*p1 == ' ' || *p1 == '\t')) { in php_mb_parse_encoding_list()
329 p--; in php_mb_parse_encoding_list()
330 while (p > p1 && (*p == ' ' || *p == '\t')) { in php_mb_parse_encoding_list()
331 *p = '\0'; in php_mb_parse_encoding_list()
332 p--; in php_mb_parse_encoding_list()
1586 char *p; in PHP_FUNCTION() local
1587 size_t len = spprintf(&p, 0, "Content-Type: %s; charset=%s", mimetype, charset); in PHP_FUNCTION()
1588 if (sapi_add_header(p, len, 0) != FAILURE) { in PHP_FUNCTION()
1657 unsigned char *p = (unsigned char*)ZSTR_VAL(str), *e = p + ZSTR_LEN(str); in PHP_FUNCTION() local
1664 while (p < e) { in PHP_FUNCTION()
1665 add_next_index_stringl(return_value, (const char*)p, MIN(chunk_len, e - p)); in PHP_FUNCTION()
1666 p += chunk_len; in PHP_FUNCTION()
1674 while (p < e) { in PHP_FUNCTION()
1675 unsigned char *chunk = p; /* start of chunk */ in PHP_FUNCTION()
1677 for (int char_count = 0; char_count < split_len && p < e; char_count++) { in PHP_FUNCTION()
1678 p += mbtab[*p]; in PHP_FUNCTION()
1680 if (p > e) { in PHP_FUNCTION()
1681 p = e; /* ensure chunk is in bounds */ in PHP_FUNCTION()
1683 add_next_index_stringl(return_value, (const char*)chunk, p - chunk); in PHP_FUNCTION()
1696 size_t out_len = enc->to_wchar(&p, &in_len, wchar_buf, 128, &state); in PHP_FUNCTION()
1771 static size_t mb_fast_strlen_utf8(unsigned char *p, size_t len) in mb_fast_strlen_utf8() argument
1773 unsigned char *e = p + len; in mb_fast_strlen_utf8()
1785 __m128i operand = _mm_loadu_si128((__m128i*)p); /* Load 16 bytes */ in mb_fast_strlen_utf8()
1797 p += sizeof(__m128i); in mb_fast_strlen_utf8()
1798 } while (p <= e); in mb_fast_strlen_utf8()
1806 while (p < e) { in mb_fast_strlen_utf8()
1807 signed char c = *p++; in mb_fast_strlen_utf8()
2287 const char *p = ZSTR_VAL(haystack_u8), *e = p + ZSTR_LEN(haystack_u8); in PHP_FUNCTION() local
2289 p = zend_memnstr(p, ZSTR_VAL(needle_u8), ZSTR_LEN(needle_u8), e); in PHP_FUNCTION()
2290 if (!p) { in PHP_FUNCTION()
2293 p += ZSTR_LEN(needle_u8); in PHP_FUNCTION()
3347 char *p = optstr, *e = p + optstr_len; in PHP_FUNCTION() local
3350 while (p < e) { in PHP_FUNCTION()
3353 char c = *p++; in PHP_FUNCTION()
3714 unsigned char *p = entity + sizeof(entity); in html_numeric_entity_encode() local
3717 *(--p) = "0123456789ABCDEF"[w & 0xF]; in html_numeric_entity_encode()
3722 *(--p) = "0123456789"[w % 10]; in html_numeric_entity_encode()
3726 while (p < entity + sizeof(entity)) { in html_numeric_entity_encode()
3727 *converted++ = *p++; in html_numeric_entity_encode()
3835 uint32_t *p, *converted; in html_numeric_entity_decode() local
3840 p = wchar_buf; in html_numeric_entity_decode()
3841 while (*p != '&') in html_numeric_entity_decode()
3842 p++; in html_numeric_entity_decode()
3843 if (p == wchar_buf + out_len) { in html_numeric_entity_decode()
3850 memcpy(converted_buf, wchar_buf, (p - wchar_buf) * 4); in html_numeric_entity_decode()
3851 converted = converted_buf + (p - wchar_buf); in html_numeric_entity_decode()
3853 p = wchar_buf; in html_numeric_entity_decode()
3858 ZEND_ASSERT(*p == '&'); in html_numeric_entity_decode()
3859 uint32_t *p2 = p; in html_numeric_entity_decode()
3868 if ((p2 == wchar_buf + out_len) && in_len && (p2 - p) <= HEX_ENTITY_MAXLEN) { in html_numeric_entity_decode()
3872 memmove(wchar_buf, p, (p2 - p) * 4); in html_numeric_entity_decode()
3873 wchar_buf_offset = p2 - p; in html_numeric_entity_decode()
3875 } else if ((p2 - p) < HEX_ENTITY_MINLEN || (p2 - p) > HEX_ENTITY_MAXLEN) { in html_numeric_entity_decode()
3877 memcpy(converted, p, (p2 - p) * 4); in html_numeric_entity_decode()
3878 converted += p2 - p; in html_numeric_entity_decode()
3881 uint32_t value = 0, *p3 = p + 3; in html_numeric_entity_decode()
3897 memcpy(converted, p, (p2 - p) * 4); in html_numeric_entity_decode()
3898 converted += p2 - p; in html_numeric_entity_decode()
3906 if ((p2 == wchar_buf + out_len) && in_len && (p2 - p) <= DEC_ENTITY_MAXLEN) { in html_numeric_entity_decode()
3909 memmove(wchar_buf, p, (p2 - p) * 4); in html_numeric_entity_decode()
3910 wchar_buf_offset = p2 - p; in html_numeric_entity_decode()
3912 } else if ((p2 - p) < DEC_ENTITY_MINLEN || (p2 - p) > DEC_ENTITY_MAXLEN) { in html_numeric_entity_decode()
3914 memcpy(converted, p, (p2 - p) * 4); in html_numeric_entity_decode()
3915 converted += p2 - p; in html_numeric_entity_decode()
3918 uint32_t value = 0, *p3 = p + 2; in html_numeric_entity_decode()
3924 memcpy(converted, p, (p2 - p) * 4); in html_numeric_entity_decode()
3925 converted += p2 - p; in html_numeric_entity_decode()
3935 memcpy(converted, p, (p2 - p) * 4); in html_numeric_entity_decode()
3936 converted += p2 - p; in html_numeric_entity_decode()
3952 p = p2; in html_numeric_entity_decode()
3956 if (p2 > p) { in html_numeric_entity_decode()
3957 memcpy(converted, p, (p2 - p) * 4); in html_numeric_entity_decode()
3958 converted += p2 - p; in html_numeric_entity_decode()
3959 p = p2; in html_numeric_entity_decode()
3962 if (p < wchar_buf + out_len) in html_numeric_entity_decode()
4185 char *p; in PHP_FUNCTION() local
4239 p = strchr(Z_STRVAL_P(s), ';'); in PHP_FUNCTION()
4241 if (p != NULL) { in PHP_FUNCTION()
4244 ++p; in PHP_FUNCTION()
4245 } while (*p == ' ' || *p == '\t'); in PHP_FUNCTION()
4247 if (*p != '\0') { in PHP_FUNCTION()
4248 if ((param_name = php_strtok_r(p, "= ", &tmp)) != NULL) { in PHP_FUNCTION()
4377 p = (char *)mbfl_encoding_preferred_mime_name(tran_cs); in PHP_FUNCTION()
4378 if (p != NULL) { in PHP_FUNCTION()
4380 smart_str_appends(&str, p); in PHP_FUNCTION()
4390 p = (char *)mbfl_encoding_preferred_mime_name(body_enc); in PHP_FUNCTION()
4391 if (p == NULL) { in PHP_FUNCTION()
4392 p = "7bit"; in PHP_FUNCTION()
4394 smart_str_appends(&str, p); in PHP_FUNCTION()
4626 unsigned char *p = (unsigned char*)ZSTR_VAL(str); in mb_fast_check_utf8_default() local
4632 unsigned char *e = p + ((ZSTR_LEN(str) + 1) & ~(sizeof(__m128i) - 1)); in mb_fast_check_utf8_default()
4650 while (p < e) { in mb_fast_check_utf8_default()
4651 operand = _mm_loadu_si128((__m128i*)p); /* Load 16 bytes */ in mb_fast_check_utf8_default()
4670 p += sizeof(__m128i); in mb_fast_check_utf8_default()
4671 if (p >= e) { in mb_fast_check_utf8_default()
4674 operand = _mm_loadu_si128((__m128i*)p); in mb_fast_check_utf8_default()
4739 p += sizeof(__m128i); in mb_fast_check_utf8_default()
4744 if (p == e) { in mb_fast_check_utf8_default()
4770 operand = _mm_set_epi16(0, 0, 0, 0, 0, 0, 0, *((uint16_t*)p)); in mb_fast_check_utf8_default()
4774 operand = _mm_set_epi32(0, 0, 0, *((uint32_t*)p)); in mb_fast_check_utf8_default()
4777 operand = _mm_srli_si128(_mm_loadu_si128((__m128i*)(p - 10)), 10); in mb_fast_check_utf8_default()
4780 operand = _mm_srli_si128(_mm_loadu_si128((__m128i*)(p - 9)), 9); in mb_fast_check_utf8_default()
4785 operand = _mm_set_epi32(0, 0, ((int32_t*)p)[1], ((int32_t*)p)[0]); in mb_fast_check_utf8_default()
4787 operand = _mm_set_epi64x(0, *((uint64_t*)p)); in mb_fast_check_utf8_default()
4791 operand = _mm_srli_si128(_mm_loadu_si128((__m128i*)(p - 6)), 6); in mb_fast_check_utf8_default()
4794 operand = _mm_srli_si128(_mm_loadu_si128((__m128i*)(p - 5)), 5); in mb_fast_check_utf8_default()
4797 operand = _mm_srli_si128(_mm_loadu_si128((__m128i*)(p - 4)), 4); in mb_fast_check_utf8_default()
4800 operand = _mm_srli_si128(_mm_loadu_si128((__m128i*)(p - 3)), 3); in mb_fast_check_utf8_default()
4803 operand = _mm_srli_si128(_mm_loadu_si128((__m128i*)(p - 2)), 2); in mb_fast_check_utf8_default()
4806 operand = _mm_srli_si128(_mm_loadu_si128((__m128i*)(p - 1)), 1); in mb_fast_check_utf8_default()
4831 for (; length > 0; p++) { in mb_fast_check_utf8_default()
4833 unsigned char c = *p; in mb_fast_check_utf8_default()
4858 if (((d = *(++p)) & 0xc0) != 0x80) { in mb_fast_check_utf8_default()
4877 if ((*(++p) & 0xc0) != 0x80 || (c == 0xe0 && (d & 0x20) == 0) || (c == 0xed && d >= 0xa0)) { in mb_fast_check_utf8_default()
4886 …if ((*(++p) & 0xc0) != 0x80 || (*(++p) & 0xc0) != 0x80 || (c == 0xf0 && (d & 0x30) == 0) || (c > 0… in mb_fast_check_utf8_default()
5004 unsigned char *p = (unsigned char*)ZSTR_VAL(str); in mb_fast_check_utf8_avx2() local
5005 unsigned char *e = p + ((ZSTR_LEN(str) + 1) & ~(sizeof(__m256i) - 1)); in mb_fast_check_utf8_avx2()
5095 while (p < e) { in mb_fast_check_utf8_avx2()
5096 operand = _mm256_loadu_si256((__m256i*)p); in mb_fast_check_utf8_avx2()
5111 p += sizeof(__m256i); in mb_fast_check_utf8_avx2()
5112 if (p >= e) { in mb_fast_check_utf8_avx2()
5115 operand = _mm256_loadu_si256((__m256i*)p); in mb_fast_check_utf8_avx2()
5152 p += sizeof(__m256i); in mb_fast_check_utf8_avx2()
5156 if (p == e) { in mb_fast_check_utf8_avx2()
5167 operand = _mm256_set_epi16(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, *((int16_t*)p)); in mb_fast_check_utf8_avx2()
5171 operand = _mm256_set_epi32(0, 0, 0, 0, 0, 0, 0, *((int32_t*)p)); in mb_fast_check_utf8_avx2()
5174 …operand = _mm256_set_m128i(_mm_setzero_si128(), _mm_srli_si128(_mm_loadu_si128((__m128i*)(p - 10))… in mb_fast_check_utf8_avx2()
5177 …operand = _mm256_set_m128i(_mm_setzero_si128(), _mm_srli_si128(_mm_loadu_si128((__m128i*)(p - 9)),… in mb_fast_check_utf8_avx2()
5182 operand = _mm256_set_epi32(0, 0, 0, 0, 0, 0, ((int32_t*)p)[1], ((int32_t*)p)[0]); in mb_fast_check_utf8_avx2()
5184 operand = _mm256_set_epi64x(0, 0, 0, *((int64_t*)p)); in mb_fast_check_utf8_avx2()
5188 …operand = _mm256_set_m128i(_mm_setzero_si128(), _mm_srli_si128(_mm_loadu_si128((__m128i*)(p - 6)),… in mb_fast_check_utf8_avx2()
5191 …operand = _mm256_set_m128i(_mm_setzero_si128(), _mm_srli_si128(_mm_loadu_si128((__m128i*)(p - 5)),… in mb_fast_check_utf8_avx2()
5194 …operand = _mm256_set_m128i(_mm_setzero_si128(), _mm_srli_si128(_mm_loadu_si128((__m128i*)(p - 4)),… in mb_fast_check_utf8_avx2()
5197 …operand = _mm256_set_m128i(_mm_setzero_si128(), _mm_srli_si128(_mm_loadu_si128((__m128i*)(p - 3)),… in mb_fast_check_utf8_avx2()
5200 …operand = _mm256_set_m128i(_mm_setzero_si128(), _mm_srli_si128(_mm_loadu_si128((__m128i*)(p - 2)),… in mb_fast_check_utf8_avx2()
5203 …operand = _mm256_set_m128i(_mm_setzero_si128(), _mm_srli_si128(_mm_loadu_si128((__m128i*)(p - 1)),… in mb_fast_check_utf8_avx2()
5207 operand = _mm256_set_m128i(_mm_setzero_si128(), _mm_loadu_si128((__m128i*)p)); in mb_fast_check_utf8_avx2()
5210 …256_set_m128i(_mm_srli_si128(_mm_loadu_si128((__m128i*)(p + 2)), 14), _mm_loadu_si128((__m128i*)p)… in mb_fast_check_utf8_avx2()
5213 …256_set_m128i(_mm_srli_si128(_mm_loadu_si128((__m128i*)(p + 3)), 13), _mm_loadu_si128((__m128i*)p)… in mb_fast_check_utf8_avx2()
5216 …256_set_m128i(_mm_srli_si128(_mm_loadu_si128((__m128i*)(p + 4)), 12), _mm_loadu_si128((__m128i*)p)… in mb_fast_check_utf8_avx2()
5219 …256_set_m128i(_mm_srli_si128(_mm_loadu_si128((__m128i*)(p + 5)), 11), _mm_loadu_si128((__m128i*)p)… in mb_fast_check_utf8_avx2()
5222 …256_set_m128i(_mm_srli_si128(_mm_loadu_si128((__m128i*)(p + 6)), 10), _mm_loadu_si128((__m128i*)p)… in mb_fast_check_utf8_avx2()
5225 …256_set_m128i(_mm_srli_si128(_mm_loadu_si128((__m128i*)(p + 7)), 9), _mm_loadu_si128((__m128i*)p)); in mb_fast_check_utf8_avx2()
5228 …256_set_m128i(_mm_srli_si128(_mm_loadu_si128((__m128i*)(p + 8)), 8), _mm_loadu_si128((__m128i*)p)); in mb_fast_check_utf8_avx2()
5231 …256_set_m128i(_mm_srli_si128(_mm_loadu_si128((__m128i*)(p + 9)), 7), _mm_loadu_si128((__m128i*)p)); in mb_fast_check_utf8_avx2()
5234 …256_set_m128i(_mm_srli_si128(_mm_loadu_si128((__m128i*)(p + 10)), 6), _mm_loadu_si128((__m128i*)p)… in mb_fast_check_utf8_avx2()
5237 …256_set_m128i(_mm_srli_si128(_mm_loadu_si128((__m128i*)(p + 11)), 5), _mm_loadu_si128((__m128i*)p)… in mb_fast_check_utf8_avx2()
5240 …256_set_m128i(_mm_srli_si128(_mm_loadu_si128((__m128i*)(p + 12)), 4), _mm_loadu_si128((__m128i*)p)… in mb_fast_check_utf8_avx2()
5243 …256_set_m128i(_mm_srli_si128(_mm_loadu_si128((__m128i*)(p + 13)), 3), _mm_loadu_si128((__m128i*)p)… in mb_fast_check_utf8_avx2()
5246 …256_set_m128i(_mm_srli_si128(_mm_loadu_si128((__m128i*)(p + 14)), 2), _mm_loadu_si128((__m128i*)p)… in mb_fast_check_utf8_avx2()
5249 …256_set_m128i(_mm_srli_si128(_mm_loadu_si128((__m128i*)(p + 15)), 1), _mm_loadu_si128((__m128i*)p)… in mb_fast_check_utf8_avx2()
5717 const char *p = s; in php_mb_safe_strrchr() local
5723 while (*p != '\0') { in php_mb_safe_strrchr()
5725 if ((unsigned char)*p == (unsigned char)c) { in php_mb_safe_strrchr()
5726 last = (char *)p; in php_mb_safe_strrchr()
5728 nb = php_mb_mbchar_bytes(p, enc); in php_mb_safe_strrchr()
5734 ++p; in php_mb_safe_strrchr()
5740 if ((unsigned char)*p == (unsigned char)c) { in php_mb_safe_strrchr()
5741 last = (char *)p; in php_mb_safe_strrchr()
5743 nbytes_char = php_mb_mbchar_bytes(p, enc); in php_mb_safe_strrchr()
5747 p += nbytes_char; in php_mb_safe_strrchr()
5801 unsigned char *p = (unsigned char*)ZSTR_VAL(tmpbuf->str); in transfer_encoded_size() local
5802 while (p < tmpbuf->out) { in transfer_encoded_size()
5803 unsigned char c = *p++; in transfer_encoded_size()
5814 unsigned char *p = (unsigned char*)ZSTR_VAL(tmpbuf->str), *e = tmpbuf->out; in transfer_encode_mime_bytes() local
5817 MB_CONVERT_BUF_ENSURE(outbuf, out, limit, ((e - p) + 2) / 3 * 4); in transfer_encode_mime_bytes()
5818 while ((e - p) >= 3) { in transfer_encode_mime_bytes()
5819 unsigned char a = *p++; in transfer_encode_mime_bytes()
5820 unsigned char b = *p++; in transfer_encode_mime_bytes()
5821 unsigned char c = *p++; in transfer_encode_mime_bytes()
5829 if (p != e) { in transfer_encode_mime_bytes()
5830 if ((e - p) == 1) { in transfer_encode_mime_bytes()
5831 uint32_t bits = *p++; in transfer_encode_mime_bytes()
5834 unsigned char a = *p++; in transfer_encode_mime_bytes()
5835 unsigned char b = *p++; in transfer_encode_mime_bytes()
5841 MB_CONVERT_BUF_ENSURE(outbuf, out, limit, (e - p) * 3); in transfer_encode_mime_bytes()
5842 while (p < e) { in transfer_encode_mime_bytes()
5843 unsigned char c = *p++; in transfer_encode_mime_bytes()
5889 uint32_t *p, *e; in mb_mime_header_encode() local
5900 p = wchar_buf; in mb_mime_header_encode()
5903 while (p < e) { in mb_mime_header_encode()
5904 uint32_t w = *p++; in mb_mime_header_encode()
5936 p = wchar_buf; in mb_mime_header_encode()
5941 uint32_t *word_start = p; in mb_mime_header_encode()
5944 while (p < e && *p == ' ' && (p - word_start) <= 74) { in mb_mime_header_encode()
5945 p++; in mb_mime_header_encode()
5948 while (p < e) { in mb_mime_header_encode()
5949 uint32_t w = *p++; in mb_mime_header_encode()
5951 …if (w < 0x20 || w > 0x7E || w == '?' || w == '=' || w == '_' || (w == ' ' && (p - word_start) > 74… in mb_mime_header_encode()
5967 p = word_start; /* Back up to where MIME encoding of input chars should start */ in mb_mime_header_encode()
5971 if (mb_convert_buf_len(&buf) - line_start + (p - word_start) + indent > 75) { in mb_mime_header_encode()
5982 while (word_start < p-1) { in mb_mime_header_encode()
5986 while (p < e && *p == ' ') { in mb_mime_header_encode()
5987 p++; in mb_mime_header_encode()
6012 if (mb_convert_buf_len(&buf) - line_start + (p - word_start) + indent > 74) { in mb_mime_header_encode()
6042 offset = e - p; in mb_mime_header_encode()
6046 memmove(wchar_buf, p, offset * sizeof(uint32_t)); in mb_mime_header_encode()
6053 p = wchar_buf; in mb_mime_header_encode()
6069 ZEND_ASSERT(p < e); in mb_mime_header_encode()
6079 n = MIN(n, e - p); in mb_mime_header_encode()
6080 outcode->from_wchar(p, n, &tmpbuf, false); in mb_mime_header_encode()
6092 p += n; in mb_mime_header_encode()
6094 if (p == e) { in mb_mime_header_encode()
6127 if (in_len || p < e) { in mb_mime_header_encode()
6132 offset = e - p; in mb_mime_header_encode()
6136 memmove(wchar_buf, p, offset * sizeof(uint32_t)); in mb_mime_header_encode()
6238 static unsigned char* mime_header_decode_encoded_word(unsigned char *p, unsigned char *e, const mbf… in mime_header_decode_encoded_word() argument
6240 if ((e - p) < 6) { in mime_header_decode_encoded_word()
6244 ZEND_ASSERT(p[0] == '='); in mime_header_decode_encoded_word()
6245 ZEND_ASSERT(p[1] == '?'); in mime_header_decode_encoded_word()
6246 p += 2; in mime_header_decode_encoded_word()
6248 unsigned char *charset = p; in mime_header_decode_encoded_word()
6255 p = encoding + 1; in mime_header_decode_encoded_word()
6256 if (p >= e || *p++ != '?') { in mime_header_decode_encoded_word()
6267 unsigned char *end_marker = (unsigned char*)zend_memnstr((const char*)p, "?=", 2, (const char*)e); in mime_header_decode_encoded_word()
6270 } else if (p < e && *(e-1) == '?') { in mime_header_decode_encoded_word()
6276 unsigned char *buf = emalloc(e - p), *bufp = buf; in mime_header_decode_encoded_word()
6279 while (p < e) { in mime_header_decode_encoded_word()
6280 unsigned char c = *p++; in mime_header_decode_encoded_word()
6284 } else if (c == '=' && (e - p) >= 2) { in mime_header_decode_encoded_word()
6285 unsigned char c2 = *p++; in mime_header_decode_encoded_word()
6286 unsigned char c3 = *p++; in mime_header_decode_encoded_word()
6292 p--; in mime_header_decode_encoded_word()
6296 p--; in mime_header_decode_encoded_word()
6305 while (p < e) { in mime_header_decode_encoded_word()
6306 unsigned char c = *p++; in mime_header_decode_encoded_word()
6351 unsigned char *p = (unsigned char*)ZSTR_VAL(input), *e = p + ZSTR_LEN(input); in mb_mime_header_decode() local
6358 while (p < e) { in mb_mime_header_decode()
6359 unsigned char c = *p; in mb_mime_header_decode()
6361 if (c == '=' && *(p + 1) == '?' && (e - p) >= 6) { in mb_mime_header_decode()
6363 unsigned char *incode_end = memchr(p + 2, '?', e - p - 2); in mb_mime_header_decode()
6365 unsigned char *temp = mime_header_decode_encoded_word(p, e, outcode, &buf, &state); in mb_mime_header_decode()
6367 p = temp; in mb_mime_header_decode()
6370 if (p < e && (*p == '\n' || *p == '\r')) { in mb_mime_header_decode()
6372 p++; in mb_mime_header_decode()
6373 } while (p < e && (*p == '\n' || *p == '\r' || *p == '\t' || *p == ' ')); in mb_mime_header_decode()
6391 unsigned char *end = p + 1; in mb_mime_header_decode()
6396 size_t in_len = end - p; in mb_mime_header_decode()
6398 size_t out_len = mbfl_encoding_ascii.to_wchar(&p, &in_len, wchar_buf, 128, &state); in mb_mime_header_decode()
6404 if (p < e && (*p == '\n' || *p == '\r')) { in mb_mime_header_decode()
6406 p++; in mb_mime_header_decode()
6407 } while (p < e && (*p == '\n' || *p == '\r' || *p == '\t' || *p == ' ')); in mb_mime_header_decode()
6408 if (p < e) { in mb_mime_header_decode()