Home | History | Annotate | Download | only in src

Lines Matching refs:iptr

954 	PCRE2_SPTR8 iptr = input;
961 while (*iptr && max_length > 1) {
964 *offsetmap++ = (int)(iptr - (unsigned char*)input);
966 if (*iptr < 0xc0)
967 c = *iptr++;
968 else if (!(*iptr & 0x20)) {
969 c = ((iptr[0] & 0x1f) << 6) | (iptr[1] & 0x3f);
970 iptr += 2;
971 } else if (!(*iptr & 0x10)) {
972 c = ((iptr[0] & 0x0f) << 12) | ((iptr[1] & 0x3f) << 6) | (iptr[2] & 0x3f);
973 iptr += 3;
974 } else if (!(*iptr & 0x08)) {
975 c = ((iptr[0] & 0x07) << 18) | ((iptr[1] & 0x3f) << 12) | ((iptr[2] & 0x3f) << 6) | (iptr[3] & 0x3f);
976 iptr += 4;
995 *offsetmap = (int)(iptr - (unsigned char*)input);
1002 PCRE2_SPTR8 iptr = input;
1008 while (*iptr && max_length > 1) {
1009 *optr++ = *iptr++;
1026 PCRE2_SPTR8 iptr = input;
1033 while (*iptr && max_length > 1) {
1036 *offsetmap++ = (int)(iptr - (unsigned char*)input);
1038 if (*iptr < 0xc0)
1039 c = *iptr++;
1040 else if (!(*iptr & 0x20)) {
1041 c = ((iptr[0] & 0x1f) << 6) | (iptr[1] & 0x3f);
1042 iptr += 2;
1043 } else if (!(*iptr & 0x10)) {
1044 c = ((iptr[0] & 0x0f) << 12) | ((iptr[1] & 0x3f) << 6) | (iptr[2] & 0x3f);
1045 iptr += 3;
1046 } else if (!(*iptr & 0x08)) {
1047 c = ((iptr[0] & 0x07) << 18) | ((iptr[1] & 0x3f) << 12) | ((iptr[2] & 0x3f) << 6) | (iptr[3] & 0x3f);
1048 iptr += 4;
1055 *offsetmap = (int)(iptr - (unsigned char*)input);
1062 PCRE2_SPTR8 iptr = input;
1068 while (*iptr && max_length > 1) {
1069 *optr++ = *iptr++;