Home | History | Annotate | Download | only in src

Lines Matching refs:optr

955 	PCRE2_UCHAR16 *optr = output;
980 *optr++ = c;
983 *optr = '\0';
984 return (int)(optr - output);
987 *optr++ = 0xd800 | ((c >> 10) & 0x3ff);
988 *optr++ = 0xdc00 | (c & 0x3ff);
996 *optr = '\0';
997 return (int)(optr - output);
1003 PCRE2_UCHAR16 *optr = output;
1009 *optr++ = *iptr++;
1012 *optr = '\0';
1013 return (int)(optr - output);
1027 PCRE2_UCHAR32 *optr = output;
1051 *optr++ = c;
1056 *optr = 0;
1057 return (int)(optr - output);
1063 PCRE2_UCHAR32 *optr = output;
1069 *optr++ = *iptr++;
1072 *optr = '\0';
1073 return (int)(optr - output);