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()
123 c = *p; in PRIV()
128 *erroroffset = (int)(p - string); in PRIV()
134 *erroroffset = (int)(p - string); in PRIV()
141 *erroroffset = (int)(p - string); /* Missing bytes */ in PRIV()
148 if (((d = *(++p)) & 0xc0) != 0x80) in PRIV()
150 *erroroffset = (int)(p - string) - 1; in PRIV()
165 *erroroffset = (int)(p - string) - 1; in PRIV()
175 if ((*(++p) & 0xc0) != 0x80) /* Third byte */ in PRIV()
177 *erroroffset = (int)(p - string) - 2; in PRIV()
182 *erroroffset = (int)(p - string) - 2; in PRIV()
187 *erroroffset = (int)(p - string) - 2; in PRIV()
190 v = ((c & 0x0f) << 12) | ((d & 0x3f) << 6) | (*p & 0x3f); in PRIV()
198 if ((*(++p) & 0xc0) != 0x80) /* Third byte */ in PRIV()
200 *erroroffset = (int)(p - string) - 2; in PRIV()
203 if ((*(++p) & 0xc0) != 0x80) /* Fourth byte */ in PRIV()
205 *erroroffset = (int)(p - string) - 3; in PRIV()
210 *erroroffset = (int)(p - string) - 3; in PRIV()
215 *erroroffset = (int)(p - string) - 3; in PRIV()
218 v = ((c & 0x07) << 18) | ((d & 0x3f) << 12) | ((p[-1] & 0x3f) << 6) | (*p & 0x3f); in PRIV()
230 if ((*(++p) & 0xc0) != 0x80) /* Third byte */ in PRIV()
232 *erroroffset = (int)(p - string) - 2; in PRIV()
235 if ((*(++p) & 0xc0) != 0x80) /* Fourth byte */ in PRIV()
237 *erroroffset = (int)(p - string) - 3; in PRIV()
240 if ((*(++p) & 0xc0) != 0x80) /* Fifth byte */ in PRIV()
242 *erroroffset = (int)(p - string) - 4; in PRIV()
247 *erroroffset = (int)(p - string) - 4; in PRIV()
256 if ((*(++p) & 0xc0) != 0x80) /* Third byte */ in PRIV()
258 *erroroffset = (int)(p - string) - 2; in PRIV()
261 if ((*(++p) & 0xc0) != 0x80) /* Fourth byte */ in PRIV()
263 *erroroffset = (int)(p - string) - 3; in PRIV()
266 if ((*(++p) & 0xc0) != 0x80) /* Fifth byte */ in PRIV()
268 *erroroffset = (int)(p - string) - 4; in PRIV()
271 if ((*(++p) & 0xc0) != 0x80) /* Sixth byte */ in PRIV()
273 *erroroffset = (int)(p - string) - 5; in PRIV()
278 *erroroffset = (int)(p - string) - 5; in PRIV()
290 *erroroffset = (int)(p - string) - ab; in PRIV()
298 *erroroffset = (int)(p - string) - ab; in PRIV()