Lines Matching refs:p

108 register PCRE_PUCHAR p;  in PRIV()  local
112 for (p = string; *p != 0; p++); in PRIV()
113 length = (int)(p - string); in PRIV()
116 for (p = string; length-- > 0; p++) in PRIV()
120 c = *p; in PRIV()
125 *erroroffset = (int)(p - string); in PRIV()
131 *erroroffset = (int)(p - string); in PRIV()
138 *erroroffset = (int)(p - string); /* Missing bytes */ in PRIV()
145 if (((d = *(++p)) & 0xc0) != 0x80) in PRIV()
147 *erroroffset = (int)(p - string) - 1; in PRIV()
162 *erroroffset = (int)(p - string) - 1; in PRIV()
172 if ((*(++p) & 0xc0) != 0x80) /* Third byte */ in PRIV()
174 *erroroffset = (int)(p - string) - 2; in PRIV()
179 *erroroffset = (int)(p - string) - 2; in PRIV()
184 *erroroffset = (int)(p - string) - 2; in PRIV()
194 if ((*(++p) & 0xc0) != 0x80) /* Third byte */ in PRIV()
196 *erroroffset = (int)(p - string) - 2; in PRIV()
199 if ((*(++p) & 0xc0) != 0x80) /* Fourth byte */ in PRIV()
201 *erroroffset = (int)(p - string) - 3; in PRIV()
206 *erroroffset = (int)(p - string) - 3; in PRIV()
211 *erroroffset = (int)(p - string) - 3; in PRIV()
225 if ((*(++p) & 0xc0) != 0x80) /* Third byte */ in PRIV()
227 *erroroffset = (int)(p - string) - 2; in PRIV()
230 if ((*(++p) & 0xc0) != 0x80) /* Fourth byte */ in PRIV()
232 *erroroffset = (int)(p - string) - 3; in PRIV()
235 if ((*(++p) & 0xc0) != 0x80) /* Fifth byte */ in PRIV()
237 *erroroffset = (int)(p - string) - 4; in PRIV()
242 *erroroffset = (int)(p - string) - 4; in PRIV()
251 if ((*(++p) & 0xc0) != 0x80) /* Third byte */ in PRIV()
253 *erroroffset = (int)(p - string) - 2; in PRIV()
256 if ((*(++p) & 0xc0) != 0x80) /* Fourth byte */ in PRIV()
258 *erroroffset = (int)(p - string) - 3; in PRIV()
261 if ((*(++p) & 0xc0) != 0x80) /* Fifth byte */ in PRIV()
263 *erroroffset = (int)(p - string) - 4; in PRIV()
266 if ((*(++p) & 0xc0) != 0x80) /* Sixth byte */ in PRIV()
268 *erroroffset = (int)(p - string) - 5; in PRIV()
273 *erroroffset = (int)(p - string) - 5; in PRIV()
285 *erroroffset = (int)(p - string) - ab; in PRIV()