Lines Matching refs:p

110 register PCRE_PUCHAR p;  in PRIV()  local
114 for (p = string; *p != 0; p++); in PRIV()
115 length = (int)(p - string); in PRIV()
118 for (p = string; length-- > 0; p++) in PRIV()
122 c = *p; in PRIV()
127 *erroroffset = (int)(p - string); in PRIV()
133 *erroroffset = (int)(p - string); in PRIV()
140 *erroroffset = (int)(p - string); /* Missing bytes */ in PRIV()
147 if (((d = *(++p)) & 0xc0) != 0x80) in PRIV()
149 *erroroffset = (int)(p - string) - 1; in PRIV()
164 *erroroffset = (int)(p - string) - 1; in PRIV()
174 if ((*(++p) & 0xc0) != 0x80) /* Third byte */ in PRIV()
176 *erroroffset = (int)(p - string) - 2; in PRIV()
181 *erroroffset = (int)(p - string) - 2; in PRIV()
186 *erroroffset = (int)(p - string) - 2; in PRIV()
196 if ((*(++p) & 0xc0) != 0x80) /* Third byte */ in PRIV()
198 *erroroffset = (int)(p - string) - 2; in PRIV()
201 if ((*(++p) & 0xc0) != 0x80) /* Fourth byte */ in PRIV()
203 *erroroffset = (int)(p - string) - 3; in PRIV()
208 *erroroffset = (int)(p - string) - 3; in PRIV()
213 *erroroffset = (int)(p - string) - 3; in PRIV()
227 if ((*(++p) & 0xc0) != 0x80) /* Third byte */ in PRIV()
229 *erroroffset = (int)(p - string) - 2; in PRIV()
232 if ((*(++p) & 0xc0) != 0x80) /* Fourth byte */ in PRIV()
234 *erroroffset = (int)(p - string) - 3; in PRIV()
237 if ((*(++p) & 0xc0) != 0x80) /* Fifth byte */ in PRIV()
239 *erroroffset = (int)(p - string) - 4; in PRIV()
244 *erroroffset = (int)(p - string) - 4; in PRIV()
253 if ((*(++p) & 0xc0) != 0x80) /* Third byte */ in PRIV()
255 *erroroffset = (int)(p - string) - 2; in PRIV()
258 if ((*(++p) & 0xc0) != 0x80) /* Fourth byte */ in PRIV()
260 *erroroffset = (int)(p - string) - 3; in PRIV()
263 if ((*(++p) & 0xc0) != 0x80) /* Fifth byte */ in PRIV()
265 *erroroffset = (int)(p - string) - 4; in PRIV()
268 if ((*(++p) & 0xc0) != 0x80) /* Sixth byte */ in PRIV()
270 *erroroffset = (int)(p - string) - 5; in PRIV()
275 *erroroffset = (int)(p - string) - 5; in PRIV()
287 *erroroffset = (int)(p - string) - ab; in PRIV()