Lines Matching refs:p
424 char *p = strstr(get_output_encoding(), "//"); in php_iconv_output_handler() local
426 if (p) { in php_iconv_output_handler()
427 …*s", mimetype_len ? mimetype_len : (int) strlen(mimetype), mimetype, (int) (p - get_output_encodin… in php_iconv_output_handler()
1359 const unsigned char *p; in _php_iconv_mime_encode() local
1426 for (p = (unsigned char *)buf; p < (unsigned char *)out_p; p++) { in _php_iconv_mime_encode()
1427 nbytes_required += qp_table[*p]; in _php_iconv_mime_encode()
1439 for (p = (unsigned char *)buf; p < (unsigned char *)out_p; p++) { in _php_iconv_mime_encode()
1440 if (qp_table[*p] == 1) { in _php_iconv_mime_encode()
1441 smart_str_appendc(pretval, *(char *)p); in _php_iconv_mime_encode()
1446 smart_str_appendc(pretval, qp_digits[(*p >> 4) & 0x0f]); in _php_iconv_mime_encode()
1447 smart_str_appendc(pretval, qp_digits[(*p & 0x0f)]); in _php_iconv_mime_encode()
2418 char *p, *limit; in PHP_FUNCTION() local
2431 for (p = ZSTR_VAL(decoded_header.s); p < limit; p++) { in PHP_FUNCTION()
2432 if (*p == ':') { in PHP_FUNCTION()
2433 *p = '\0'; in PHP_FUNCTION()
2435 header_name_len = p - ZSTR_VAL(decoded_header.s); in PHP_FUNCTION()
2437 while (++p < limit) { in PHP_FUNCTION()
2438 if (*p != ' ' && *p != '\t') { in PHP_FUNCTION()
2443 header_value = p; in PHP_FUNCTION()
2444 header_value_len = limit - p; in PHP_FUNCTION()