Lines Matching refs:p1
49 unsigned const char *p1; in php_quot_print_decode() local
79 i = length, p1 = str; buf_size = length; in php_quot_print_decode()
81 while (i > 1 && *p1 != '\0') { in php_quot_print_decode()
82 if (*p1 == '=') { in php_quot_print_decode()
84 p1++; in php_quot_print_decode()
87 p1++; in php_quot_print_decode()
92 i = length; p1 = str; p2 = (unsigned char*)ZSTR_VAL(retval); in php_quot_print_decode()
95 while (i > 0 && *p1 != '\0') { in php_quot_print_decode()
96 if (*p1 == '=') { in php_quot_print_decode()
97 i--, p1++; in php_quot_print_decode()
98 if (i == 0 || *p1 == '\0') { in php_quot_print_decode()
101 h_nbl = hexval_tbl[*p1]; in php_quot_print_decode()
104 if ((--i) == 0 || (l_nbl = hexval_tbl[*(++p1)]) >= 16) { in php_quot_print_decode()
109 i--, p1++; in php_quot_print_decode()
113 if (--i == 0 || (h_nbl = hexval_tbl[*(++p1)]) == 64) { in php_quot_print_decode()
118 if (p1[0] == '\r' && i >= 2 && p1[1] == '\n') { in php_quot_print_decode()
119 i--, p1++; in php_quot_print_decode()
121 i--, p1++; in php_quot_print_decode()
127 *(p2++) = (replace_us_by_ws == *p1 ? '\x20': *p1); in php_quot_print_decode()
128 i--, p1++, decoded_len++; in php_quot_print_decode()