Lines Matching refs:p1
57 register unsigned const char *p1; in php_quot_print_decode() local
87 i = length, p1 = str; buf_size = length; in php_quot_print_decode()
89 while (i > 1 && *p1 != '\0') { in php_quot_print_decode()
90 if (*p1 == '=') { in php_quot_print_decode()
92 p1++; in php_quot_print_decode()
95 p1++; in php_quot_print_decode()
100 i = length; p1 = str; p2 = retval; in php_quot_print_decode()
103 while (i > 0 && *p1 != '\0') { in php_quot_print_decode()
104 if (*p1 == '=') { in php_quot_print_decode()
105 i--, p1++; in php_quot_print_decode()
106 if (i == 0 || *p1 == '\0') { in php_quot_print_decode()
109 h_nbl = hexval_tbl[*p1]; in php_quot_print_decode()
112 if ((--i) == 0 || (l_nbl = hexval_tbl[*(++p1)]) >= 16) { in php_quot_print_decode()
117 i--, p1++; in php_quot_print_decode()
121 if (--i == 0 || (h_nbl = hexval_tbl[*(++p1)]) == 64) { in php_quot_print_decode()
126 if (p1[0] == '\r' && i >= 2 && p1[1] == '\n') { in php_quot_print_decode()
127 i--, p1++; in php_quot_print_decode()
129 i--, p1++; in php_quot_print_decode()
135 *(p2++) = (replace_us_by_ws == *p1 ? '\x20': *p1); in php_quot_print_decode()
136 i--, p1++, decoded_len++; in php_quot_print_decode()